fix: reduce clock and site header visual weight for better information hierarchy

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-15 19:59:26 +01:00
parent 92166cea6e
commit 84ce6efb2d

View File

@@ -1,57 +1,25 @@
/* Clock styles - Modern entryway kiosk design with blue glow - Ribbon banner */ /* Clock styles - Subtle header clock */
.clock-container { .clock-container {
background: linear-gradient(135deg, #003366 0%, #004080 50%, #0059b3 100%); background: linear-gradient(135deg, #003366 0%, #004d80 100%);
color: var(--color-surface); color: white;
padding: 8px 20px; padding: 6px 20px;
border-radius: 8px; border-radius: 4px;
margin-bottom: 8px; margin-bottom: 8px;
text-align: center; text-align: center;
box-shadow: 0 0 20px rgba(0, 89, 179, 0.6), box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
0 0 40px rgba(0, 89, 179, 0.4),
0 4px 12px rgba(0, 0, 0, 0.15),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
position: relative; position: relative;
overflow: hidden; overflow: hidden;
backdrop-filter: blur(10px);
transition: box-shadow 0.3s ease;
border: 2px solid rgba(255, 255, 255, 0.2);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
gap: 15px; gap: 15px;
} border: 1px solid rgba(255, 255, 255, 0.1);
transition: box-shadow 0.3s ease;
.clock-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
pointer-events: none;
}
.clock-container:hover {
box-shadow: 0 0 30px rgba(0, 89, 179, 0.8),
0 0 60px rgba(0, 89, 179, 0.5),
0 4px 12px rgba(0, 0, 0, 0.15),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
} }
body.dark-mode .clock-container { body.dark-mode .clock-container {
background: linear-gradient(135deg, #001a33 0%, #002d5c 50%, #004080 100%); background: linear-gradient(135deg, #001a33 0%, #002d5c 100%);
box-shadow: 0 0 25px rgba(0, 89, 179, 0.7), box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
0 0 50px rgba(0, 89, 179, 0.4),
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
body.dark-mode .clock-container:hover {
box-shadow: 0 0 35px rgba(0, 89, 179, 0.9),
0 0 70px rgba(0, 89, 179, 0.6),
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
} }
/* Configuration button styles */ /* Configuration button styles */
@@ -1090,15 +1058,16 @@ body.landscape .site-header {
body.landscape .site-name { body.landscape .site-name {
display: block; display: block;
background: linear-gradient(135deg, #0061a1 0%, #003d66 100%); background: rgba(0, 97, 161, 0.3);
color: #fff; color: var(--color-text-secondary);
font-weight: 700; font-weight: 600;
text-transform: uppercase; text-transform: uppercase;
letter-spacing: 1px; letter-spacing: 2px;
padding: 6px 16px; padding: 4px 16px;
border-radius: 4px; border-radius: 2px;
box-shadow: 0 2px 8px rgba(0, 97, 161, 0.4); box-shadow: none;
font-size: 0.85em; font-size: 0.8em;
border-left: 3px solid var(--color-primary-light);
} }
/* Compact weather bar - hidden by default, shown in landscape */ /* Compact weather bar - hidden by default, shown in landscape */