mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
65 lines
1.5 KiB
Plaintext
65 lines
1.5 KiB
Plaintext
|
|
|
|
|
|
/* ==|== print styles =======================================================
|
|
Print styles.
|
|
Inlined to avoid required HTTP connection: h5bp.com/r
|
|
========================================================================== */
|
|
|
|
@media print {
|
|
|
|
* {
|
|
background: transparent;
|
|
color: black !important;
|
|
box-shadow:none !important;
|
|
text-shadow: none !important;
|
|
}
|
|
|
|
.entry-content a[href]:after {
|
|
content: " (" attr(href) ")";
|
|
text-transform: none;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
// hide stuff in article view
|
|
.related-posts,
|
|
.footer .row:first-child,
|
|
.hentry:before {
|
|
.hide;
|
|
}
|
|
.topbar { .visuallyhidden; }
|
|
|
|
.hentry { border: none }
|
|
|
|
.footer {
|
|
color: #ccc !important;
|
|
|
|
.footer-copyright {
|
|
border-top: 1px solid #000 !important;
|
|
|
|
&:after { .hide; }
|
|
}
|
|
}
|
|
|
|
abbr[title]:after { content: " (" attr(title) ")"; }
|
|
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
|
|
|
|
pre, blockquote { page-break-inside: avoid; }
|
|
|
|
thead { display: table-header-group; } /* h5bp.com/t */
|
|
|
|
tr, img { page-break-inside: avoid; }
|
|
|
|
img { max-width: 100% !important; }
|
|
|
|
@page { margin: 5.5cm; }
|
|
|
|
p, h2, h3 { orphans: 3; widows: 3; }
|
|
|
|
.hentry {
|
|
h1 { page-break-before: always; }
|
|
&:first-child h1 { page-break-before: avoid; }
|
|
}
|
|
|
|
h2, h3 { page-break-after: avoid; }
|
|
} |