BlogPost/src/styleing/SearchBar.css

33 lines
542 B
CSS

:root {
--borderColor: #ccc;
--bgColor: #f9f9f9;
--bFocus: #4caf50;
}
.searchBar {
display: flex;
justify-content: space-between;
align-items: center;
margin: 20px 0;
}
.search {
padding: 10px;
font-size: 1.2em;
width: 300px;
border: 1px solid var(--borderColor);
border-radius: 4px;
background-color: var(--bgColor);
}
.search:focus {
border-color: var(--bFocus);
outline: none;
}
.search {
position: absolute;
margin-left: 50cap;
padding: 10px;
border: 1px solid var(black);
border-radius: 10px;
}