Customize outline numbering for table of contents
authorMichael Meffie <mmeffie@sinenomine.net>
Thu, 19 Mar 2020 19:29:35 +0000 (15:29 -0400)
committerMichael Meffie <mmeffie@sinenomine.net>
Thu, 19 Mar 2020 19:29:35 +0000 (15:29 -0400)
Although correct for outlines, using roman numerals for the table of
contents is rather odd. Rotate the numbering scheme to make the table of
contents look less strange.

local.css

index 91f5351..a80bb53 100644 (file)
--- a/local.css
+++ b/local.css
@@ -348,3 +348,13 @@ div.smallbox {
   padding: 2em;
   border: 2px solid #cccccc;
 }
+
+/* outlines */
+li.L1 { list-style: decimal; }
+li.L2 { list-style: lower-alpha; }
+li.L3 { list-style: disc; }
+li.L4 { list-style: square; }
+li.L5 { list-style: circle; }
+li.L6 { list-style: lower-roman; }
+li.L7 { list-style: upper-alpha; }
+li.L8 { list-style: upper-roman; }