32 lines
516 B
CSS
32 lines
516 B
CSS
.searchbox {
|
|
grid-column: 1;
|
|
padding: 0%;
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
width: 100%;
|
|
gap: 5px;
|
|
}
|
|
|
|
.items {
|
|
grid-column: 1;
|
|
padding: 0%;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
width: 100%;
|
|
gap: 5px;
|
|
grid-template-rows: masonry;
|
|
}
|
|
|
|
.itemsearch {
|
|
padding: 0%;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
width: 100%;
|
|
gap: 5px;
|
|
}
|
|
|
|
.searchinput {
|
|
width: 100%;
|
|
max-width: 200px;
|
|
}
|
|
|