source: stylesheets/blfs.css@ 0290a023

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.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 0290a023 was 6a5c090, checked in by Bruce Dubbs <bdubbs@…>, 19 years ago

Style updates

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

  • Property mode set to 100644
File size: 5.7 KB
Line 
1/* Global settings */
2body {
3 font-family: verdana, tahoma, helvetica, arial, sans-serif;
4 text-align: left;
5 background: #fff;
6 color: #333;
7 margin: 1em;
8 padding: 0;
9 font-size: 1em;
10 line-height: 1.2em
11}
12
13a:link { color: #22b; }
14a:visited { color: #7e4988; }
15a:hover, a:focus { color: #d30e08; }
16a:active { color: #6b77b1;}
17
18/* Headers */
19h1, h2, b, strong {
20 color: #000;
21 font-weight: bold;
22}
23
24h3, h4, h5, h6 {
25 color: #222;
26}
27
28.url {
29 color: #55f; /* Light Blue */
30 font-weight: bold;
31}
32
33h1 { font-size: 173%; text-align: center; }
34h2 { font-size: 144%; padding-top: 0.2em; margin-top: 0.3em; }
35h2.subtitle { text-align: center; }
36h3 { font-size: 120%; }
37h4 { font-size: 120%;}
38h5, h6 { font-size: 100%; font-style: italic; }
39
40/* Navigation */
41div.headertitles h4 {
42 margin-bottom: 2px;
43 text-align: center;
44}
45
46div.headertitles h3 {
47 margin-top: 2px;
48 text-align: center;
49}
50
51div.navheader, div.navfooter {
52 background: #ecedef;
53 padding: 0.1em 1em;
54 border-bottom: 1px solid #dbddec;
55}
56
57div.navfooter {
58 border-bottom: 0;
59 border-top: 1px solid #dbddec;
60}
61
62div.navheader ul, div.navfooter ul {
63 padding: .2em .5em .5em 0;
64 margin-left: 0px;
65 margin-right: 2px;
66 position: relative;
67 background: #dbddec;
68}
69
70div.navheader ul li, div.navfooter ul li {
71 display: inline;
72 width: 40%;
73}
74
75div.navheader ul li.prev, div.navfooter ul li.prev {
76 position: absolute;
77 display: block;
78 left: 0;
79 text-align: left;
80 padding: 0.2em 1em;
81 margin-left: 6px;
82}
83
84div.navheader ul li.next, div.navfooter ul li.next {
85 position: absolute;
86 display: block;
87 text-align: right;
88 right: 5px;
89 padding: 0.2em 0.5em;
90 margin-right: 7px;
91}
92
93div.navheader ul li.prev p, div.navfooter ul li.prev p,
94div.navheader ul li.next p, div.navfooter ul li.next p {
95 padding: 0;
96 margin: 1px 0px;
97}
98
99div.navheader ul li.home, div.navheader ul li.up,
100div.navfooter ul li.home, div.navfooter ul li.up {
101 text-align: center;
102 padding: 0;
103 margin: 0px auto;
104 display: block;
105 color: #dbddec;
106}
107
108/* TOC & Index*/
109
110div.toc ul, div.index ul, div.navheader ul, div.navfooter ul {
111 list-style: none;
112}
113
114div.toc, div.dedication {
115 padding-left: 1em;
116}
117
118li.preface {
119 margin-left: 1em;
120}
121
122div.toc ul li h3, div.toc ul li h4 {
123 margin: .4em;
124}
125
126.item {
127 width: 17em;
128 float: left;
129}
130
131.secitem {
132 font-weight: normal;
133 width: 16em;
134 float: left;
135}
136
137/* Admonitions */
138div.note, div.tip {
139 background-color: #fffff6;
140 border: 2px solid #dbddec;
141 width: 90%;
142 margin: .5em auto;
143}
144
145div.important, div.warning, div.caution {
146 background-color: #fffff6;
147 border: medium solid #400;
148 width: 90%;
149 margin: 1.5em auto;
150 color: #600;
151 font-size: larger;
152}
153
154div.important h3, div.warning h3, div.caution h3 {
155 color: #900;
156}
157
158div.admonhead img {
159 padding: .3em;
160}
161
162div.admonhead h3 {
163 display: inline;
164 margin-left: 1.5em;
165}
166
167div.admonbody {
168 margin: .5em;
169}
170
171div.important em, div.warning em, div.caution em {
172 color: #000;
173 font-weight: bold;
174}
175
176div.important tt, div.warning tt, div.caution tt {
177 font-weight: bold;
178}
179
180/* variablelist & segmentedlist */
181dl {
182 margin: 0;
183 padding: 0;
184 list-style-type: none;
185}
186
187dt {
188 display: list-item;
189 font-weight: bold;
190 margin: .33em 0 0 1em;
191 padding: 0;
192}
193
194div.content dt {
195 list-style: none;
196}
197
198dd {
199 margin: 0 0 1em 3em;
200 padding: 0;
201}
202
203div.variablelist dd {
204 margin-bottom: 1em;
205}
206
207div.variablelist dd p {
208 margin-top: 0px;
209}
210
211dl.materials dd {
212 margin-left: 0px;
213}
214
215div.segmentedlist {
216 margin-top: 1em;
217}
218
219div.segmentedlist p {
220 margin: 0px auto;
221}
222
223span.segtitle {
224 display: block;
225 float: left;
226 width: 12em;
227}
228
229div.seg {
230 clear: left;
231}
232
233/* itemizedlist */
234
235div.itemizedlist {
236 margin-left: 1em;
237}
238
239div.sect3 li p {
240 padding: 0.3em;
241 margin: 0em;
242 background-color: #f0fff0;
243}
244
245/* Indented blocks */
246p, ul, dl, code, blockquote {
247 padding-left: 1em;
248}
249
250/* Monospaced elements */
251tt, code, kbd, pre, .command {
252 font-family: monospace;
253}
254
255pre.userinput {
256 color: #101310;
257 background-color: #e5e5e5;
258 border: 1px solid #050505;
259 padding: .5em 1em;
260 margin: 0 2em;
261}
262
263.literal {
264 font-weight: normal;
265}
266
267pre.screen {
268 color: #000;
269 background-color: #e9e9e9;
270 border: 1px solid #050505;
271 padding: .5em 1em;
272 margin: 0 2em;
273}
274
275/* Sections */
276div.wrap h1, div.glossary h2 {
277 background: #f5f6f7;
278 padding: 1em 0 0.5em 0;
279 margin: 0px auto;
280}
281
282div.glossary h2 {
283 text-align: center;
284 font-size: 173%;
285 padding-top: 0.4em;
286 border-bottom: .1em solid #dbddec;
287}
288
289div.package {
290 background: #f5f6f7;
291 border-bottom: 0.2em solid #dbddec;
292 padding: 0.5em 0.5em 0.3em 0.5em;
293 margin: 0px auto;
294}
295
296div.installation {
297 padding: 0 0.5em 0.3em 0.5em;
298 margin: 0.5em 0 0.5em 0;
299}
300
301div.configuration {
302 background: #fefefe;
303 border-top: 0.2em solid #dbddec;
304 padding: 0.5em;
305 margin: 0.5em 0 .5em 0;
306}
307
308div.content {
309 background: #f5f6f7;
310 border-top: 0.2em solid #dbddec;
311 padding: 0.5em 0.5em 1em 0.5em;
312 margin: 0.5em 0 .5em 0;
313}
314
315div.installation h2, div.content h2 {
316 padding-top: 0.3em;
317 margin: 0;
318}
319
320div.book, div.preface, div.part, div.chapter, div.sect1, div.appendix, div.index {
321 padding-bottom: 0.5em;
322}
323
324div.preface h1, div.part h1, div.chapter h1, div.sect1 h1, div.appendix h1, div.index h1 {
325 background: #f5f6f7;
326 border-bottom: .1em solid #dbddec;
327 margin: 0px auto;
328 padding: .5em;
329}
330
331div.book h1 {
332 background: #f5f6f7;
333 margin: 0px auto;
334 padding: 0.5em;
335}
336
337div.book h2.subtitle {
338 background: #dbddec;
339 margin: 0px auto;
340 padding: 0.2em;
341}
342div.authorgroup, div p.copyright, div.abstract, div p.pubdate, div.revhistory {
343 background: #f5f6f7;
344 margin: 0px auto;
345 padding: 1em 0.5em;
346}
347
348hr {
349 background: #dbddec;
350 height: .3em;
351 border: 0px;
352 margin: 0px auto;
353 padding: 0;
354}
355
356/* Last edited info */
357p.updated {
358 font-size: small;
359 font-weight: bold;
360 font-style: italic;
361}
Note: See TracBrowser for help on using the repository browser.