summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorArne Rief <riearn@proton.me>2025-09-22 18:04:09 +0200
committerArne Rief <riearn@proton.me>2025-09-22 18:04:09 +0200
commit6b5ac43b0eb9f799220783e98b5961192666b755 (patch)
treeea39cc2c610ee033613efe3500866494c4bd0778 /assets
parenta57a8f991a2a5960fc886aa8bfcfca9719cecfda (diff)
Descrlist shortcodeHEADmaster
Diffstat (limited to 'assets')
-rw-r--r--assets/css/main.css17
1 files changed, 16 insertions, 1 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index 10d7493..4aadd74 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -116,7 +116,7 @@ blockquote {
}
dl {
- margin-left: 1rem;
+ margin: var(--gap-large) 0;
dt {
color: var(--link-color);
@@ -180,6 +180,7 @@ time {
color: var(--bg-main);
}
+/* SPECIAL ELEMENTS */
/* Code block */
.highlight {
margin: 1rem auto;
@@ -197,6 +198,15 @@ time {
}
}
+/* Description list centered with borders */
+.dl-borders-centered {
+ border-bottom: 2px dotted var(--link-color);
+ border-top: 2px dotted var(--link-color);
+ margin: var(--gap-large) auto;
+ padding: var(--gap-default) 0;
+ width: fit-content;
+}
+
/* HEADER */
.site__header {
display: flex;
@@ -364,6 +374,11 @@ time {
position: relative; /* Needed for post__scroll-top */
}
+.post__content ol > li,
+.post__content ul > li {
+ margin-bottom: var(--gap-default);
+}
+
.post__header {
margin-bottom: var(--gap-large);
}