mirror of
https://git.hexahost.dev/smueller/HexaHost-Frontend.git
synced 2026-06-02 07:18:42 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user