dvb/app/res/css/weather.css

30 lines
541 B
CSS
Raw Normal View History

2017-12-25 00:50:54 +01:00
/* WEATHER */
.weather-container {
display: grid;
2017-12-25 16:41:21 +01:00
grid-template: 100% / repeat(4, 1fr);
2017-12-25 00:50:54 +01:00
grid-gap: 1em;
padding: 1em;
}
2017-12-25 16:41:21 +01:00
@media only screen and (min-width: 70em) {
.weather-container {
grid-template: repeat(4, 1fr) / 100%;
}
}
2017-12-25 00:50:54 +01:00
.weather-container .weather-item {
background-repeat: no-repeat;
background-position: center;
background-size: contain;
position: relative;
}
.weather-container .weather-item .temperature {
position: absolute;
bottom: 10%;
right: 10%;
width: 80%;
text-align: right;
font-size: var(--font-xl);
}