1 | /*============================================================================= |
---|
2 | Copyright (c) 2004 Joel de Guzman |
---|
3 | http://spirit.sourceforge.net/ |
---|
4 | |
---|
5 | Use, modification and distribution is subject to the Boost Software |
---|
6 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
---|
7 | http://www.boost.org/LICENSE_1_0.txt) |
---|
8 | =============================================================================*/ |
---|
9 | |
---|
10 | /*============================================================================= |
---|
11 | Body defaults |
---|
12 | =============================================================================*/ |
---|
13 | |
---|
14 | body |
---|
15 | { |
---|
16 | margin: 1em; |
---|
17 | font-family: sans-serif; |
---|
18 | } |
---|
19 | |
---|
20 | /*============================================================================= |
---|
21 | Paragraphs |
---|
22 | =============================================================================*/ |
---|
23 | |
---|
24 | p |
---|
25 | { |
---|
26 | text-align: justify; |
---|
27 | font-size: 11pt; |
---|
28 | line-height: 1.2; |
---|
29 | } |
---|
30 | |
---|
31 | /*============================================================================= |
---|
32 | Program listings |
---|
33 | =============================================================================*/ |
---|
34 | |
---|
35 | tt.computeroutput |
---|
36 | { |
---|
37 | font-size: 10pt; |
---|
38 | } |
---|
39 | |
---|
40 | pre.synopsis |
---|
41 | { |
---|
42 | font-size: 10pt; |
---|
43 | margin: 1pc 4% 0pc 4%; |
---|
44 | padding: 0.5pc 0.5pc 0.5pc 0.5pc; |
---|
45 | } |
---|
46 | |
---|
47 | .programlisting, |
---|
48 | .screen |
---|
49 | { |
---|
50 | font-size: 10pt; |
---|
51 | display: block; |
---|
52 | margin: 1pc 4% 0pc 4%; |
---|
53 | padding: 0.5pc 0.5pc 0.5pc 0.5pc; |
---|
54 | } |
---|
55 | |
---|
56 | /*============================================================================= |
---|
57 | Headings |
---|
58 | =============================================================================*/ |
---|
59 | |
---|
60 | h1, |
---|
61 | h2, |
---|
62 | h3, |
---|
63 | h4, |
---|
64 | h5, |
---|
65 | h6 |
---|
66 | { |
---|
67 | text-align: left; |
---|
68 | margin-top: 2pc; |
---|
69 | } |
---|
70 | |
---|
71 | h1 { font: 170% } |
---|
72 | h2 { font: bold 140% } |
---|
73 | h3 { font: bold 120% } |
---|
74 | h4 { font: bold 100% } |
---|
75 | h5 { font: italic 100% } |
---|
76 | h6 { font: italic 100% } |
---|
77 | |
---|
78 | /* Top page titles */ |
---|
79 | title, |
---|
80 | h1.title, |
---|
81 | h2.title |
---|
82 | h3.title, |
---|
83 | h4.title, |
---|
84 | h5.title, |
---|
85 | h6.title, |
---|
86 | .refentrytitle |
---|
87 | { |
---|
88 | font-weight: bold; |
---|
89 | margin-bottom: 1pc; |
---|
90 | } |
---|
91 | |
---|
92 | h1.title { font-size: 220% } |
---|
93 | h2.title { font-size: 220% } |
---|
94 | h3.title { font-size: 170% } |
---|
95 | h4.title { font-size: 140% } |
---|
96 | h5.title { font-size: 120% } |
---|
97 | h6.title { font-size: 120% } |
---|
98 | |
---|
99 | /*============================================================================= |
---|
100 | Lists |
---|
101 | =============================================================================*/ |
---|
102 | |
---|
103 | li |
---|
104 | { |
---|
105 | font-size: 11pt; |
---|
106 | line-height: 1.3; |
---|
107 | } |
---|
108 | |
---|
109 | /* Unordered lists */ |
---|
110 | ul |
---|
111 | { |
---|
112 | text-align: justify; |
---|
113 | } |
---|
114 | |
---|
115 | /* Ordered lists */ |
---|
116 | ol |
---|
117 | { |
---|
118 | text-align: justify; |
---|
119 | } |
---|
120 | |
---|
121 | /*============================================================================= |
---|
122 | Links |
---|
123 | =============================================================================*/ |
---|
124 | |
---|
125 | a |
---|
126 | { |
---|
127 | text-decoration: none; /* no underline */ |
---|
128 | } |
---|
129 | |
---|
130 | a:hover |
---|
131 | { |
---|
132 | text-decoration: underline; |
---|
133 | } |
---|
134 | |
---|
135 | /*============================================================================= |
---|
136 | Spirit style navigation |
---|
137 | =============================================================================*/ |
---|
138 | |
---|
139 | .spirit-nav |
---|
140 | { |
---|
141 | text-align: right; |
---|
142 | } |
---|
143 | |
---|
144 | .spirit-nav a |
---|
145 | { |
---|
146 | color: white; |
---|
147 | padding-left: 0.5em; |
---|
148 | } |
---|
149 | |
---|
150 | .spirit-nav img |
---|
151 | { |
---|
152 | border-width: 0px; |
---|
153 | } |
---|
154 | |
---|
155 | /*============================================================================= |
---|
156 | Table of contents |
---|
157 | =============================================================================*/ |
---|
158 | |
---|
159 | .toc |
---|
160 | { |
---|
161 | margin: 1pc 4% 0pc 4%; |
---|
162 | padding: 0.5pc; |
---|
163 | font-size: 11pt; |
---|
164 | line-height: 1.3; |
---|
165 | } |
---|
166 | |
---|
167 | .boost-toc |
---|
168 | { |
---|
169 | float: right; |
---|
170 | padding: 0.5pc; |
---|
171 | } |
---|
172 | |
---|
173 | /*============================================================================= |
---|
174 | Tables |
---|
175 | =============================================================================*/ |
---|
176 | |
---|
177 | .table-title, |
---|
178 | div.table p.title |
---|
179 | { |
---|
180 | margin-left: 4%; |
---|
181 | padding-right: 0.5em; |
---|
182 | padding-left: 0.5em; |
---|
183 | font-size: 120%; |
---|
184 | } |
---|
185 | |
---|
186 | .informaltable table, |
---|
187 | .table table |
---|
188 | { |
---|
189 | width: 92%; |
---|
190 | margin-left: 4%; |
---|
191 | margin-right: 4%; |
---|
192 | } |
---|
193 | |
---|
194 | div.informaltable table, |
---|
195 | div.table table |
---|
196 | { |
---|
197 | padding: 4px; |
---|
198 | } |
---|
199 | |
---|
200 | /* Table Cells */ |
---|
201 | div.informaltable table tr td, |
---|
202 | div.table table tr td |
---|
203 | { |
---|
204 | padding: 0.5em; |
---|
205 | text-align: justify; |
---|
206 | font-size: 11pt; |
---|
207 | } |
---|
208 | |
---|
209 | div.informaltable table tr th, |
---|
210 | div.table table tr th |
---|
211 | { |
---|
212 | padding: 0.5em 0.5em 0.5em 0.5em; |
---|
213 | border: 1pt solid white; |
---|
214 | } |
---|
215 | |
---|
216 | /*============================================================================= |
---|
217 | Blurbs |
---|
218 | =============================================================================*/ |
---|
219 | |
---|
220 | div.informaltable table tr td.blurb |
---|
221 | { |
---|
222 | font-size: 10pt; /* A little bit smaller than the main text */ |
---|
223 | line-height: 1.2; |
---|
224 | } |
---|
225 | |
---|
226 | td.blurb img |
---|
227 | { |
---|
228 | padding: 1pt; |
---|
229 | } |
---|
230 | |
---|
231 | /*============================================================================= |
---|
232 | Misc |
---|
233 | =============================================================================*/ |
---|
234 | |
---|
235 | /* Tone down the title of Parameter lists */ |
---|
236 | div.variablelist p.title |
---|
237 | { |
---|
238 | font-weight: bold; |
---|
239 | font-size: 100%; |
---|
240 | text-align: left; |
---|
241 | } |
---|
242 | |
---|
243 | /* Tabularize parameter lists */ |
---|
244 | div.variablelist dl dt |
---|
245 | { |
---|
246 | float: left; |
---|
247 | clear: left; |
---|
248 | display: block; |
---|
249 | font-style: italic; |
---|
250 | } |
---|
251 | |
---|
252 | div.variablelist dl dd |
---|
253 | { |
---|
254 | display: block; |
---|
255 | clear: right; |
---|
256 | padding-left: 8pc; |
---|
257 | } |
---|
258 | |
---|
259 | /* Title of books and articles in bibliographies */ |
---|
260 | span.title |
---|
261 | { |
---|
262 | font-style: italic; |
---|
263 | } |
---|
264 | |
---|
265 | span.underline |
---|
266 | { |
---|
267 | text-decoration: underline; |
---|
268 | } |
---|
269 | |
---|
270 | span.strikethrough |
---|
271 | { |
---|
272 | text-decoration: line-through; |
---|
273 | } |
---|
274 | |
---|
275 | /* Copyright, Legal Notice */ |
---|
276 | div div.legalnotice p |
---|
277 | { |
---|
278 | text-align: left |
---|
279 | } |
---|
280 | |
---|
281 | /*============================================================================= |
---|
282 | Colors |
---|
283 | =============================================================================*/ |
---|
284 | |
---|
285 | @media screen |
---|
286 | { |
---|
287 | /* Links */ |
---|
288 | a |
---|
289 | { |
---|
290 | color: #005a9c; |
---|
291 | } |
---|
292 | |
---|
293 | a:visited |
---|
294 | { |
---|
295 | color: #9c5a9c; |
---|
296 | } |
---|
297 | |
---|
298 | /* Syntax Highlighting */ |
---|
299 | .keyword { color: #0000AA; } |
---|
300 | .identifier { color: #000000; } |
---|
301 | .special { color: #707070; } |
---|
302 | .preprocessor { color: #402080; } |
---|
303 | .char { color: teal; } |
---|
304 | .comment { color: #800000; } |
---|
305 | .string { color: teal; } |
---|
306 | .number { color: teal; } |
---|
307 | .white_bkd { background-color: #FFFFFF; } |
---|
308 | .dk_grey_bkd { background-color: #999999; } |
---|
309 | |
---|
310 | /* Copyright, Legal Notice */ |
---|
311 | .copyright |
---|
312 | { |
---|
313 | color: #666666; |
---|
314 | font-size: small; |
---|
315 | } |
---|
316 | |
---|
317 | div div.legalnotice p |
---|
318 | { |
---|
319 | color: #666666; |
---|
320 | } |
---|
321 | |
---|
322 | /* Program listing */ |
---|
323 | pre.synopsis |
---|
324 | { |
---|
325 | background-color: #F3F3F3; |
---|
326 | border: 1pt solid #C0C0C0; |
---|
327 | } |
---|
328 | |
---|
329 | .programlisting, |
---|
330 | .screen |
---|
331 | { |
---|
332 | background-color: #F3F3F3; |
---|
333 | border: 1pt solid #C0C0C0; |
---|
334 | } |
---|
335 | |
---|
336 | /* Blurbs */ |
---|
337 | div.informaltable table tr td.blurb |
---|
338 | { |
---|
339 | background-color: #FFFFF0; |
---|
340 | border: 1pt solid #707070; |
---|
341 | } |
---|
342 | |
---|
343 | /* Table of contents */ |
---|
344 | .toc |
---|
345 | { |
---|
346 | background-color: #F3F3F3; |
---|
347 | } |
---|
348 | |
---|
349 | /* Tables */ |
---|
350 | div.informaltable table tr td, |
---|
351 | div.table table tr td |
---|
352 | { |
---|
353 | background-color: #F0F0F0; |
---|
354 | } |
---|
355 | |
---|
356 | div.informaltable table tr th, |
---|
357 | div.table table tr th |
---|
358 | { |
---|
359 | background-color: #E4E4E4; |
---|
360 | } |
---|
361 | |
---|
362 | /* Misc */ |
---|
363 | span.highlight |
---|
364 | { |
---|
365 | color: #00A000; |
---|
366 | } |
---|
367 | } |
---|
368 | |
---|
369 | @media print |
---|
370 | { |
---|
371 | /* Links */ |
---|
372 | a |
---|
373 | { |
---|
374 | color: black; |
---|
375 | } |
---|
376 | |
---|
377 | a:visited |
---|
378 | { |
---|
379 | color: black; |
---|
380 | } |
---|
381 | |
---|
382 | .spirit-nav |
---|
383 | { |
---|
384 | display: none; |
---|
385 | } |
---|
386 | |
---|
387 | /* Program listing */ |
---|
388 | pre.synopsis |
---|
389 | { |
---|
390 | border: 1px solid gray; |
---|
391 | } |
---|
392 | |
---|
393 | .programlisting, |
---|
394 | .screen |
---|
395 | { |
---|
396 | border: 1px solid gray; |
---|
397 | } |
---|
398 | |
---|
399 | /* Table of contents */ |
---|
400 | .toc |
---|
401 | { |
---|
402 | border: 1px solid gray; |
---|
403 | } |
---|
404 | |
---|
405 | .informaltable table, |
---|
406 | .table table |
---|
407 | { |
---|
408 | border: 1px solid gray; |
---|
409 | border-collapse: collapse; |
---|
410 | } |
---|
411 | |
---|
412 | /* Tables */ |
---|
413 | div.informaltable table tr td, |
---|
414 | div.table table tr td |
---|
415 | { |
---|
416 | border: 1px solid gray; |
---|
417 | } |
---|
418 | |
---|
419 | div.informaltable table tr th, |
---|
420 | div.table table tr th |
---|
421 | { |
---|
422 | border: 1px solid gray; |
---|
423 | } |
---|
424 | |
---|
425 | /* Misc */ |
---|
426 | span.highlight |
---|
427 | { |
---|
428 | font-weight: bold; |
---|
429 | } |
---|
430 | } |
---|