diff --git a/profil.html b/profil.html index de17a24..56137be 100644 --- a/profil.html +++ b/profil.html @@ -56,6 +56,20 @@ } .profil-bio-rich h3:first-child { margin-top: 0; } .profil-bio-rich strong { color: var(--text); } + /* Aufzählungen (z.B. Bananenstifts "Dabei helfe ich unter anderem + bei:"-Liste) wirkten ohne eigene Regeln optisch "fett", weil sie — + anders als

— keine gedimmte Textfarbe geerbt hatten und dadurch + heller als der umgebende Fließtext wirkten. Jetzt gleiche Farbe/ + Zeilenhöhe wie normaler Text, plus echte Aufzählungspunkte und + sauberer Abstand zum nächsten Absatz. */ + .profil-bio-rich ul { margin: 0 0 1.1rem; padding-left: 1.4rem; } + .profil-bio-rich li { + margin-bottom: .5rem; + color: var(--text-muted); + list-style: disc; + } + .profil-bio-rich li:last-child { margin-bottom: 0; } + .profil-bio-rich li::marker { color: var(--accent); }