16 lines
248 B
CSS
16 lines
248 B
CSS
|
|
@media print {
|
|
|
|
html, body {
|
|
background: #fff;
|
|
color: #222;
|
|
font-size: 8pt;
|
|
font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
|
|
}
|
|
|
|
#container, .replies, .footer {
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
|