more explicit list styles (closes #38)
authorHakim El Hattab <hakim.elhattab@gmail.com>
Thu, 10 May 2012 05:52:02 +0000 (01:52 -0400)
committerHakim El Hattab <hakim.elhattab@gmail.com>
Thu, 10 May 2012 05:52:02 +0000 (01:52 -0400)
css/main.css

index 3701f2baf375adb8a5f65220cb896cefc734196c..a9f5e6a44d717570faa5d20308c6e631c9c2cf2c 100644 (file)
@@ -144,13 +144,26 @@ html {
 }
 
 #reveal ol {
-       list-style: decimal;
-       list-style-position: inside;
+       list-style: decimal inside;
 }
 
 #reveal ul {
        list-style: disc;
 }
+       #reveal ul>li>ul {
+               list-style: square;
+       }
+               #reveal ul>li>ul>li>ul {
+                       list-style: circle;
+               }
+
+#reveal ul>li>ul,
+#reveal ol>li>ol,
+#reveal ul>li>ul>li>ul,
+#reveal ol>li>ol>li>ol {
+       display: block;
+       margin-left: 40px;
+}
 
 #reveal p {
        margin-bottom: 10px;