diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-24 09:50:31 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-24 09:50:31 +0000 |
commit | 7781128d46665331fdbd9893a256257e88eaf96d (patch) | |
tree | 2e1e8ed81202c43bef356b75ea9f2f2cd86440d6 /example.style.css | |
parent | a9dec6b72054a997078fb8d026d5a990639857dd (diff) | |
download | mandoc-7781128d46665331fdbd9893a256257e88eaf96d.tar.gz |
Added Bf, Pf, etc. to -Thtml.
Fixed Rs in -Tascii to behave properly when not in "SEE ALSO" section.
Diffstat (limited to 'example.style.css')
-rw-r--r-- | example.style.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/example.style.css b/example.style.css index ff7833df..9a4da78d 100644 --- a/example.style.css +++ b/example.style.css @@ -26,9 +26,11 @@ span.fname { text-decoration: underline; } /* Function name (Fa, Fn, Rv). */ span.file { font-style: italic; } /* File (Pa). */ span.flag { font-weight: bold; } /* Flag (Fl, Cm). */ span.includes { font-weight: bold; } /* Header includes (In). */ +span.lit { font-family: monospace; } /* Literals (Bf -literal). */ span.macro { } /* Macro-ish thing (Fd). */ span.name { font-weight: bold; } /* Name of utility (Nm). */ span.opt { } /* Options (Op, Oo/Oc). */ +span.symb { font-weight: bold; } /* Symbols. */ span.type { font-style: italic; } /* Variable types (Vt, Ft, Fn). */ span.unix { } /* Unices (Ux, Ox, Nx, Fx, Bx, Bsx, Dx). */ span.utility { font-weight: bold; } /* Name of utility (Ex). */ @@ -39,7 +41,9 @@ a.link-sec { } /* Section links (Sx). */ a.link-mail { } /* Mailto links (Mt). */ a.link-ext { } /* Off-site link (Lk). */ -div.lit-block { font-family: monospace; } /* Literal block (D1, Bd -literal, Dl). */ +div.lit { font-family: monospace; } /* Literal (D1, Bd -literal, Dl, Bd -literal). */ +div.emph { font-style: italic; } /* Emphasis (Bl -emphasis). */ +div.symb { font-weight: bold; } /* Symbols (Bl -symbolic). */ table.header { } /* Document header. */ table.footer { } /* Document footer. */ |