From 5d2be60dfa8136368e19b46ef97619def06be22a Mon Sep 17 00:00:00 2001 From: smueller Date: Wed, 27 May 2026 14:43:46 +0200 Subject: [PATCH] Refine legal page styles in custom CSS: Updated hover effects for glass cards and links to enhance user interaction and visual consistency. Improved text decoration on hover for legal blocks and breadcrumbs. --- public/assets/css/custom.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/public/assets/css/custom.css b/public/assets/css/custom.css index 7c20476..b13ccdb 100644 --- a/public/assets/css/custom.css +++ b/public/assets/css/custom.css @@ -69,6 +69,11 @@ background: transparent; } +.legal-content .glass-card:hover { + transform: none; + box-shadow: none; +} + .legal-section h2 { border-bottom: 1px solid #e5e5e5; padding-bottom: 0.5rem; @@ -79,3 +84,9 @@ .breadcrumb a { color: #0b57d0; } + +.legal-block a:hover, +.breadcrumb a:hover { + color: #0b57d0; + text-decoration: none; +}