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