Files
2026-05-27 17:09:59 +02:00

8 lines
213 B
CSS

@media print {
/* hide navigation controls when printing */
#navigation { display: none }
@media (max-width: 12cm) {
/* keep notes in flow when printing to narrow pages */
.note { float: none }
}
}