/*! * Menu */ @import "variables"; .navbar { background: $darkest-grey; color: $white; .navbar-brand { margin-right: 8px; img { max-height: 48px; width: auto; } } .navbar-toggler { .navbar-toggler-icon { color: $white; line-height: 30px; } } .navbar-nav { .nav-item { color: $white; .nav-link { color: $white; text-decoration: none; text-transform: uppercase; font-size: 16px; font-weight: $font-medium; &:hover { color: $dark-grey; } } &.active { .nav-link { color: $brand-color; } } } &.primary-menu { .mobile { display: none; } } &.secondary-menu { margin-left: auto; .nav-item { border-right: 1px solid $white; padding-right: 10px; padding-left: 10px; &:first-child { padding-left: 0; } &:last-child { border: none; padding-right: 0; } &.lang-item { color: $white; .nav-link { color: $white; padding-left: 2px; padding-right: 2px; &:last-child { padding-right: .5em; } &.lang-selected { color: $dark-grey; &:hover { color: $dark-grey; } } &:hover { color: $dark-grey; } } } &.mobile { display: inline-block; } &.dropdown { .dropdown-toggle:after { display: none; } #user-dropdown { border-radius: 0 0 $border-radius $border-radius; padding: 15px 0 40px 40px; min-width: 250px; .user-profile { @extend .bg-cover; width: 50px; height: 50px; border-radius: 50%; background-color: $grey; margin-bottom: 15px; } .user-name { color: $brand-color; font-size: 18px; font-weight: $font-medium; border-bottom: 1px solid $brand-color; padding: 10px 0; } .dropdown-item { padding: 12px 0 10px; font-size: 14px; border-bottom: 1px solid $border-color-light; text-decoration: none; color: $body-color; &.active { font-weight: $font-medium; background-color: transparent; color: $body-color; } &.logout { color: $red; } &:hover { background: transparent; } } } } &.social { .nav-link { padding-left: 2px; padding-right: 2px; display: inline-block; &:first-child { padding-left: .5em; } } } } } } } @media(max-width: 1199px) { .navbar { .navbar-nav { .nav-item { .nav-link { font-size: 12px; } } } } } @media(max-width: 991px) { .navbar { .navbar-nav { &.primary-menu { .nav-item { &.mobile { display: inline-block; } } } &.secondary-menu { margin-left: unset; .nav-item { border: none; &.mobile { display: none; } &.dropdown { .dropdown-menu { position: fixed; right: 0; top: 72px; height: 100%; border-radius: 0; } } } } } .navbar-collapse { position: fixed; top: 75px; background: $white; padding: 15px 30px; min-width: 50%; left: 0; height: 100%; &.collapse.show { display: flex; flex-direction: column; } .navbar-nav { height: 85%; .nav-item { border-bottom: 1px solid $border-color-light; &:last-child { border: none; } .nav-link { color: $body-color; text-transform: none; font-weight: 400; font-size: 16px; } &.social { color: $body-color; margin-top: auto; .nav-link { display: inline-block; padding-right: 8px; } } } } } } } @media(max-width: 767px) { }