blob: b08197e287a82becebfd0586e51e442e712531cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@media print {
body {
/* Only works in Chrome and IE. See:
* http://css-tricks.com/almanac/properties/z/zoom/
* The "real" way to do this would be:
* http://stackoverflow.com/questions/9981411
*/
zoom: 80%;
}
.nav-button {
display: none;
}
#docs-list {
margin-top: 0 !important;
}
h1, h2, h3 {
margin-top: 12px;
margin-bottom: 6px;
}
.docs {
page-break-inside: avoid;
}
.select-object {
font-weight: bold;
}
h3 + ul .select-object {
font-weight: normal;
}
}
|