2013-03-31 10:19:51 +02:00
|
|
|
/* quick print reset */
|
|
|
|
@media print {
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-04-05 10:03:45 +02:00
|
|
|
* {
|
|
|
|
background: transparent !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
text-shadow: none !important;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-03-31 10:19:51 +02:00
|
|
|
body {
|
|
|
|
width: auto !important;
|
|
|
|
margin: auto !important;
|
|
|
|
font-family: serif;
|
|
|
|
font-size: 12pt;
|
|
|
|
background-color: #fff !important;
|
|
|
|
color: #333 !important;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-03-31 10:19:51 +02:00
|
|
|
p,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
blockquote,
|
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
color: #000 !important;
|
|
|
|
margin: auto !important;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-03-31 10:19:51 +02:00
|
|
|
.print {
|
2014-05-07 10:45:47 +02:00
|
|
|
display: block;
|
2013-03-31 10:19:51 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
|
|
|
.no-print {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:47:46 +01:00
|
|
|
img {
|
2013-08-30 21:04:16 +02:00
|
|
|
filter: grayscale(100%);
|
2013-04-05 10:03:45 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
|
|
|
/* no orphans, no widows */
|
2013-03-31 10:19:51 +02:00
|
|
|
p,
|
|
|
|
blockquote {
|
2015-03-04 11:47:46 +01:00
|
|
|
orphans: 3;
|
2014-05-07 10:45:47 +02:00
|
|
|
widows: 3;
|
2013-03-31 10:19:51 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
|
|
|
/* no breaks inside these elements */
|
2013-03-31 10:19:51 +02:00
|
|
|
blockquote,
|
|
|
|
ul,
|
|
|
|
ol {
|
2015-03-04 11:47:46 +01:00
|
|
|
page-break-inside: avoid;
|
2013-03-31 10:19:51 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
|
|
|
/* page break before main headers */
|
2013-03-31 10:19:51 +02:00
|
|
|
h1 {
|
2015-03-04 11:47:46 +01:00
|
|
|
page-break-before: always;
|
2013-03-31 10:19:51 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
|
|
|
/* no breaks after these elements */
|
2013-03-31 10:19:51 +02:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
caption {
|
2015-03-04 11:47:46 +01:00
|
|
|
page-break-after: avoid;
|
2013-03-31 10:19:51 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-03-31 10:19:51 +02:00
|
|
|
a {
|
|
|
|
color: #000 !important;
|
|
|
|
text-decoration: underline !important;
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
|
|
|
/* displaying URLs */
|
2013-03-31 10:19:51 +02:00
|
|
|
a[href]:after {
|
2015-03-04 11:47:46 +01:00
|
|
|
content: " (" attr(href) ")";
|
2013-03-31 10:19:51 +02:00
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
|
2013-04-05 10:03:45 +02:00
|
|
|
a[href^="javascript:"]:after,
|
|
|
|
a[href^="#"]:after {
|
|
|
|
content: "";
|
|
|
|
}
|
2014-05-07 10:45:47 +02:00
|
|
|
}
|