mirror of
https://github.com/wassname/template.git
synced 2026-06-27 16:32:20 +08:00
31 lines
387 B
CSS
31 lines
387 B
CSS
@media print {
|
|
|
|
@page {
|
|
size: 8in 11in;
|
|
@bottom-right {
|
|
content: counter(page) " of " counter(pages);
|
|
}
|
|
}
|
|
|
|
html {
|
|
/* no general margins -- CSS Grid takes care of those */
|
|
}
|
|
|
|
p, code {
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
h2, h3 {
|
|
page-break-after: avoid;
|
|
}
|
|
|
|
d-header {
|
|
visibility: hidden;
|
|
}
|
|
|
|
d-footer {
|
|
display: none!important;
|
|
}
|
|
|
|
}
|