summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2005-11-23 06:37:03 +0000
committerTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2005-11-23 06:37:03 +0000
commit876749686ff81014214c615b6b6f39f919ec7f32 (patch)
treed81c8bae6f5cddc39e80bdaceb4a0128c738ab1f /css
parent2d57d1c9184b3602323c75903dd30e385fada7d5 (diff)
downloadfedora-doc-utils-876749686ff81014214c615b6b6f39f919ec7f32.tar.gz
fedora-doc-utils-876749686ff81014214c615b6b6f39f919ec7f32.tar.xz
fedora-doc-utils-876749686ff81014214c615b6b6f39f919ec7f32.zip
FDP stylesheet for DRAFT versions. Needs "/watermark.png" in top level
HTML directory, get from "../images".
Diffstat (limited to 'css')
-rw-r--r--css/fedora-draft.css147
-rw-r--r--css/fedora.css11
2 files changed, 158 insertions, 0 deletions
diff --git a/css/fedora-draft.css b/css/fedora-draft.css
new file mode 100644
index 0000000..fce1fab
--- /dev/null
+++ b/css/fedora-draft.css
@@ -0,0 +1,147 @@
+/*
+
+CSS for Red Hat Linux Project docs from the Documentation Project
+
+Written by Tammy Fox and Garrett LeSage
+
+Copyright 2003 Tammy Fox, Garrett LeSage, and Red Hat, Inc.
+Copywight 2005 Tommy Reynolds <Tommy.Reynolds@MegaCoder.com>
+
+License: GPL
+
+*/
+
+body {
+ background-attachment scroll;
+ background-color: #FEFEFF;
+ background-image: url('watermark.png');
+ background-position: top center;
+ background-repeat: repeat;
+}
+
+li p {
+ display: inline;
+}
+
+div.table table {
+ width: 95%;
+ background-color: #DCDCDC;
+ color: #000000;
+ border-spacing: 0;
+}
+
+div.table table th {
+ border: 1px solid #A9A9A9;
+ background-color: #A9A9A9;
+ color: #000000;
+}
+
+div.table table td {
+ border: 1px solid #A9A9A9;
+ background-color: #DCDCDC;
+ color: #000000;
+ padding: 0.5em;
+ margin-bottom: 0.5em;
+ margin-top: 2px;
+
+}
+
+div.note table, div.tip table, div.important table, div.caution table, div.warning table {
+ width: 95%;
+ border: 2px solid #D0D0B0;
+ background-color: #FAF9E0;
+ color: #000000;
+ /* padding inside table area */
+ padding: 0.5em;
+ margin-bottom: 0.5em;
+ margin-top: 0.5em;
+}
+
+.qandaset table {
+ border-collapse: collapse;
+}
+.qandaset {
+}
+.qandaset tr.question {
+}
+.qandaset tr.question td {
+ font-weight: bold;
+ padding: 1em 1em 0;
+}
+.qandaset tr.answer td {
+ padding: 0.25em 1em 1.5em;
+}
+.qandaset tr.question td, .qandaset tr.answer td {
+}
+
+hr {
+ border: 0;
+ border-bottom: 1px solid #ccc;
+}
+
+h1, h2, h3, h4 {
+ font-family: luxi sans,sans-serif;
+ color: #22437f;
+ font-weight: bold;
+}
+h1 {
+ font-size: 1.75em;
+}
+
+h2 {
+ font-size: 1.25em;
+}
+
+h3 {
+ font-size: 1.1em;
+}
+
+a:link {
+ color: #900;
+}
+a:visited {
+ color: #48468f;
+}
+a:hover {
+ color: #f20;
+}
+
+code.screen, pre.screen {
+ font-family: monospace;
+ font-size: 1em;
+ display: block;
+ padding: 10px;
+ border: 1px solid #bbb;
+ background-color: #eee;
+ color: #000;
+ overflow: auto;
+ border-radius: 2.5px;
+ -moz-border-radius: 2.5px;
+ margin: 0.5em 2em;
+}
+
+div.example {
+ padding: 10px;
+ border: 1px solid #bbb;
+ margin: 0.5em 2em;
+}
+
+.procedure ol li {
+ margin-bottom: 0.5em;
+}
+.procedure ol li li {
+ /* prevent inheritance */
+ margin-bottom: 0em;
+}
+
+.itemizedlist ul li {
+ margin-bottom: 0.5em;
+}
+.itemizedlist ul li li {
+ /* prevent inheritance */
+ margin-bottom: 0em;
+}
+
+p.title {
+ text-align: center;
+}
diff --git a/css/fedora.css b/css/fedora.css
index d1133fd..24cccdb 100644
--- a/css/fedora.css
+++ b/css/fedora.css
@@ -10,6 +10,17 @@ License: GPL
*/
+/*
+This "body" section is included for reference. Diff with fedora-draft.css
+body {
+ background-attachment scroll;
+ background-color: #FEFEFF;
+ background-image: url('watermark.png');
+ background-position: top center;
+ background-repeat: repeat;
+}
+*/
+
li p {
display: inline;
}