2016-12-29 22:22:45 +01:00
|
|
|
// scss-lint:disable VendorPrefix
|
|
|
|
|
2015-08-18 06:31:17 +02:00
|
|
|
//
|
|
|
|
// Main navbar
|
|
|
|
//
|
|
|
|
|
|
|
|
.bd-navbar {
|
2016-12-29 22:22:45 +01:00
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1030; // over everything in bootstrap
|
2017-05-28 03:12:45 +02:00
|
|
|
min-height: 4rem;
|
2017-05-28 05:10:35 +02:00
|
|
|
background-color: $bd-purple;
|
2016-09-06 01:12:29 +02:00
|
|
|
border-bottom: 1px solid rgba(0,0,0,.1);
|
2017-05-28 02:36:35 +02:00
|
|
|
box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
|
2016-07-25 21:30:10 +02:00
|
|
|
|
2015-08-18 10:06:36 +02:00
|
|
|
.navbar-nav {
|
|
|
|
.nav-link {
|
2017-05-28 05:10:35 +02:00
|
|
|
color: $bd-purple-light;
|
2015-08-18 06:31:17 +02:00
|
|
|
|
2015-08-18 10:06:36 +02:00
|
|
|
&.active,
|
2017-05-28 05:10:35 +02:00
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
2015-08-18 10:06:36 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
2015-08-18 06:31:17 +02:00
|
|
|
|
2015-08-18 10:06:36 +02:00
|
|
|
&.active {
|
2016-03-22 06:56:26 +01:00
|
|
|
font-weight: 500;
|
2015-08-18 10:06:36 +02:00
|
|
|
}
|
2015-08-18 06:31:17 +02:00
|
|
|
}
|
|
|
|
}
|
2015-08-19 03:45:08 +02:00
|
|
|
|
2017-05-28 02:31:55 +02:00
|
|
|
.navbar-nav-svg {
|
|
|
|
display: inline-block;
|
|
|
|
width: 1rem;
|
|
|
|
height: 1rem;
|
|
|
|
vertical-align: text-top;
|
|
|
|
}
|
|
|
|
|
2015-08-19 03:45:08 +02:00
|
|
|
.dropdown-menu {
|
2016-12-29 22:22:45 +01:00
|
|
|
font-size: .875rem;
|
|
|
|
}
|
|
|
|
|
2017-05-28 05:10:35 +02:00
|
|
|
// .navbar-brand {
|
|
|
|
// color: #fff;
|
|
|
|
// }
|
2017-05-28 03:12:45 +02:00
|
|
|
|
|
|
|
.bd-navbar-brand-wrap {
|
|
|
|
padding-top: .25rem;
|
|
|
|
padding-bottom: .25rem;
|
|
|
|
}
|
2015-08-18 06:31:17 +02:00
|
|
|
}
|