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