paddockpass/react/4/seasons/src/SeasonDisplay.css
2019-09-11 23:18:11 +02:00

34 lines
440 B
CSS

.icon-left {
position: absolute;
top: 10px;
left: 10px;
}
.icon-right {
position: absolute;
bottom: 10px;
right: 10px;
}
.season-display {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.season-display.winter i {
color: blue;
}
.season-display.summer i {
color: red;
}
.winter {
background-color: aliceblue;
}
.summer {
background-color: orange;
}