more explicit list styles (closes #38)

This commit is contained in:
Hakim El Hattab 2012-05-10 01:52:02 -04:00
parent 4031a21ea8
commit affe100075
1 changed files with 15 additions and 2 deletions

View File

@ -144,13 +144,26 @@ html {
} }
#reveal ol { #reveal ol {
list-style: decimal; list-style: decimal inside;
list-style-position: inside;
} }
#reveal ul { #reveal ul {
list-style: disc; 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 { #reveal p {
margin-bottom: 10px; margin-bottom: 10px;