mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
1. Update `stylelint` dependencies - As of stylelint v15, we do not need `stylelint-config-prettier` anymore: https://github.com/prettier/stylelint-config-prettier/releases/tag/v9.0.5 2. Switch to `stylelint-config-standard`: `stylelint-prettier/recommended` has not been updated for a long time and still needs the old `stylelint-config-prettier` 3. Handle new `stylelint` issues
49 lines
713 B
CSS
49 lines
713 B
CSS
.weather .weathericon,
|
|
.weather .fa-home {
|
|
font-size: 75%;
|
|
line-height: 65px;
|
|
display: inline-block;
|
|
transform: translate(0, -3px);
|
|
}
|
|
|
|
.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 {
|
|
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;
|
|
}
|