diff options
Diffstat (limited to 'site.css')
-rw-r--r-- | site.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/site.css b/site.css index f10af38a..bd27d169 100644 --- a/site.css +++ b/site.css @@ -167,3 +167,28 @@ blockquote { p img { max-width: 100%; } + +dl dt { + padding-left: 2em; +} + +dl dt { + margin-bottom: 2px; +} + +dl dd { + margin-bottom: 1em; +} + +dl { + counter-reset: subolcounter; +} + +dl ol { + list-style: none; +} + +dl ol li:before { + counter-increment: subolcounter; + content: counter(subolcounter) ". "; +} |