Skip to content
Snippets Groups Projects
Commit affe1000 authored by Hakim El Hattab's avatar Hakim El Hattab
Browse files

more explicit list styles (closes #38)

parent 4031a21e
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment