2024-01-25 16:19:59 +02:00
|
|
|
.resultTitle {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
}
|
2026-08-18 21:44:09 +03:00
|
|
|
.resultTitle>span:first-child{display:flex;flex-wrap:wrap;gap:7px}.resultTitle>span:first-child br{display:none}.resultTitle input{margin:0}.grid-view{margin-top:12px}.grid-view .item,.list-view .item{border:1px solid var(--border);border-radius:12px;background:var(--surface)!important;box-shadow:var(--shadow-sm)}
|
2024-01-25 16:19:59 +02:00
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|