source: stylesheets/lfs.css@ 8c16bf7

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 12.2 12.2-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/loongarch-12.2 xry111/mips64el xry111/multilib xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 8c16bf7 was 8c16bf7, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Added a bullet to the list of commands explanations.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3719 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

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