1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-20 04:12:09 +00:00
seirdy.one/assets/css/print.css

25 lines
415 B
CSS
Raw Normal View History

/* Print stylesheet: hide stuff that we don't need. */
@media print {
/* Currently only used for transcripts */
details,
/* Currently only used for anchors */
span[aria-hidden],
/* You can't navigate in a printout. */
footer nav {
display: none;
}
}
/* Print: don't orphan headings */
h2,
h3,
h4 {
break-after: avoid;
}
figure,
article article,
div[role="doc-endnotes"] ol li {
break-inside: avoid;
}