.header { | |
height: 60px; | |
display: flex; | |
align-items: center; | |
/*background-color: #131921;*/ | |
background: linear-gradient(to right, rgb(50, 168, 82), rgb(50, 87, 168)); | |
position: sticky; | |
top: 0; | |
z-index: 100; | |
} | |
.header__logo { | |
width: 100px; | |
object-fit: contain; | |
margin: 0 20px; | |
margin-top: 18px; | |
} | |
.header__search { | |
display: flex; | |
flex: 0.99; | |
} | |
.header__searchInput { | |
height: 12px; | |
padding: 10px; | |
border: none; | |
width: 100%; | |
} | |
.header__searchIcon { | |
padding: 5px; | |
height: 22px ; | |
background-color: #cd9042; | |
} | |
.header__nav { | |
display: flex; | |
justify-content: space-evenly; | |
} | |
.header__option { | |
display: flex; | |
flex-direction: column; | |
margin-left: 10px; | |
margin-right: 10px; | |
color: white; | |
} | |
.header__optionLineOne { | |
font-size: 10px; | |
} | |
.header__optionLineTwo { | |
font-size: 13px; | |
font-weight: 800; | |
} | |
.header__optionBasket { | |
display: flex; | |
align-items: center; | |
color: white; | |
margin-left: 10px; | |
margin-right: 10px; | |
} | |