[claude] Weather system tied to real weather at Lempster NH (#270) (#332)

This commit is contained in:
2026-03-24 05:03:12 +00:00
parent 548a59c5a6
commit 1780011c8b
3 changed files with 224 additions and 0 deletions

View File

@@ -201,6 +201,41 @@ body.photo-mode #overview-indicator {
font-size: 10px;
}
/* === WEATHER HUD === */
#weather-hud {
position: fixed;
bottom: 14px;
left: 14px;
display: flex;
align-items: center;
gap: 6px;
background: rgba(0, 6, 20, 0.72);
border: 1px solid rgba(68, 136, 255, 0.35);
border-radius: 6px;
padding: 5px 10px;
font-family: var(--font-body);
font-size: 12px;
color: var(--color-text);
z-index: 10;
pointer-events: none;
transition: opacity 0.5s ease;
}
#weather-icon {
font-size: 16px;
}
#weather-temp {
color: var(--color-primary);
font-weight: bold;
min-width: 40px;
}
#weather-desc {
color: var(--color-text-muted);
font-size: 11px;
}
/* === SOVEREIGNTY EASTER EGG === */
#sovereignty-msg {
display: none;