searchbar/styles.css
2022-11-14 13:30:23 -05:00

51 lines
800 B
CSS

@font-face {
font-family: BerkeleyMono;
src: url("fonts/BerkeleyMono-Regular.ttf")
}
body{
background: #fff;
font-family: 'BerkeleyMono', monospace;
}
.search {
width: 100%;
position: relative;
display: flex;
}
.searchTerm {
width: 100%;
border: 3px solid #000;
border-right: none;
padding: 10px;
height: 20px;
border-radius: 5px 0 0 5px;
outline: none;
color: #000;
}
.searchTerm:focus{
color: #000;
}
.searchButton {
width: 45px;
height: 45px;
border: 3px solid #000;
background: #000;
text-align: center;
color: #fff;
border-radius: 0 5px 5px 0;
cursor: pointer;
font-size: 20px;
}
/*Resize the wrap to see the search bar change!*/
.wrap{
width: 30%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}