Commit 236ee08f authored by Vadim Makeev's avatar Vadim Makeev

fix for the mixed ul/ol bullets

parent e02a7a5b
...@@ -116,20 +116,20 @@ BODY { ...@@ -116,20 +116,20 @@ BODY {
.slide UL OL { .slide UL OL {
margin:0 0 0 38px; margin:0 0 0 38px;
} }
.slide OL LI:before, .slide OL > LI:before,
.slide UL LI:before { .slide UL > LI:before {
position:absolute; position:absolute;
margin-left:-120px; margin-left:-120px;
width:100px; width:100px;
color:#BBB; color:#BBB;
text-align:right; text-align:right;
} }
.slide UL LI:before { .slide UL > LI:before {
content:'\2022'; /* bull */ content:'\2022'; /* bull */
line-height:1.1; line-height:1.1;
font-size:40px; font-size:40px;
} }
.slide OL LI:before { .slide OL > LI:before {
counter-increment:list; counter-increment:list;
content:counter(list)'.'; content:counter(list)'.';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment