diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-05-29 20:24:53 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-05-29 20:24:53 +0000 |
commit | e4311f2df7ae6ac6f3f2598d9bb7481687ffebf0 (patch) | |
tree | 44612396bb58d1d7632e41f3dfd6648e7d3e0ea4 /stylesheets/lfs.css | |
parent | 05616e275f9b1c499f622fdaf80cefba09b25efd (diff) |
Reverting some wrong changes in the CSS code.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3727 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets/lfs.css')
-rw-r--r-- | stylesheets/lfs.css | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/stylesheets/lfs.css b/stylesheets/lfs.css index 0ba33057a..28b354ed1 100644 --- a/stylesheets/lfs.css +++ b/stylesheets/lfs.css @@ -129,13 +129,26 @@ div.toc ul li h3, div.toc ul li h4 { } /* Admonitions */ -div.admonition { +div.note, div.tip { background-color: #fffff6; - border: medium solid #600; + border: 2px solid #dbddec; width: 90%; margin: .5em auto; } +div.important, div.warning, div.caution { + background-color: #fffff6; + border: medium solid #400; + width: 90%; + margin: 1.5em auto; + color: #600; + font-size: larger; +} + +div.important h3, div.warning h3, div.caution h3 { + color: #900; +} + div.admonhead img { padding: .3em; } @@ -149,6 +162,15 @@ div.admonbody { margin: .5em; } +div.important em, div.warning em, div.caution em { + color: #000; + font-weight: bold; +} + +div.important tt, div.warning tt, div.caution tt { + font-weight: bold; +} + /* variablelist & segmentedlist */ dl { margin: 0; @@ -165,6 +187,7 @@ dd { margin: 0 0 1em 3em; padding: 0; } + div.variablelist dd { margin-bottom: 1em; } @@ -173,6 +196,10 @@ div.variablelist dd p { margin-top: 0px; } +dl.materials dt, div.installation dt, div.configuration dt, div.sect2 dt { + display: list-item; +} + dl.materials dd { margin-left: 0px; } @@ -214,14 +241,14 @@ pre.screen { /* Sections */ div.wrap h1 { background: #f5f6f7; - padding: 0.5em 0 0.5em 0; + padding: 1em 0 0.5em 0; margin: 0px auto; } div.package { background: #f5f6f7; border-bottom: 0.2em solid #dbddec; - padding: 0 0.5em 0.3em 0.5em; + padding: 0.5em 0.5em 0.3em 0.5em; margin: 0px auto; } @@ -240,7 +267,7 @@ div.configuration { div.content { background: #f5f6f7; border-top: 0.2em solid #dbddec; - padding: 0.5em 0.5em 0.5em 0.5em; + padding: 0.5em 0.5em 1em 0.5em; margin: 0.5em 0 .5em 0; } |