Files
WeatherTool/web/src/css/station.css
T

49 lines
843 B
CSS
Raw Normal View History

2024-01-05 16:17:00 +02:00
.stationWrapper .container {
display: flex;
min-height: 100vh;
}
.stationWrapper .container .column {
flex: 1;
box-sizing: border-box;
text-align: left;
}
.stationWrapper .container .column:nth-child(1) {
padding: 0;
flex-basis: 20%;
background-color: white;
min-width: 1000px;
}
.stationWrapper .container .column:nth-child(2) {
padding: 10px;
flex-basis: 80%;
background-color: #f2f2f2;
min-width: 300px;
}
.stationWrapper .cities {
width: 200px;
position: absolute;
z-index: 10;
background-color: white;
opacity: 0.7;
}
.stationWrapper .submenu {
padding: 5px 10px;
background-color: #f2f2f2;
}
.stationResult {
padding-inline-start: 5px;
}
.stationResult li {
padding: 3px;
}
.stationResult li:nth-child(odd) {
background-color: #d6d6d6;
2024-01-05 16:17:00 +02:00
}