source: stylesheets/blfs.css@ fb31251

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 fb31251 was fb31251, checked in by Bruce Dubbs <bdubbs@…>, 19 years ago

Finish index tagging for Chapter 28 (KDE Core Packages)

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

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