codepens/pen-export-MbpPja/style.css

29 lines
404 B
CSS
Raw Normal View History

2023-10-06 23:12:53 +02:00
* * {
box-sizing: border-box;
}
.search-container {
display: flex;
flex-wrap: wrap;
max-width: 900px;
}
.search-item {
padding: 30px 10px;
border: 1px solid grey;
text-align: center;
margin: 5px;
width: 150px;
flex-basis: 150px;
flex-grow: 1;
}
.search-placeholder {
width: 150px;
height: 2px;
margin: 5px;
background-color: red;
flex-basis: 150px;
flex-grow: 1;
}