mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-12-12 01:42:19 +00:00
As mentioned [here](https://github.com/MagicMirrorOrg/MagicMirror/pull/3878#issuecomment-3275344406) our weather module needs a bit better handling for null values in the type field. This pr adds this and cleans up the layout a little.
50 lines
708 B
CSS
50 lines
708 B
CSS
.weather .weathericon,
|
|
.weather .fa-home {
|
|
font-size: 75%;
|
|
}
|
|
|
|
.weather .humidity-icon {
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.weather .humidity-padding {
|
|
padding-bottom: 6px;
|
|
}
|
|
|
|
.weather .day {
|
|
padding-left: 0;
|
|
padding-right: 25px;
|
|
}
|
|
|
|
.weather .weather-icon {
|
|
padding-right: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.weather .min-temp {
|
|
padding-left: 20px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.weather .precipitation-amount,
|
|
.weather .precipitation-prob,
|
|
.weather .humidity-hourly,
|
|
.weather .uv-index {
|
|
padding-left: 20px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.weather tr.colored .min-temp {
|
|
color: #bcddff;
|
|
}
|
|
|
|
.weather tr.colored .max-temp {
|
|
color: #ff8e99;
|
|
}
|
|
|
|
.weather .type-temp {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|