diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-05-10 01:52:02 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-05-10 01:52:02 -0400 |
commit | affe100075c51c660b2c1312c10956fd710ffa46 (patch) | |
tree | 292a611090603b4e11002de69ffbeb3d91d8bfc0 | |
parent | 4031a21ea8b4b22e12a36f29351f7cc45c9d982b (diff) | |
download | fosdem-2018-presentation-affe100075c51c660b2c1312c10956fd710ffa46.tar fosdem-2018-presentation-affe100075c51c660b2c1312c10956fd710ffa46.tar.gz |
more explicit list styles (closes #38)
-rw-r--r-- | css/main.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/css/main.css b/css/main.css index 3701f2b..a9f5e6a 100644 --- a/css/main.css +++ b/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; |