remove web dependencies

This commit is contained in:
2026-02-06 16:13:54 +11:00
parent 730811b76e
commit c68c063ff1
11 changed files with 265 additions and 42 deletions

View File

@@ -177,6 +177,38 @@ body {
margin-top: 6px;
}
.metric-weather .label {
margin-bottom: 8px;
}
.weather-icons {
display: flex;
align-items: center;
gap: 10px;
min-height: 28px;
}
.weather-icon {
font-size: 24px;
line-height: 1;
opacity: 0.28;
filter: saturate(0.65);
transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.weather-icon.active {
opacity: 1;
filter: saturate(1);
transform: translateY(-1px);
}
.weather-caption {
margin-top: 8px;
color: var(--muted);
font-size: 13px;
font-family: "IBM Plex Mono", monospace;
}
.callouts {
display: grid;
gap: 12px;