aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/example.style.css
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-16 23:23:34 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-16 23:23:34 +0000
commit66e158326d79558ec465057b7ef8ff86feab5962 (patch)
treec16f3274cdf26db5bd9d1e80fd357098c1225a7d /example.style.css
parent587ce85fa12cdf6d3d392e610f607dff9e7cfdc0 (diff)
downloadmandoc-66e158326d79558ec465057b7ef8ff86feab5962.tar.gz
mandoc-66e158326d79558ec465057b7ef8ff86feab5962.tar.zst
mandoc-66e158326d79558ec465057b7ef8ff86feab5962.zip
Some default styles for lists. Needs more testing, but seems safe
enough.
Diffstat (limited to 'example.style.css')
-rw-r--r--example.style.css18
1 files changed, 9 insertions, 9 deletions
diff --git a/example.style.css b/example.style.css
index af920eb2..8fbfa1e7 100644
--- a/example.style.css
+++ b/example.style.css
@@ -1,4 +1,4 @@
-/* $Id: example.style.css,v 1.26 2010/12/15 17:21:24 kristaps Exp $ */
+/* $Id: example.style.css,v 1.27 2010/12/16 23:23:34 kristaps Exp $ */
html { min-width: 580px; width: 580px; }
@@ -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 { }