18 lines
344 B
CSS
18 lines
344 B
CSS
@media print {
|
|
nav, input, button, .favNav {
|
|
display: none;
|
|
}
|
|
|
|
@page {
|
|
size: A4;
|
|
}
|
|
|
|
body {
|
|
counter-reset: chapternum figurenum;
|
|
font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
|
|
line-height: 1.5;
|
|
font-size: 11pt;
|
|
}
|
|
}
|
|
|