Rev 4436 | Rev 4734 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
#app {
padding-top: 5.5rem;
}
.wrapper {
background-color: #f3f2ef !important;
}
.header {
position: fixed;
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;
gap: 0.5rem;
}
.header__left {
align-items: center;
display: flex;
gap: 10px;
& > img {
object-fit: cover;
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: 0.5rem;
li {
position: relative;
}
}
&.hide {
display: none;
}
}
@media (min-width: 768px) {
.header__nav {
gap: initial;
}
.header__left {
flex: 1;
}
.header__right {
flex-grow: initial;
& > ul {
display: flex !important;
justify-content: initial;
gap: 1.5rem;
}
}
}
@media (min-width: 992px) {
.header__search {
padding: 0.5rem;
background-color: #eef3f0;
& > input {
display: initial;
}
}
}