simplified handling of nested lists
authorFrancesco Schwarz <mail@frncs.co>
Tue, 5 Jun 2012 16:19:10 +0000 (18:19 +0200)
committerFrancesco Schwarz <mail@frncs.co>
Tue, 5 Jun 2012 16:19:10 +0000 (18:19 +0200)
css/main.css

index a508dce33b3fa6853e39ed8b8f5c5dff768f69fb..41c06cf64670437e02eaff04495bc08472eadf10 100644 (file)
@@ -144,35 +144,26 @@ body {
 }
 
 .reveal ol {
-       list-style: decimal inside;
+       list-style-type: decimal;
 }
 
 .reveal ul {
-       list-style: disc;
+       list-style-type: disc;
+}
+
+.reveal ul ul {
+       list-style-type: square;
+}
+
+.reveal ul ul ul {
+       list-style-type: circle;
 }
-       .reveal ul>li>ul {
-               list-style: square;
-       }
-               .reveal ul>li>ul>li>ul {
-                       list-style: circle;
-               }
 
-/* Brain freeze – there has to be a better way of doing this? */
 .reveal ul ul,
 .reveal ul ol,
 
 .reveal ol ol,
-.reveal ol ul,
-
-.reveal ul ul ul,
-.reveal ul ul ol,
-.reveal ul ol ol,
-.reveal ul ol ul,
-
-.reveal ol ol ol,
-.reveal ol ol ul,
-.reveal ol ul ul,
-.reveal ol ul ol {
+.reveal ol ul {
        display: block;
        margin-left: 40px;
 }