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 {
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;