From affe100075c51c660b2c1312c10956fd710ffa46 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Thu, 10 May 2012 01:52:02 -0400 Subject: [PATCH] more explicit list styles (closes #38) --- css/main.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/css/main.css b/css/main.css index 3701f2b..a9f5e6a 100644 --- a/css/main.css +++ b/css/main.css @@ -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;