summaryrefslogtreecommitdiffstats
path: root/example.style.css
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-15 15:59:23 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-15 15:59:23 +0000
commitbcfe212950ee8771555fb62a002b3dac21750c10 (patch)
treeb142010a1e9117ca2fb601b6d9a73c649b823fcf /example.style.css
parent47ae77e2bde036d218817f41efc1263bf5b315a8 (diff)
downloadmandoc-bcfe212950ee8771555fb62a002b3dac21750c10.tar.gz
Remove stupid outer DIV tag in favour of regular BODY and HTML that can
be handled in CSS. Clarified "lit" tag (will be the subject of future clarification). Removed CSS2 note in mandoc.1, which is no longer the case.
Diffstat (limited to 'example.style.css')
-rw-r--r--example.style.css9
1 files changed, 5 insertions, 4 deletions
diff --git a/example.style.css b/example.style.css
index 8c4b24ac..e6d8b847 100644
--- a/example.style.css
+++ b/example.style.css
@@ -1,7 +1,8 @@
/* $Id$ */
-div.body { font-family: monospace;
- min-width: 580px; width: 580px; } /* Top-most div tag. */
+html { min-width: 580px; width: 580px; }
+
+body { font-family: monospace; }
div.sec-head { font-weight: bold; font-style: normal; } /* Sections (Sh). */
div.sec-body { }
@@ -31,7 +32,7 @@ span.ftype { font-style: italic; font-weight: normal; } /* Function types (Ft, F
span.includes { font-weight: bold; font-style: normal; } /* Header includes (In). */
span.italic { font-style: italic; font-weight: normal; } /* Generically italic (BI, IB, I). */
span.lib { } /* Library (Lb). */
-span.lit { } /* Literals (Bf -literal). */
+span.lit { } /* Literals (Dl). */
span.macro { font-weight: bold; font-style: normal; } /* Macro-ish thing (Fd). */
span.name { font-weight: bold; font-style: normal; } /* Name of utility (Nm). */
span.opt { } /* Options (Op, Oo/Oc). */
@@ -65,7 +66,7 @@ a.link-ref { } /* Reference section links (%Q). */
a.link-sec { } /* Section links (Sx). */
div.emph { font-style: italic; font-weight: normal; } /* Emphasis (Bl -emphasis). */
-div.lit { } /* Literal (D1, Bd -literal, Dl, Bd -literal). */
+div.lit { } /* Literal (Bf -literal, Bd -literal, Bd -unfilled). */
div.symb { font-weight: bold; font-style: normal; } /* Symbols (Bl -symbolic). */
table.footer { } /* Document footer. */