summaryrefslogtreecommitdiff
path: root/stylesheets
diff options
context:
space:
mode:
authorStuart Rackham <srackham@methods.co.nz>2011-02-19 13:43:09 +1300
committerStuart Rackham <srackham@methods.co.nz>2011-02-19 13:43:09 +1300
commitd04e0ab1b30d83df9a638e818505ac55397d53d1 (patch)
treebb734d85029a38aeaaa0799f2e0455410cbd2200 /stylesheets
parentefc63e277c3375dce1fc6459edb584569584c4a3 (diff)
downloadasciidoc-d04e0ab1b30d83df9a638e818505ac55397d53d1.tar.gz
Added text foreground and background color and text size CSS styles for XHTML
outputs.
Diffstat (limited to 'stylesheets')
-rw-r--r--stylesheets/docbook-xsl.css37
-rw-r--r--stylesheets/xhtml11.css36
2 files changed, 73 insertions, 0 deletions
diff --git a/stylesheets/docbook-xsl.css b/stylesheets/docbook-xsl.css
index 2d83d47..2841225 100644
--- a/stylesheets/docbook-xsl.css
+++ b/stylesheets/docbook-xsl.css
@@ -275,3 +275,40 @@ div.calloutlist p
@media print {
div.navheader, div.navfooter { display: none; }
}
+
+span.aqua { color: aqua; }
+span.black { color: black; }
+span.blue { color: blue; }
+span.fuchsia { color: fuchsia; }
+span.gray { color: gray; }
+span.green { color: green; }
+span.lime { color: lime; }
+span.maroon { color: maroon; }
+span.navy { color: navy; }
+span.olive { color: olive; }
+span.purple { color: purple; }
+span.red { color: red; }
+span.silver { color: silver; }
+span.teal { color: teal; }
+span.white { color: white; }
+span.yellow { color: yellow; }
+
+span.aqua-background { background: aqua; }
+span.black-background { background: black; }
+span.blue-background { background: blue; }
+span.fuchsia-background { background: fuchsia; }
+span.gray-background { background: gray; }
+span.green-background { background: green; }
+span.lime-background { background: lime; }
+span.maroon-background { background: maroon; }
+span.navy-background { background: navy; }
+span.olive-background { background: olive; }
+span.purple-background { background: purple; }
+span.red-background { background: red; }
+span.silver-background { background: silver; }
+span.teal-background { background: teal; }
+span.white-background { background: white; }
+span.yellow-background { background: yellow; }
+
+span.big { font-size: 2em; }
+span.small { font-size: 0.6em; }
diff --git a/stylesheets/xhtml11.css b/stylesheets/xhtml11.css
index 9b732d8..af273ad 100644
--- a/stylesheets/xhtml11.css
+++ b/stylesheets/xhtml11.css
@@ -386,3 +386,39 @@ div.toclevel4 {
font-size: 0.9em;
}
+span.aqua { color: aqua; }
+span.black { color: black; }
+span.blue { color: blue; }
+span.fuchsia { color: fuchsia; }
+span.gray { color: gray; }
+span.green { color: green; }
+span.lime { color: lime; }
+span.maroon { color: maroon; }
+span.navy { color: navy; }
+span.olive { color: olive; }
+span.purple { color: purple; }
+span.red { color: red; }
+span.silver { color: silver; }
+span.teal { color: teal; }
+span.white { color: white; }
+span.yellow { color: yellow; }
+
+span.aqua-background { background: aqua; }
+span.black-background { background: black; }
+span.blue-background { background: blue; }
+span.fuchsia-background { background: fuchsia; }
+span.gray-background { background: gray; }
+span.green-background { background: green; }
+span.lime-background { background: lime; }
+span.maroon-background { background: maroon; }
+span.navy-background { background: navy; }
+span.olive-background { background: olive; }
+span.purple-background { background: purple; }
+span.red-background { background: red; }
+span.silver-background { background: silver; }
+span.teal-background { background: teal; }
+span.white-background { background: white; }
+span.yellow-background { background: yellow; }
+
+span.big { font-size: 2em; }
+span.small { font-size: 0.6em; }