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