style: change various settings

This commit is contained in:
2025-11-26 15:19:24 +01:00
parent ffc7877b0e
commit 85a5ce8221

View File

@@ -45,9 +45,12 @@ body {
.site-header { .site-header {
background: var(--card-bg); background: var(--card-bg);
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);
position: sticky; /* Make header fixed so it remains visible on long pages */
position: fixed;
top: 0; top: 0;
z-index: 10; left: 0;
right: 0;
z-index: 1100;
} }
.header-inner { .header-inner {
display: flex; display: flex;
@@ -87,6 +90,12 @@ body {
padding: 0 20px; padding: 0 20px;
} }
/* Reserve space for fixed header so content doesn't jump under it */
main.container {
padding-top: 92px;
padding-bottom: 20px;
}
.card { .card {
background: var(--card-bg); background: var(--card-bg);
margin: 24px 0; margin: 24px 0;
@@ -250,9 +259,14 @@ input[type="checkbox"] {
justify-content: flex-end; justify-content: flex-end;
} }
.footer-note { .footer {
margin-top: 18px; margin-top: 18px;
color: var(--muted); color: var(--muted);
margin-bottom: 15px;
padding-bottom: 15px;
}
.footer-note {
margin: 5px;
} }
.footer-note a { color: var(--primary-700); text-decoration: none; } .footer-note a { color: var(--primary-700); text-decoration: none; }
.footer-note a:hover { text-decoration: underline; } .footer-note a:hover { text-decoration: underline; }
@@ -336,7 +350,7 @@ input[type="checkbox"] {
.service-card:hover { .service-card:hover {
transform: translateY(-4px); transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,.1); box-shadow: 0 12px 40px rgba(0,0,0,.1);
border-color: var(--primary); border: 2px solid var(--primary);
} }
.service-icon { .service-icon {
@@ -481,7 +495,8 @@ input[type="checkbox"] {
.legal-notice { .legal-notice {
background: rgba(11, 123, 214, 0.1); background: rgba(11, 123, 214, 0.1);
border-left: 4px solid var(--primary); border-left: 4px solid var(--primary);
padding: 16px 20px; border-radius: 12px;
padding: 20px;
margin: 20px 0; margin: 20px 0;
border-radius: 8px; border-radius: 8px;
} }
@@ -601,3 +616,4 @@ input[type="checkbox"] {
[data-theme="dark"] .threshold-exceeded { [data-theme="dark"] .threshold-exceeded {
background-color: rgba(239, 68, 68, 0.12); background-color: rgba(239, 68, 68, 0.12);
} }