wallabag/tpl/css/style.css

301 lines
4.4 KiB
CSS
Raw Normal View History

2013-04-03 09:14:01 -04:00
body {
2013-08-05 15:56:32 -04:00
font-size: 16px;
font-family: 'Roboto', Verdana, Geneva, sans-serif;
2013-04-08 03:44:45 -04:00
margin: 10px;
color: #000;
}
2013-04-03 09:14:01 -04:00
header {
text-align: center;
}
2013-08-04 16:51:12 -04:00
header h1 {
font-size: 1.3em;
}
a, a:hover, a:visited {
color: #000;
}
.bouton {
background-color: #000;
color: #fff;
border: none;
border-radius: 2px;
}
.bouton:hover {
background-color: #222;
color: #f1f1f1;
cursor: pointer;
}
2013-08-05 15:56:32 -04:00
#main {
margin: 0 auto;
}
#main #links {
2013-04-03 09:14:01 -04:00
padding: 0;
list-style-type: none;
text-align: center;
2013-08-04 16:51:12 -04:00
font-size: 0.9em;
2013-04-03 09:14:01 -04:00
}
#main #links li {
2013-04-03 09:14:01 -04:00
display: inline;
2013-04-08 03:44:45 -04:00
}
#main #links li .current {
background-color: #000;
color: #fff;
-webkit-border-radius: 2px;
border-radius: 2px;
}
#main #sort {
padding: 0;
list-style-type: none;
text-align: center;
2013-08-05 15:56:32 -04:00
opacity: 0.5;
}
#main #sort li {
display: inline;
font-size: 0.9em;
}
#main #sort img:hover {
cursor: pointer;
}
#links a {
2013-04-08 03:44:45 -04:00
text-decoration: none;
padding: 5px 10px;
}
#links a:hover {
background-color: #040707;
color: #F1F1F1;
2013-04-08 03:44:45 -04:00
-webkit-border-radius: 2px;
border-radius: 2px;
2013-04-03 09:14:01 -04:00
}
2013-04-09 09:18:39 -04:00
/*** ***/
/*** LINKS DISPLAY ***/
#main .tool {
2013-04-09 09:18:39 -04:00
text-decoration: none;
cursor: pointer;
}
#main #content {
margin-top: 20px;
}
2013-08-05 15:56:32 -04:00
#main #content h2 {
font-size: 1.3em;
text-decoration: none;
}
#main #content .entrie {
border-bottom: 1px dashed #222;
}
2013-08-28 13:12:11 -04:00
/* First entry */
#main #content .results + .entrie {
clear: both;
}
#main .entrie .tools {
2013-08-05 15:56:32 -04:00
list-style-type: none;
}
2013-08-24 03:56:59 -04:00
#main .entrie .tools + p {
min-height: 5.5em;
}
/*
#main .entrie .tools li {
display: inline;
2013-08-05 15:56:32 -04:00
}
*/
2013-08-05 15:56:32 -04:00
2013-04-15 08:09:58 -04:00
.tools {
2013-08-05 09:54:37 -04:00
float: right;
text-align: right;
2013-08-05 15:56:32 -04:00
opacity: 0.5;
2013-04-15 08:09:58 -04:00
}
2013-08-05 15:56:32 -04:00
.tools p {
font-size: 0.8em;
}
2013-08-05 15:56:32 -04:00
/*
2013-04-15 08:09:58 -04:00
.tools ul {
padding: 0; margin: 0;
list-style-type: none;
}
.tools ul li {
line-height: 20px;
}
.tools .tool {
2013-04-15 08:09:58 -04:00
cursor: pointer;
2013-08-05 15:56:32 -04:00
}*/
#main .entrie .tools .tool span, #article .tools .tool span {
2013-04-09 09:18:39 -04:00
display: inline-block;
width: 16px;
height: 16px;
2013-08-23 12:45:34 -04:00
/* Hide textual content */
text-indent: -9999px;
text-align: left;
overflow: hidden;
2013-04-09 09:18:39 -04:00
}
2013-04-09 09:18:39 -04:00
/*** ***/
/*** ARTICLE PAGE ***/
2013-08-05 15:56:32 -04:00
#article {
margin: 0 auto;
2013-04-09 09:18:39 -04:00
}
2013-08-24 03:53:02 -04:00
#article header, #article article {
border-bottom: 1px solid #222;
}
2013-04-09 09:18:39 -04:00
#article header {
text-align: left;
}
#article header a {
2013-04-03 09:14:01 -04:00
text-decoration: none;
}
2013-08-05 15:56:32 -04:00
.vieworiginal a, .vieworiginal a:hover, .vieworiginal a:visited {
2013-04-09 09:18:39 -04:00
text-decoration: none;
color: #888;
2013-04-09 09:18:39 -04:00
}
.backhome {
display: inline;
}
2013-08-05 15:56:32 -04:00
#article .tools {
position: relative;
display: inline;
top: 0;
right: 0;
2013-08-05 15:56:32 -04:00
width: 100%;
}
#article .tools ul li {
2013-08-05 15:56:32 -04:00
display: inline;
}
2013-08-28 13:12:11 -04:00
.results {
overflow: hidden;
2013-08-05 15:56:32 -04:00
padding-bottom: 20px;
padding-top: 10px;
2013-08-28 13:12:11 -04:00
}
.nb-results {
float: left;
font-size: 0.9em;
line-height: 24px;
vertical-align: middle;
}
/* Pagination */
.pagination {
float: right;
2013-08-05 15:56:32 -04:00
text-align: right;
}
.pagination a {
border: 1px solid #d5d5d5;
2013-08-05 15:56:32 -04:00
color: #333;
font-size: 11px;
font-weight: bold;
height: 25px;
padding: 4px 8px;
text-decoration: none;
margin: 2px;
2013-08-05 15:56:32 -04:00
}
.pagination a:hover, .pagination a:active {
background-color: #efefef;
2013-08-05 15:56:32 -04:00
}
.pagination .current {
2013-08-05 15:56:32 -04:00
background-color: #ccc;
border: 1px solid #d5d5d5;
2013-08-05 15:56:32 -04:00
color: #000;
font-size: 11px;
font-weight: bold;
height: 25px;
padding: 4px 8px;
text-decoration: none;
margin: 2px;
2013-08-05 15:56:32 -04:00
}
.pagination .disabled {
2013-09-05 16:01:15 -04:00
display: none;
2013-08-05 15:56:32 -04:00
}
2013-08-25 10:40:12 -04:00
#bookmarklet {
padding: 5px;
border: 1px dashed #808080;
background: #fff;
cursor: move;
}
2013-08-25 10:41:20 -04:00
.top_link {
position: fixed;
right: 15px;
bottom: 15px;
display: none;
padding: 20px;
background: #ccc;
-moz-border-radius: 40px;
-webkit-border-radius: 40px;
border-radius: 40px;
opacity: 0.9;
z-index: 2000;
}
2013-08-05 15:56:32 -04:00
footer {
clear: both;
2013-08-09 02:25:16 -04:00
}
.reading-time {
font-size: 0.8em;
}
2013-09-10 08:41:58 -04:00
#inputform {
2013-09-08 15:26:30 -04:00
display: none;
2013-09-10 17:54:40 -04:00
text-align: center;
max-width: 300px;
margin-left: auto;
margin-right: auto;
margin-top: 5px;
2013-09-10 08:41:58 -04:00
padding-bottom: 5px;
2013-09-08 15:26:30 -04:00
background-color: rgba(0, 0, 0, 0.9);
2013-09-10 17:54:40 -04:00
opacity: 0.8;
color: #fff;
2013-09-08 15:26:30 -04:00
border-radius: 3px;
}
2013-09-10 17:52:28 -04:00
a.back span,
a.top span,
a.fav span,
a.fav span:hover,
a.fav-off span,
a.fav-off span:hover,
a.archive span,
a.archive span:hover,
a.archive-off span,
a.archive-off span:hover,
a.twitter span,
a.flattr span,
a.email span,
a.delete span {
background-repeat: no-repeat;
}