diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-05-31 20:53:28 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-05-31 20:53:28 -0400 |
commit | 31bbfe939878c8fae215b42153aa1a5339e02af4 (patch) | |
tree | 91673ead0ecf876a7c3c653877b6eed5c1d93d16 /css/main.css | |
parent | 26108b0694db482fcfc57a74422247c7a898320a (diff) | |
download | fosdem-2018-presentation-31bbfe939878c8fae215b42153aa1a5339e02af4.tar fosdem-2018-presentation-31bbfe939878c8fae215b42153aa1a5339e02af4.tar.gz |
support more variations of nested lists (closes #47)
Diffstat (limited to 'css/main.css')
-rw-r--r-- | css/main.css | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/css/main.css b/css/main.css index 71eff19..392235a 100644 --- a/css/main.css +++ b/css/main.css @@ -157,10 +157,22 @@ body { list-style: circle; } -#reveal ul>li>ul, -#reveal ol>li>ol, -#reveal ul>li>ul>li>ul, -#reveal ol>li>ol>li>ol { +/* Brain freeze – there has to be a better way of doing this? */ +#reveal ul ul, +#reveal ul ol, + +#reveal ol ol, +#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; margin-left: 40px; } |