source: stylesheets/blfs.css@ 276015d2

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 276015d2 was 276015d2, checked in by Randy McMurchy <randy@…>, 17 years ago

Added the LastChangedBy and Date keywords then set the corresponding keyword property on each file in the repo

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6430 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.0 KB
Line 
1/*
2$LastChangedBy$
3$Date$
4*/
5
6/* Global settings */
7body {
8 font-family: verdana, tahoma, helvetica, arial, sans-serif;
9 text-align: left;
10 background: #fff;
11 color: #333;
12 margin: 1em;
13 padding: 0;
14 font-size: 1em;
15 line-height: 1.2em
16}
17
18a:link { color: #22b; }
19a:visited { color: #7e4988; }
20a:hover, a:focus { color: #d30e08; }
21a:active { color: #6b77b1;}
22
23/* Headers */
24h1, h2, b, strong {
25 color: #000;
26 font-weight: bold;
27}
28
29h3, h4, h5, h6 {
30 color: #222;
31}
32
33.url {
34 color: #55f; /* Light Blue */
35 font-weight: bold;
36}
37
38h1 { font-size: 173%; text-align: center; line-height: 1.2em; }
39h1.title sup { font-size: small; }
40h2 { font-size: 144%; padding-top: 0.2em; margin-top: 0.3em; line-height: 1.2em; }
41h2.subtitle { text-align: center; line-height: 1.2em; }
42h3 { font-size: 120%; line-height: 1.2em; }
43h4 { font-size: 120%; line-height: 1.2em;}
44div.package h4, h5, h6 { font-size: 100%; font-style: italic; }
45
46/* Navigation */
47div.headertitles h4 {
48 margin-bottom: 2px;
49 text-align: center;
50}
51
52div.headertitles h3 {
53 margin-top: 2px;
54 text-align: center;
55}
56
57div.navheader, div.navfooter {
58 background: #ecedef;
59 padding: 0.1em 1em;
60 border-bottom: 1px solid #dbddec;
61}
62
63div.navfooter {
64 border-bottom: 0;
65 border-top: 1px solid #dbddec;
66}
67
68div.navheader ul, div.navfooter ul {
69 padding: .2em .5em .5em 0;
70 margin-left: 0px;
71 margin-right: 2px;
72 position: relative;
73 background: #dbddec;
74}
75
76div.navheader ul li, div.navfooter ul li {
77 display: inline;
78 width: 40%;
79}
80
81div.navheader ul li.prev, div.navfooter ul li.prev {
82 position: absolute;
83 display: block;
84 left: 0;
85 text-align: left;
86 padding: 0.2em 1em;
87 margin-left: 6px;
88}
89
90div.navheader ul li.next, div.navfooter ul li.next {
91 position: absolute;
92 display: block;
93 text-align: right;
94 right: 5px;
95 padding: 0.2em 0.5em;
96 margin-right: 7px;
97}
98
99div.navheader ul li.prev p, div.navfooter ul li.prev p,
100div.navheader ul li.next p, div.navfooter ul li.next p {
101 padding: 0;
102 margin: 1px 0px;
103}
104
105div.navheader ul li.home, div.navheader ul li.up,
106div.navfooter ul li.home, div.navfooter ul li.up {
107 text-align: center;
108 padding: 0;
109 margin: 0px auto;
110 display: block;
111 color: #dbddec;
112}
113
114/* TOC & Index*/
115
116div.toc ul, div.index ul, div.navheader ul, div.navfooter ul {
117 list-style: none;
118}
119
120div.toc, div.dedication {
121 padding-left: 1em;
122}
123
124li.preface {
125 margin-left: 1em;
126}
127
128div.toc ul li h3, div.toc ul li h4 {
129 margin: .4em;
130}
131
132.dummy {
133 font-weight: bold;
134 font-size: 110%;
135 line-height: 1.8em;
136/* Removed per Bruce
137 margin-left: -1.5em; */
138}
139
140.item {
141 width: 18.5em;
142 float: left;
143}
144
145.indexref {
146 margin-left: 18.5em;
147}
148
149.secitem {
150 font-weight: normal;
151 width: 16em;
152 float: left;
153}
154
155/* Admonitions */
156div.note, div.tip {
157 background-color: #fffff6;
158 border: 2px solid #dbddec;
159 width: 90%;
160 margin: .5em auto;
161}
162
163div.important, div.warning, div.caution {
164 background-color: #fffff6;
165 border: medium solid #400;
166 width: 90%;
167 margin: 1.5em auto;
168 color: #600;
169 font-size: larger;
170}
171
172div.important h3, div.warning h3, div.caution h3 {
173 color: #900;
174}
175
176div.admonhead img {
177 padding: .3em;
178}
179
180div.admonhead h3 {
181 display: inline;
182 margin-left: 1.5em;
183}
184
185div.admonbody {
186 margin: .5em;
187}
188
189div.important em, div.warning em, div.caution em {
190 color: #000;
191 font-weight: bold;
192}
193
194div.important tt, div.warning tt, div.caution tt {
195 font-weight: bold;
196}
197
198table {
199 width: auto;
200 margin-left: 1em;
201}
202
203td {
204 vertical-align: top;
205}
206
207td span, td p {
208 margin: 0.3em;
209}
210
211div.table table {
212 border-collapse: collapse;
213 }
214
215div.table td, div.table th {
216 padding: 0.3em;
217 text-align: right;
218 vertical-align: baseline;
219}
220
221div.table tr > td:first-child, div.table tr > th:first-child {
222 text-align: left;
223}
224
225div.revhistory th {
226 text-align: left;
227 line-height: 2em;
228}
229
230div.revhistory td {
231 padding-right: 1em;
232}
233
234span.term {
235 display: block;
236}
237
238/* variablelist & segmentedlist */
239dl {
240 margin: 0;
241 padding: 0;
242 list-style-type: none;
243}
244
245dt {
246 display: list-item;
247 font-weight: bold;
248 margin: .33em 0 0 1em;
249 padding: 0;
250}
251
252span.seg {
253 display: block;
254 padding-left: 12em;
255}
256
257div.content dt {
258 list-style: none;
259}
260
261dd {
262 margin: 0 0 1em 3em;
263 padding: 0;
264}
265
266div.variablelist dd {
267 margin-bottom: 1em;
268}
269
270div.variablelist dd p {
271 margin-top: 0px;
272}
273
274dl.materials dd {
275 margin-left: 0px;
276}
277
278div.segmentedlist {
279 margin-top: 1em;
280}
281
282div.segmentedlist p {
283 margin: 0px auto;
284}
285
286span.segtitle {
287 display: block;
288 float: left;
289 width: 12em;
290}
291
292div.seg {
293 clear: left;
294}
295
296/* itemizedlist */
297
298div.itemizedlist {
299 margin-left: 1em;
300}
301
302ul[compact="compact"] li p {
303 padding: 0.3em;
304 margin: 0em;
305 background-color: #f0fff0;
306}
307
308/* Indented blocks */
309p, ul, dl, code, blockquote {
310 padding-left: 1em;
311}
312
313/* Monospaced elements */
314tt, code, kbd, pre, .command {
315 font-family: monospace;
316}
317
318pre.userinput {
319 color: #101310;
320 background-color: #e5e5e5;
321 border: 1px solid #050505;
322 padding: .5em 1em;
323 margin: 0 2em;
324 font-weight: bold;
325}
326
327pre.root {
328 color: #101310;
329 background-color: #e5e5e5;
330 border: 1px solid #050505;
331 padding: .5em 1em;
332 margin: 0 2em;
333 font-weight: bold;
334}
335
336.literal, .prompt {
337 font-weight: normal;
338}
339
340pre.screen {
341 color: #000;
342 background-color: #e9e9e9;
343 border: 1px solid #050505;
344 padding: .5em 1em;
345 margin: 0 2em;
346}
347
348/* Sections */
349div h1, div.glossary h2 {
350 padding: 1em 0 0.5em 0;
351 margin: 0px auto;
352}
353
354div.glossary h2 {
355 text-align: center;
356 font-size: 173%;
357 padding-top: 0.4em;
358 border-bottom: .1em solid #dbddec;
359}
360
361div.package {
362 padding: 0 0.5em 0.3em 0.5em;
363 margin: 0.5em 0 0.5em 0;
364}
365
366div.kernel {
367 padding: 0 0.5em 0.3em 0.5em;
368 margin: 0.5em 0 0.5em 0;
369}
370
371div.installation {
372 padding: 0 0.5em 0.3em 0.5em;
373 margin: 0.5em 0 0.5em 0;
374}
375
376div.commands {
377 padding: 0 0.5em 0.3em 0.5em;
378 margin: 0.5em 0 0.5em 0;
379}
380
381div.testing {
382 padding: 0 0.5em 0.3em 0.5em;
383 margin: 0.5em 0 0.5em 0;
384}
385
386div.configuration {
387 padding: 0 0.5em 0.3em 0.5em;
388 margin: 0.5em 0 0.5em 0;
389}
390
391div.content {
392 padding: 0 0.5em 0.3em 0.5em;
393 margin: 0.5em 0 0.5em 0;
394}
395
396div.book, div.preface, div.part, div.chapter, div.sect1, div.appendix, div.index {
397 padding-bottom: 0.5em;
398}
399
400div.preface h1, div.part h1, div.chapter h1, div.sect1 h1, div.appendix h1, div.index h1 {
401 background: #f5f6f7;
402 border-bottom: .1em solid #dbddec;
403 margin: 0px auto;
404 padding: .5em;
405}
406
407div.book h1 {
408 background: #f5f6f7;
409 margin: 0px auto;
410 padding: 0.5em;
411}
412
413div.book h2.subtitle {
414 background: #dbddec;
415 margin: 0px auto;
416 padding: 0.2em;
417}
418div.authorgroup, div p.copyright, div.abstract, div p.pubdate, div.revhistory {
419 background: #f5f6f7;
420 margin: 0px auto;
421 padding: 1em 0.5em;
422}
423
424hr {
425 background: #dbddec;
426 height: .3em;
427 border: 0px;
428 margin: 0px auto;
429 padding: 0;
430}
431
432/* Last edited info */
433p.updated {
434 font-size: small;
435 font-weight: bold;
436 font-style: italic;
437}
438
439/* Inline tags */
440
441tt.systemitem {
442 font-style: italic;
443}
444
445p.usernotes {
446 margin-left: -1em;
447 font-size: small;
448 font-weight: bold;
449 font-style: italic;
450}
451
452.simplelist {
453 background-color: #f0fff0;
454}
455
456.underlined {
457 text-decoration: underline;
458}
Note: See TracBrowser for help on using the repository browser.