.banner .nav li { @extend .nav-item; } .banner .nav a { @extend .nav-link; } .navbar-text { margin-left: 1rem; } @include media-breakpoint-up(md) { .navbar-brand { font-size: $font-size-xl; } .navbar-text { margin-left: 1.25rem; } } .navbar-nav { flex-direction: row; } .nav-item { margin-left: 1.25rem; } @include media-breakpoint-up(md) { .nav-item { margin-left: 0.5rem; } } @include media-breakpoint-down(sm) { .nav-item:first-child { margin-left: 0; } } @include media-breakpoint-down(md) { .navbar .container { padding-left: 1.5rem; padding-right: 1.5rem; } } .break { flex-basis: 100%; height: 0; } .navbar { background-color: rgba(255, 255, 255, 0.95); border-bottom: 1px solid $gray-200; /* margin-top: 3px; */ } .header-bar { border-top: 3px solid; border-image-source: linear-gradient(90deg, $primary, #8ed6fb 50%, #d32e9d); border-image-slice: 1; } .home .navbar { border-bottom: 0; } .navbar-brand { margin-top: -0.15625rem; } .navbar-form { margin-top: 0.25rem; } @include media-breakpoint-up(md) { .navbar-brand { margin-right: 1rem !important; } .main-nav .nav-item:first-child .nav-link, .social-nav .nav-item:first-child .nav-link { padding-left: 0; } .main-nav .nav-item:last-child .nav-link, .social-nav .nav-item:last-child .nav-link { padding-right: 0; } .navbar-form { margin-top: 0; margin-left: 1.5rem; margin-right: 1.5rem; } } .form-control.is-search { padding-right: calc(1.5em + 0.75rem); background: $gray-100; border: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right calc(0.375em + 0.1875rem) center; background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } /* * Source: https://medium.com/creative-technology-concepts-code/responsive-mobile-dropdown-navigation-using-css-only-7218e4498a99 */ /* Style the menu icon for the dropdown */ .navbar .menu-icon { cursor: pointer; /* display: inline-block; */ /* float: right; */ padding: 1.125rem 0.625rem; margin: 0 0 0 -0.625rem; /* position: relative; */ user-select: none; } .navbar .menu-icon .navicon { background: $navbar-light-color; display: block; height: 2px; position: relative; transition: background .2s ease-out; width: 18px; } .navbar .menu-icon .navicon:before, .navbar .menu-icon .navicon:after { background: $navbar-light-color; content: ''; display: block; height: 100%; position: absolute; transition: all .2s ease-out; width: 100%; } .navbar .menu-icon .navicon:before { top: 5px; } .navbar .menu-icon .navicon:after { top: -5px; } /* Add the icon and menu animations when the checkbox is clicked */ .navbar .menu-btn { display: none; } .navbar .menu-btn:checked ~ .navbar-collapse { display: block; max-height: 100vh; } .navbar .menu-btn:checked ~ .menu-icon .navicon { background: transparent; } .navbar .menu-btn:checked ~ .menu-icon .navicon:before { transform: rotate(-45deg); } .navbar .menu-btn:checked ~ .menu-icon .navicon:after { transform: rotate(45deg); } .navbar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .navbar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after { top: 0; }