mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-13 04:21:19 +00:00
70 lines
985 B
SCSS
Executable file
70 lines
985 B
SCSS
Executable file
@media print {
|
|
/* ### Layout ### */
|
|
|
|
body {
|
|
font-family: serif;
|
|
background-color: #fff;
|
|
}
|
|
|
|
@page {
|
|
margin: 1cm;
|
|
}
|
|
|
|
img {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
/* ### Content ### */
|
|
|
|
/* Hide useless blocks */
|
|
body > header,
|
|
body > footer,
|
|
.entry-tools,
|
|
header div,
|
|
.messages,
|
|
.entry + .results,
|
|
.left-bar,
|
|
.progress,
|
|
.hide-on-large-only,
|
|
.entry-info,
|
|
.title-edit {
|
|
display: none !important;
|
|
}
|
|
|
|
main {
|
|
padding-left: 0 !important;
|
|
}
|
|
|
|
.article {
|
|
margin: inherit !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;
|
|
}
|
|
|
|
#main {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#article {
|
|
width: 100%;
|
|
}
|
|
}
|