Rev 4257 | Rev 4311 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
.header {
position: sticky;
top: 0;
background-color: #fff;
border-bottom: 0.1px solid rgba(0, 0, 0, 0.06);
width: 100%;
z-index: 999;
}
.header__nav {
display: flex;
justify-content: space-between;
}
.header__left {
display: flex;
align-items: center;
gap: 10px;
& > img {
object-fit: contain;
height: 40px;
width: 40px;
}
}
.header__search {
display: flex;
align-items: center;
border-radius: 5px;
height: 34px;
color: gray;
cursor: pointer;
transition: all 0.2s;
&:hover {
color: #000;
}
& > input {
display: none;
border: none;
outline: none;
background: none;
}
&.show {
padding: 0.5rem;
background-color: #eef3f0;
flex: 1;
& > input {
display: initial;
}
}
}
.header__right {
align-items: center;
flex-grow: 1;
display: flex;
& > ul {
display: flex;
flex-grow: 1;
justify-content: space-evenly;
gap: 1.5rem;
li {
position: relative;
}
}
&.hide {
display: none;
}
}
@media (min-width: 768px) {
.header__right {
flex-grow: initial;
& > ul {
display: flex !important;
justify-content: initial;
}
}
.header__search {
padding: 0.5rem;
background-color: #eef3f0;
& > input {
display: initial;
}
}
}