File: //var/www/innodrive/src/scss/blocks/menu.scss
.menu {
min-width: 138px;
height: 100%;
margin-left: auto;
margin-right: 0;
padding: 0 25px;
font-size: 18px;
text-transform: uppercase;
line-height: 48px;
background-color: $color-primary-blue;
color: #fff;
white-space: nowrap;
}
.menu__current {
> a {
display: block;
}
svg.icon {
display: inline-block;
width: 12px;
height: 12px;
margin-left: 3px;
fill: #fff;
}
&:hover {
~ .menu__dropdown {
display: flex;
}
}
}
.menu__dropdown {
display: none;
padding: 15px 0;
font-size: 16px;
line-height: 36px;
text-transform: none;
color: #575757;
flex-direction: row;
border: 1px solid #078ebe;
&:hover {
display: flex;
}
.menu__item {
padding: 5px 0;
a {
line-height: 16px;
display: block;
white-space: normal;
}
&-active {
color: $color-primary-blue;
}
&:hover {
color: $color-primary-blue;
text-decoration: underline;
}
}
}
.menu__filter {
min-width: 138px;
padding-left: 20px;
input {
display: none;
&:checked + label {
color: $color-primary-blue;
}
}
label {
display: block;
cursor: pointer;
}
}
.menu__dropdown-lists {
padding: 0 15px;
flex-grow: 0;
max-width: calc(25% - 5px);
}
.menu__list {
@include reset-list;
display: none;
width: 100%;
&.visible {
display: block;
}
}
@include media('tablet-s') {
.menu {
min-width: 91px;
margin-left: 0;
padding: 0 16px;
font-size: 11px;
line-height: 30px;
}
.menu__current {
svg.icon {
width: 7px;
height: 7px;
margin-left: 3px;
}
}
.menu__dropdown {
display: none !important;
font-size: 11px;
line-height: 26px;
padding: 5px 0;
}
}