53 lines
606 B
CSS
53 lines
606 B
CSS
6 years ago
|
@media print {
|
||
|
@page {
|
||
|
size: A3 portrait;
|
||
|
width: 297mm;
|
||
|
margin: 10mm 10mm 10mm 10mm;
|
||
|
/* page-break-after: always;
|
||
|
*/ }
|
||
|
|
||
|
body {
|
||
|
font-size: 5pt;
|
||
|
font-family: Helvetica Neue, sans-serif;
|
||
|
/* counter-reset: chapternum figurenum;
|
||
|
*/ columns: 5 auto;
|
||
|
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: black;
|
||
|
text-decoration: none;
|
||
|
|
||
|
}
|
||
|
|
||
|
.linenum {
|
||
|
border-top: .80pt solid black;
|
||
|
clear: both;
|
||
|
|
||
|
}
|
||
|
|
||
|
.leftcolumn {
|
||
|
}
|
||
|
|
||
|
.linenumber {
|
||
|
width: 10mm;
|
||
|
margin-right: 1mm;
|
||
|
display: inline;
|
||
|
|
||
|
}
|
||
|
.sentence {
|
||
|
width: 50mm;
|
||
|
display: inline;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
.comment {
|
||
|
margin-bottom: 3mm;
|
||
|
}
|
||
|
|
||
|
}
|