diff options
author | Florrie <towerofnix@gmail.com> | 2019-11-19 21:34:28 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2019-11-19 21:34:28 -0400 |
commit | ae6247c519864b4ac24d40d2af2cb2a8c4c78c17 (patch) | |
tree | 5814a72086cd4ada0b5b92c34a048c22c3c2eae2 /site.css | |
parent | c2f9fc44776f1a5cb343963a00a1524e6ff3154f (diff) |
group artist page listings by album
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) ". "; +} |