From d7300a817dbc7859550b731e2599c7d8ef7d2736 Mon Sep 17 00:00:00 2001 From: Dogfather Date: Sun, 2 Aug 2026 17:28:59 +0200 Subject: [PATCH] =?UTF-8?q?profil.html:=20Aufz=C3=A4hlungslisten=20in=20bi?= =?UTF-8?q?oHtml=20sahen=20unbeabsichtigt=20fett=20aus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ursache:
  • hatte keine eigene Textfarbe und erbte die helle Standardfarbe, während

    bewusst gedimmtes --text-muted nutzt — der Kontrast wirkte wie Fettschrift, obwohl es nur ein Farbunterschied war (betraf z.B. Bananenstifts "Dabei helfe ich unter anderem bei:"-Liste). Jetzt gleiche Farbe wie Fließtext, plus echte Aufzählungspunkte (Accent- Farbe) und sauberer Absatz-Abstand. --- profil.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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); }