1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
@define-color weather_temp_chart_fill_color rgba(248, 228, 92, 0.5);
@define-color weather_temp_chart_stroke_color rgba(246, 211, 45, 1.0);
@define-color weather_thermometer_warm_color @yellow_4;
@define-color weather_thermometer_cold_color @blue_4;
@define-color weather_thermometer_high_color @yellow_5;
@define-color weather_thermometer_low_color @blue_5;
@define-color weather_forecast_color #ae7b03;
#places-label {
font-weight: bold;
}
#temperature-label {
font-size: 32pt;
font-weight: 900;
margin-left: 9px;
}
.content-view.cell {
font-weight: bold;
}
#locationEntry {
margin: 6px;
}
.weather-popover {
margin-top: 6px;
}
.forecast-card {
transition: border-radius 100ms ease-out;
border-radius: 6px;
}
.forecast-card separator {
background-color: var(--card-shade-color);
}
#conditions-grid,
#attributionGrid {
margin-left: 18px;
margin-right: 18px;
}
#weather-page .small .forecast-card {
margin-left: 0;
margin-right: 0;
border-radius: 0;
}
.forecast-temperature-label {
font-weight: bold;
color: @weather_forecast_color;
}
WeatherThermometer {
margin-bottom: 12px;
}
WeatherThermometer > label.high {
font-weight: bold;
color: @weather_thermometer_high_color;
}
WeatherThermometer > label.low {
font-weight: bold;
color: @weather_thermometer_low_color;
}
.forecast-button {
margin: 0 12px;
}
.forecast-graphic {
margin: 18px;
}
button.osd.circular {
border-radius: 9999px;
min-width: 24px;
min-height: 24px;
}
button.osd.circular > image {
padding: 12px;
}
image.circular {
min-width: 34px;
min-height: 34px;
padding: 0;
border-radius: 9999px;
}
|