47 lines
708 B
CSS
47 lines
708 B
CSS
.searchBar {
|
|
background-color: white;
|
|
max-width: 580px;
|
|
height: 50px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
border-radius: 25px;
|
|
display: flex;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.searchBar svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
align-self: center;
|
|
margin-left: 16px;
|
|
margin-right: 8px;
|
|
color: #b8c2c8;
|
|
}
|
|
|
|
.searchBar input {
|
|
flex: auto;
|
|
border: none;
|
|
outline: none;
|
|
margin: 6px 8px 6px 6px;
|
|
}
|
|
|
|
.searchBar input:focus {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.searchBar input::placeholder {
|
|
color: #b8c2c8;
|
|
}
|
|
|
|
.searchBar button {
|
|
height: 40px;
|
|
width: 100%;
|
|
border-radius: 20px;
|
|
background-color: white;
|
|
color: gray;
|
|
align-self: center;
|
|
padding: 0px 5px;
|
|
margin: 0px 10px;
|
|
}
|