]> git.immae.eu Git - github/wallabag/wallabag.git/blob - themes/default/css/print.css
99c00bdfe9c59336f3cf918142ba45baa93b77fc
[github/wallabag/wallabag.git] / themes / default / css / print.css
1 /* ### Layout ### */
2
3 body {
4 font-family: Serif;
5 background-color: #fff;
6 }
7
8 @page {
9 margin: 1cm;
10 }
11
12 img {
13 max-width: 100% !important;
14 }
15
16 /* ### Content ### */
17
18 /* Hide useless blocks */
19 body > header,
20 #links,
21 #sort,
22 body > footer,
23 .top_link,
24 div.tools,
25 header div,
26 .messages,
27 .entrie + .results,
28 #article_toolbar {
29 display: none !important;
30 }
31
32 article {
33 border: none !important;
34 }
35
36 /* Add URL after links */
37 .vieworiginal a:after {
38 content: " (" attr(href) ")";
39 }
40
41 /* Add explanation after abbr */
42 abbr[title]:after {
43 content: " (" attr(title) ")";
44 }
45
46 /* Change border on current pager item */
47 .pagination span.current {
48 border-style: dashed;
49 }