From e920fdfc8ee5d7ecb2c45d17097ab68aac0e1c49 Mon Sep 17 00:00:00 2001 From: smueller Date: Wed, 27 May 2026 14:05:55 +0200 Subject: [PATCH] Add legal styling to custom CSS: Implemented styles for legal pages, including background and text color adjustments, section borders, and hover effects to enhance readability and visual consistency. --- public/assets/css/custom.css | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/public/assets/css/custom.css b/public/assets/css/custom.css index fef5517..7a6547a 100644 --- a/public/assets/css/custom.css +++ b/public/assets/css/custom.css @@ -15,3 +15,46 @@ justify-content: center; margin-top: 2rem; } + +/* Legal pages: plain white content with black text */ +.legal-hero, +.legal-content { + background: #ffffff; + color: #000000; +} + +.legal-hero-title { + background: none; + -webkit-text-fill-color: #000000; + color: #000000; +} + +.legal-hero-description, +.legal-section h2, +.legal-section h3, +.legal-block p, +.legal-block li, +.breadcrumb, +.breadcrumb span { + color: #000000; +} + +.legal-section { + background: #ffffff; + border: 1px solid #d9d9d9; + box-shadow: none; +} + +.legal-section:hover { + transform: none; + box-shadow: none; +} + +.legal-section h2 { + border-bottom: 1px solid #d9d9d9; +} + +.legal-block a, +.breadcrumb a { + color: #0b57d0; +}