mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
They weren't applied to wrong classnames, this PR fixes that and also expands the weather util tests --------- Co-authored-by: veeck <michael@veeck.de>
49 lines
712 B
CSS
49 lines
712 B
CSS
.weather .weathericon,
|
|
.weather .fa-home {
|
|
font-size: 75%;
|
|
line-height: 65px;
|
|
display: inline-block;
|
|
transform: translate(0, -3px);
|
|
}
|
|
|
|
.weather .humidityIcon {
|
|
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 {
|
|
padding-left: 20px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.weather tr .weathericon {
|
|
line-height: 25px;
|
|
}
|
|
|
|
.weather tr.colored .min-temp {
|
|
color: #bcddff;
|
|
}
|
|
|
|
.weather tr.colored .max-temp {
|
|
color: #ff8e99;
|
|
}
|