Browse Source

more explicit list styles (closes #38)

embed
Hakim El Hattab 13 years ago
parent
commit
affe100075
  1. 17
      css/main.css

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

Loading…
Cancel
Save