14 lines
177 B
CSS
14 lines
177 B
CSS
@media print {
|
|
body {
|
|
background: white;
|
|
}
|
|
|
|
body > .printonly {
|
|
display: block;
|
|
}
|
|
|
|
body > :not(.printonly) {
|
|
display: none;
|
|
}
|
|
|
|
}
|