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

40 lines
573 B
CSS
Raw Normal View History

.resultTitle {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
}
.resultTitle h3 {
margin: 0;
}
.grid-view {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
grid-gap: 10px;
2023-05-23 00:46:07 +03:00
}
.grid-view .item {
background-color: #f2f2f2;
padding: 10px;
text-align: center;
2023-06-22 19:20:21 +03:00
}
.list-view {
2023-06-22 19:20:21 +03:00
display: flex;
flex-direction: column;
grid-gap: 10px;
2023-06-22 19:20:21 +03:00
}
.list-view .item {
background-color: #f2f2f2;
padding: 10px;
max-width: 300px;
}
.list-view .item h4 {
float: right;
display: block;
}