From e241d33c6c8ae6520f62c875181f9bfa0143ca43 Mon Sep 17 00:00:00 2001 From: jultty Date: Mon, 1 Sep 2025 11:41:45 -0300 Subject: [PATCH] Fix details and summary light mode --- static/assets/css/style.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/static/assets/css/style.css b/static/assets/css/style.css index 056b414..ee33b32 100644 --- a/static/assets/css/style.css +++ b/static/assets/css/style.css @@ -100,7 +100,7 @@ ul { details { margin: 30px; - background: #333333; + background: #cccccc; padding: 20px; padding-top: 40px; border-radius: 10px; @@ -109,7 +109,7 @@ details { details summary { margin-bottom: 15px; cursor: pointer; - color: #276E6B; + color: #276e6b; } #container { @@ -433,4 +433,12 @@ footer { #language-icon { filter: invert(80%); } + + details { + background: #333333; + } + + details summary { + color: #39959A; + } }