Ticket #16898: print.css

File print.css, 2.4 KB (added by dweber@…, 16 years ago)

print.css: An adaptation of docbook.css for print media

Line 
1/*
2 * MacPorts Guide Stylesheet
3 */
4
5/*
6   CSS design by Mark Duling
7
8   This print.css version adapted by Darren Weber
9   To be used with a style link attribute: media="print"
10   <link href="print.css" media="print" rel="stylesheet" type="text/css" />
11*/
12
13div.mediaobject {
14        text-align: center;
15        margin: auto;
16        border: thin black inset;
17}
18
19.emphasis { font-weight: bold ; }
20
21a:link { color: #6298E5; text-decoration: none; }
22a:visited { color: #6298E5; text-decoration: none;}
23a:hover { text-decoration: underline; }
24 
25.filename { color: #8B1A1A; }
26
27span.term { font-weight: bold; }
28
29span.guilabel { font-weight: bold; }
30
31span.guimenu { font-weight: bold; }
32
33.programlisting {
34        font-family: monospace;
35        font-size: medium;
36        background-color: #E6E6E6;
37        border: thin black inset }
38
39.literallayout {
40        font-family: monospace;
41}
42
43.screen {
44        font-family: monospace;
45        font-size: medium;
46        border: thin black inset;
47        background-color: white; }
48
49div.screenshot div.mediaobject {
50        text-align: center;
51        margin: auto }
52
53body {
54   font-family: Verdana, Arial, sans-serif;
55   font-size: 14px;
56   line-height: 1.4;
57   color: #696969;
58}
59
60div.note h3.title { color: #C00; }
61
62.author {
63        font-size: 14px;
64        color: #6298E5;
65        font-weight: bold;
66}
67
68.copyright {
69        font-size: 12px;
70        font-family: times;
71}
72
73div.book div.titlepage h1 {
74        font-family: Verdana, Arial, Utopia, sans-serif;
75        font-size: 24pt;
76        color: black;
77        font-weight: bold;
78        text-align: left;
79}
80
81div.book div.titlepage h2 {
82        font-family: Verdana, Arial, Utopia, sans-serif;
83        font-size: 18pt;
84        color: black;
85        font-weight: bold;
86        text-align: left;
87}
88
89div.section div.titlepage h2 {
90        font-family: Verdana, Arial, Utopia, sans-serif;
91        font-size: 16pt;
92        color: black;
93        text-align: left;
94}
95
96div.section div.titlepage h3 {
97        font-family: Verdana, Arial, Utopia, sans-serif;
98        font-size: 14pt;
99        color: black;
100        font-weight: bold;
101        text-align: left;   
102}
103
104div.section div.titlepage h4 {
105        font-family: Verdana, Arial, Utopia, sans-serif;
106        font-size: 12pt;
107        color: black;
108        font-weight: bold;
109        text-align: left;
110}
111
112p { margin-bottom: 14pt; }
113
114
115
116/* ALL TOC STYLES BELOW */
117
118div.toc {
119    /* For print style, remove TOC */
120    display: none;
121        width: 0px;
122}
123
124div.book {
125        margin-left: 2px;
126}
127
128.navheader {
129    display: none;
130    height: 0px;
131    width: 0px;
132}
133
134.navfooter {
135    display: none;
136    height: 0px;
137    width: 0px;
138}
139