summaryrefslogtreecommitdiff
path: root/Master/xemtex/doc/ghostscript/gs.css
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2005-12-28 00:07:27 +0000
committerKarl Berry <karl@freefriends.org>2005-12-28 00:07:27 +0000
commit30dd9f517c9c093ff3319061647a4555264f7914 (patch)
tree0d7a349bf99be5a42cc9c5a80a30f3b7136c4ccd /Master/xemtex/doc/ghostscript/gs.css
parent08ab8dce83f53b0f915cb66a37bbc8478b22c307 (diff)
trunk
git-svn-id: svn://tug.org/texlive/trunk@9 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/xemtex/doc/ghostscript/gs.css')
-rw-r--r--Master/xemtex/doc/ghostscript/gs.css73
1 files changed, 73 insertions, 0 deletions
diff --git a/Master/xemtex/doc/ghostscript/gs.css b/Master/xemtex/doc/ghostscript/gs.css
new file mode 100644
index 00000000000..d59976ed00e
--- /dev/null
+++ b/Master/xemtex/doc/ghostscript/gs.css
@@ -0,0 +1,73 @@
+/* This is the default Ghostscript stylesheet */
+
+body
+{
+ color: black;
+ background-color: white;
+}
+
+h1,h2,h3,h4,h5,h6
+{
+ font-family: sans-serif;
+}
+
+/* This needs a patched html file else you have it all over the place */
+/* we only want this for the "visual header" at the page top */
+h1
+{
+ text-align: center;
+ background-color: #CCCC00;
+}
+
+/* Number the h2/h3 -- doesn't work on v4/5 browsers */
+h2
+{
+ counter-increment: h2-count;
+ counter-reset: h3-count;
+}
+
+h2:before
+{
+ content: counter(h2-count) " ";
+}
+
+h3
+{
+ counter-increment: h3-count;
+}
+
+h3:before
+{
+ content: counter(h2-count) "." counter(h3-count) " ";
+
+}
+
+tt
+{
+ color: rgb(40%,24%,24%);
+}
+
+a > tt, a > b > tt
+{
+ color: blue;
+}
+
+a
+{
+ color: blue;
+}
+
+a.offsite
+{
+ font-style: oblique;
+}
+
+a:visited
+{
+ color: rgb(60%,0%,30%);
+}
+
+a:hover, a:active, a:focus
+{
+ background: #FFFFAA;
+}