summaryrefslogtreecommitdiff
path: root/basewiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-19 18:16:23 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-19 18:16:23 +0000
commitb058842d88616b7e333d4d71e87e492e909eaa70 (patch)
tree8f92a9a49dcde21fced3fa48d0e29652901207c6 /basewiki
parentcb60d16bb41b680616c1d4532a15df2ec478ce96 (diff)
add styling for outline lists
Diffstat (limited to 'basewiki')
-rw-r--r--basewiki/style.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/basewiki/style.css b/basewiki/style.css
index b975c89f2..7bb9bb9f5 100644
--- a/basewiki/style.css
+++ b/basewiki/style.css
@@ -138,3 +138,29 @@ td.changelog {
margin-bottom: 40px;
padding: 2ex 2ex;
}
+
+/* outlines */
+li.L1 {
+ list-style: upper-roman;
+}
+li.L2 {
+ list-style: decimal;
+}
+li.L3 {
+ list-style: lower-alpha;
+}
+li.L4 {
+ list-style: disc;
+}
+li.L5 {
+ list-style: square;
+}
+li.L6 {
+ list-style: circle;
+}
+li.L7 {
+ list-style: lower-roman;
+}
+li.L8 {
+ list-style: upper-alpha;
+}