2016-12-29 13:22:45 -08:00
|
|
|
// scss-lint:disable VendorPrefix
|
|
|
|
|
2015-08-17 21:31:17 -07:00
|
|
|
//
|
|
|
|
// Main navbar
|
|
|
|
//
|
|
|
|
|
|
|
|
.bd-navbar {
|
2016-12-29 13:22:45 -08:00
|
|
|
// @include media-breakpoint-up(md) {
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1030; // over everything in bootstrap
|
|
|
|
// max-height: calc(100vh - 4rem);
|
|
|
|
// overflow-y: auto;
|
|
|
|
// }
|
2016-12-28 15:52:28 -08:00
|
|
|
// padding-right: 0;
|
|
|
|
// padding-left: 0;
|
2016-12-29 13:22:45 -08:00
|
|
|
// margin-bottom: 2rem;
|
|
|
|
background-color: #fff;
|
2016-09-05 16:12:29 -07:00
|
|
|
border-bottom: 1px solid rgba(0,0,0,.1);
|
2016-09-05 22:41:10 -07:00
|
|
|
box-shadow: 0 6px 12px rgba(0,0,0,.05);
|
2016-07-25 12:30:10 -07:00
|
|
|
|
2015-08-18 01:06:36 -07:00
|
|
|
.navbar-nav {
|
|
|
|
.nav-link {
|
|
|
|
color: $bd-graphite-light;
|
2015-08-17 21:31:17 -07:00
|
|
|
|
2015-08-18 01:06:36 -07:00
|
|
|
&.active,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: $gray-dark;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2015-08-17 21:31:17 -07:00
|
|
|
|
2015-08-18 01:06:36 -07:00
|
|
|
&.active {
|
2016-03-21 22:56:26 -07:00
|
|
|
font-weight: 500;
|
2016-03-21 22:56:45 -07:00
|
|
|
color: darken($gray-dark, 15%);
|
2015-08-18 01:06:36 -07:00
|
|
|
}
|
2015-08-17 21:31:17 -07:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 18:45:08 -07:00
|
|
|
|
|
|
|
.dropdown-menu {
|
2016-12-29 13:22:45 -08:00
|
|
|
font-size: .875rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-brand {
|
|
|
|
color: $bd-purple;
|
2015-08-18 18:45:08 -07:00
|
|
|
}
|
2015-08-17 21:31:17 -07:00
|
|
|
}
|