mirror of
https://github.com/moparisthebest/wallabag
synced 2024-10-31 23:45:02 -04:00
49 lines
663 B
CSS
49 lines
663 B
CSS
|
/* ### Layout ### */
|
||
|
|
||
|
body {
|
||
|
font-family: Serif;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
@page {
|
||
|
margin: 1cm;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-width: 100% !important;
|
||
|
}
|
||
|
|
||
|
/* ### Content ### */
|
||
|
|
||
|
/* Hide useless blocks */
|
||
|
body > header,
|
||
|
#links,
|
||
|
#sort,
|
||
|
body > footer,
|
||
|
.top_link,
|
||
|
div.tools,
|
||
|
header div,
|
||
|
.messages,
|
||
|
.entrie + .results {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
article {
|
||
|
border: none !important;
|
||
|
}
|
||
|
|
||
|
/* Add URL after links */
|
||
|
.vieworiginal a:after {
|
||
|
content: " (" attr(href) ")";
|
||
|
}
|
||
|
|
||
|
/* Add explanation after abbr */
|
||
|
abbr[title]:after {
|
||
|
content: " (" attr(title) ")";
|
||
|
}
|
||
|
|
||
|
/* Change border on current pager item */
|
||
|
.pagination span.current {
|
||
|
border-style: dashed;
|
||
|
}
|