30 lines
459 B
CSS
30 lines
459 B
CSS
@media print {
|
|
body {
|
|
background: white;
|
|
font-size: 11pt;
|
|
box-sizing: border-box;
|
|
padding: 1em;
|
|
}
|
|
|
|
body > .printonly {
|
|
display: block;
|
|
}
|
|
|
|
body > :not(.printonly) {
|
|
display: none;
|
|
}
|
|
|
|
th {
|
|
white-space: nowrap;
|
|
padding: 1em 1em 1em 0;
|
|
text-align: left;
|
|
}
|
|
|
|
td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.spell-description {
|
|
font-size: 8pt;
|
|
}
|
|
}
|