aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/print.css
diff options
context:
space:
mode:
authorAlexandr Danilov <bitbucket@modos189.ru>2015-08-04 17:18:15 +0300
committerAlexandr Danilov <bitbucket@modos189.ru>2015-08-04 17:18:15 +0300
commit53e121881b78bad3475aa92f2f33be231b441c2f (patch)
treea19caa2976c8de5b4c744fc3883e3af112881623 /src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/print.css
parent7e63b892f9682e62f6758bb51c6912499f5bd8d1 (diff)
downloadwallabag-53e121881b78bad3475aa92f2f33be231b441c2f.tar.gz
wallabag-53e121881b78bad3475aa92f2f33be231b441c2f.tar.zst
wallabag-53e121881b78bad3475aa92f2f33be231b441c2f.zip
Added Material theme
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/print.css')
-rwxr-xr-xsrc/Wallabag/CoreBundle/Resources/views/themes/material/public/css/print.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/print.css b/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/print.css
new file mode 100755
index 00000000..9dd6d295
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/print.css
@@ -0,0 +1,62 @@
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#article_toolbar,
21#links,
22#sort,
23body > footer,
24.top_link,
25div.tools,
26header div,
27.messages,
28.entrie + .results {
29 display: none !important;
30}
31
32article {
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 */
42abbr[title]:after {
43 content: " (" attr(title) ")";
44}
45
46/* Change border on current pager item */
47.pagination span.current {
48 border-style: dashed;
49}
50
51#main {
52 width: 100%;
53 padding: 0;
54 margin: 0;
55 margin-left: 0;
56 padding-right: 0;
57 padding-bottom: 0;
58}
59
60#article {
61 width: 100%;
62}