diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-05 13:00:11 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-05 13:00:11 +0000 |
commit | f824bd1b5c997090ea6dee10eb77ccf96c57fc03 (patch) | |
tree | 1c1c9a396171a0c3602779cebc05681d5078faca /example.style.css | |
parent | 265ff1bc6958140d54a6320d854e1487e996f432 (diff) | |
download | mandoc-f824bd1b5c997090ea6dee10eb77ccf96c57fc03.tar.gz |
Give tables an HTML class.
Diffstat (limited to 'example.style.css')
-rw-r--r-- | example.style.css | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/example.style.css b/example.style.css index bf616498..7b61d430 100644 --- a/example.style.css +++ b/example.style.css @@ -1,8 +1,12 @@ /* $Id$ */ /* - * This default style-sheet mimics the appearance of the traditional - * cvsweb output. + * This is an example style-sheet provided for mandoc(1) and the -Thtml + * or -Txhtml output mode. + * + * It mimics the appearance of the traditional cvsweb output. + * + * See mdoc(7) and man(7) for macro explanations. */ html { min-width: 580px; width: 580px; } @@ -96,7 +100,7 @@ a.link-man { } /* Manual links (Xr). */ a.link-ref { } /* Reference section links (%Q). */ a.link-sec { } /* Section links (Sx). */ -/* Formatting for lists. */ +/* Formatting for lists. See mdoc(7). */ dl.list-diag { } dt.list-diag { } @@ -136,3 +140,7 @@ li.list-item { } ol.list-enum { padding-left: 2em; } li.list-enum { } + +/* Table modes. See tbl(7). */ + +table.tbl { } |