Merge pull request #53 from isellsoap/master
simplified handling of nested lists
This commit is contained in:
commit
01f40cc8d9
1 changed files with 11 additions and 20 deletions
31
css/main.css
31
css/main.css
|
@ -144,35 +144,26 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.reveal ol {
|
.reveal ol {
|
||||||
list-style: decimal inside;
|
list-style-type: decimal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reveal ul {
|
.reveal ul {
|
||||||
list-style: disc;
|
list-style-type: disc;
|
||||||
}
|
}
|
||||||
.reveal ul>li>ul {
|
|
||||||
list-style: square;
|
.reveal ul ul {
|
||||||
}
|
list-style-type: square;
|
||||||
.reveal ul>li>ul>li>ul {
|
}
|
||||||
list-style: circle;
|
|
||||||
|
.reveal ul ul ul {
|
||||||
|
list-style-type: circle;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Brain freeze – there has to be a better way of doing this? */
|
|
||||||
.reveal ul ul,
|
.reveal ul ul,
|
||||||
.reveal ul ol,
|
.reveal ul ol,
|
||||||
|
|
||||||
.reveal ol ol,
|
.reveal ol ol,
|
||||||
.reveal ol ul,
|
.reveal ol ul {
|
||||||
|
|
||||||
.reveal ul ul ul,
|
|
||||||
.reveal ul ul ol,
|
|
||||||
.reveal ul ol ol,
|
|
||||||
.reveal ul ol ul,
|
|
||||||
|
|
||||||
.reveal ol ol ol,
|
|
||||||
.reveal ol ol ul,
|
|
||||||
.reveal ol ul ul,
|
|
||||||
.reveal ol ul ol {
|
|
||||||
display: block;
|
display: block;
|
||||||
margin-left: 40px;
|
margin-left: 40px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue