1
0
Fork 0
my_spells/assets/print.css
2016-08-07 23:28:41 -05:00

37 lines
592 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 p {
font-size: 8pt;
line-height: 10pt;
margin: .75em 0;
color: gray;
}
.spell-description br {
display: none;
}
}