39 lines
608 B
CSS
39 lines
608 B
CSS
.home-page-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.home-page-header p {
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.search-bar {
|
|
display: flex;
|
|
background: white;
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
gap: 10px;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.search-bar input {
|
|
flex-grow: 1;
|
|
flex-basis: 600px;
|
|
background: inherit;
|
|
outline: none;
|
|
border: none;
|
|
font-size: 16px;
|
|
font-family: var(--body-font-family)
|
|
}
|
|
|
|
.cards {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 10px;
|
|
gap: 10px;
|
|
}
|