about summary refs log tree commit diff
path: root/static/css/custom.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/custom.css')
-rw-r--r--static/css/custom.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/static/css/custom.css b/static/css/custom.css
index 4baab30..55eb5e8 100644
--- a/static/css/custom.css
+++ b/static/css/custom.css
@@ -121,3 +121,26 @@ a:hover {
 .red-text {
   color: red;
 }
+
+details {
+  margin-top: 1em;
+  margin-bottom: 1em;
+  border: 1px solid #aaa;
+  border-radius: 4px;
+  padding: .5em .5em 0;
+}
+
+summary {
+  font-weight: bold;
+  margin: -.5em -.5em 0;
+  padding: .5em;
+}
+
+details[open] {
+  padding: .5em;
+}
+
+details[open] summary {
+  border-bottom: 1px solid #aaa;
+  margin-bottom: .5em;
+}