123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- // Wrapper and base class
- //
- // Provide a static navbar from which we expand to create full-width, fixed, and
- // other navbar variations.
- .navbar {
- position: relative;
- padding: $navbar-padding-vertical $navbar-padding-horizontal;
- @include clearfix;
- @include media-breakpoint-up(sm) {
- @include border-radius($navbar-border-radius);
- }
- }
- // Navbar alignment options
- //
- // Display the navbar across the entirety of the page or fixed it to the top or
- // bottom of the page.
- // Static top (unfixed, but 100% wide) navbar
- .navbar-static-top {
- z-index: $zindex-navbar;
- @include media-breakpoint-up(sm) {
- @include border-radius(0);
- }
- }
- // Fix the top/bottom navbars when screen real estate supports it
- .navbar-fixed-top,
- .navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: $zindex-navbar-fixed;
- margin-bottom: 0; // override .navbar defaults
- // Undo the rounded corners
- @include media-breakpoint-up(sm) {
- @include border-radius(0);
- }
- }
- .navbar-fixed-top {
- top: 0;
- }
- .navbar-fixed-bottom {
- bottom: 0;
- }
- .navbar-sticky-top {
- position: sticky;
- top: 0;
- z-index: $zindex-navbar-sticky;
- width: 100%;
- // Undo the rounded corners
- @include media-breakpoint-up(sm) {
- @include border-radius(0);
- }
- }
- //
- // Brand/project name
- //
- .navbar-brand {
- float: left;
- margin-right: 1rem;
- padding-top: .25rem;
- padding-bottom: .25rem;
- font-size: $font-size-lg;
- @include hover-focus {
- text-decoration: none;
- }
- > img {
- display: block;
- }
- }
- .navbar-divider {
- float: left;
- width: 1px;
- padding-top: .425rem;
- padding-bottom: .425rem;
- overflow: hidden;
- margin-left: $navbar-padding-horizontal;
- margin-right: $navbar-padding-horizontal;
- &:before {
- content: '\00a0';
- }
- }
- // Navbar toggle
- //
- // Custom button for toggling the `.navbar-collapse`, powered by the collapse
- // Bootstrap JavaScript plugin.
- .navbar-toggler {
- padding: .5rem .75rem;
- font-size: $font-size-lg;
- line-height: 1;
- background: none;
- border: $border-width solid transparent;
- @include border-radius($btn-border-radius);
- @include hover-focus {
- text-decoration: none;
- }
- }
- // Custom override for
- .navbar-toggleable {
- &-xs {
- @include media-breakpoint-up(sm) {
- display: block !important;
- }
- }
- &-sm {
- @include media-breakpoint-up(md) {
- display: block !important;
- }
- }
- }
- // Navigation
- //
- // Custom navbar navigation built on the base `.nav` styles.
- .navbar-nav {
- .nav-item {
- float: left;
- }
- .nav-link {
- display: block;
- padding-top: .425rem;
- padding-bottom: .425rem;
- + .nav-link {
- margin-left: 1rem;
- }
- }
- .nav-item + .nav-item {
- margin-left: 1rem;
- }
- }
- // Dark links against a light background
- .navbar-light {
- .navbar-brand {
- color: $navbar-light-active-color;
- @include hover-focus {
- color: $navbar-light-active-color;
- }
- }
- .navbar-nav {
- .nav-link {
- color: $navbar-light-color;
- @include hover-focus {
- color: $navbar-light-hover-color;
- }
- }
- .open > .nav-link,
- .active > .nav-link,
- .nav-link.open,
- .nav-link.active {
- @include plain-hover-focus {
- color: $navbar-light-active-color;
- }
- }
- }
- .navbar-divider {
- background-color: rgba(0,0,0,.075);
- }
- }
- // White links against a dark background
- .navbar-dark {
- .navbar-brand {
- color: $navbar-dark-active-color;
- @include hover-focus {
- color: $navbar-dark-active-color;
- }
- }
- .navbar-nav {
- .nav-link {
- color: $navbar-dark-color;
- @include hover-focus {
- color: $navbar-dark-hover-color;
- }
- }
- .open > .nav-link,
- .active > .nav-link,
- .nav-link.open,
- .nav-link.active {
- @include plain-hover-focus {
- color: $navbar-dark-active-color;
- }
- }
- }
- .navbar-divider {
- background-color: rgba(255,255,255,.075);
- }
- }
|