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.

This commit is contained in:
smueller
2026-05-27 14:05:55 +02:00
parent 5d953fda7b
commit e920fdfc8e

View File

@@ -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;
}