« get me outta code hell

group artist page listings by album - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/site.css
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2019-11-19 21:34:28 -0400
committerFlorrie <towerofnix@gmail.com>2019-11-19 21:34:28 -0400
commitae6247c519864b4ac24d40d2af2cb2a8c4c78c17 (patch)
tree5814a72086cd4ada0b5b92c34a048c22c3c2eae2 /site.css
parentc2f9fc44776f1a5cb343963a00a1524e6ff3154f (diff)
group artist page listings by album
Diffstat (limited to 'site.css')
-rw-r--r--site.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/site.css b/site.css
index f10af38..bd27d16 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) ". ";
+}