2022-04-27 15:41:36 +00:00
|
|
|
/* Print stylesheet: hide stuff that we don't need. */
|
|
|
|
@media print {
|
|
|
|
/* Currently only used for transcripts */
|
2022-05-05 05:22:38 +00:00
|
|
|
article details,
|
2022-05-04 05:09:14 +00:00
|
|
|
/* Currently only used for in-page heading anchors,
|
|
|
|
* useless in printouts. */
|
2022-04-27 15:41:36 +00:00
|
|
|
span[aria-hidden],
|
|
|
|
/* You can't navigate in a printout. */
|
2022-05-02 00:04:20 +00:00
|
|
|
footer nav,
|
2022-05-04 00:05:47 +00:00
|
|
|
nav a:not([rel="home"]) span {
|
2022-04-27 15:41:36 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2022-05-05 05:22:38 +00:00
|
|
|
|
|
|
|
summary {
|
|
|
|
list-style: none;
|
|
|
|
}
|
2022-04-27 15:41:36 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 00:05:47 +00:00
|
|
|
/* Print: don't orphan headings
|
|
|
|
* Commented out bc most browsers don't obey this yet. */
|
|
|
|
/* h2, */
|
|
|
|
/* h3, */
|
|
|
|
/* h4 { */
|
|
|
|
/* break-after: avoid; */
|
|
|
|
/* } */
|
2022-04-27 15:41:36 +00:00
|
|
|
|
2022-05-04 05:09:14 +00:00
|
|
|
/* Print: don't break up self-contained items. */
|
2022-04-27 15:41:36 +00:00
|
|
|
figure,
|
|
|
|
article article,
|
2022-05-02 00:04:20 +00:00
|
|
|
li {
|
2022-04-27 15:41:36 +00:00
|
|
|
break-inside: avoid;
|
|
|
|
}
|