]> git.immae.eu Git - github/wallabag/wallabag.git/blob - themes/default/css/print.css
914efbd5ccfec44ca288c7ea683b80b4fbad788a
[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 display: none !important;
29 }
30
31 article {
32 border: none !important;
33 }
34
35 #article_toolbar {
36 display: none;
37 }
38
39 /* Add URL after links */
40 .vieworiginal a:after {
41 content: " (" attr(href) ")";
42 }
43
44 /* Add explanation after abbr */
45 abbr[title]:after {
46 content: " (" attr(title) ")";
47 }
48
49 /* Change border on current pager item */
50 .pagination span.current {
51 border-style: dashed;
52 }