diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-16 23:23:34 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-16 23:23:34 +0000 |
commit | 7ae486d54de6a3c8af11d503246eee057b2b8f88 (patch) | |
tree | 40aac93b14a914f4207f06087c3c1789733605d9 /example.style.css | |
parent | 20cd813c56c73fae5754cc0f8b994dabb833970c (diff) | |
download | mandoc-7ae486d54de6a3c8af11d503246eee057b2b8f88.tar.gz |
Some default styles for lists. Needs more testing, but seems safe
enough.
Diffstat (limited to 'example.style.css')
-rw-r--r-- | example.style.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/example.style.css b/example.style.css index 642544a9..22fabb02 100644 --- a/example.style.css +++ b/example.style.css @@ -95,7 +95,7 @@ dd.list-inset { } dl.list-ohang { } dt.list-ohang { } -dd.list-ohang { } +dd.list-ohang { margin-left: 0em; } dl.list-tag { } dt.list-tag { } @@ -105,17 +105,17 @@ table.list-col { } tr.list-col { } td.list-col { } -ul.list-bul { } +ul.list-bul { list-style-type: disc; padding-left: 1em; } li.list-bul { } -ul.list-dash { } -li.list-dash { } +ul.list-dash { list-style-type: none; padding-left: 0em; } +li.list-dash:before { content: "\2014 "; } -ul.list-hyph { } -li.list-hyph { } +ul.list-hyph { list-style-type: none; padding-left: 0em; } +li.list-hyph:before { content: "\2013 "; } -ul.list-item { } +ul.list-item { list-style-type: none; padding-left: 0em; } li.list-item { } -ol.list-enum { } +ol.list-enum { padding-left: 2em; } li.list-enum { } |