twbs--bootstrap/assets/scss/_nav.scss

65 lines
1.1 KiB
SCSS
Raw Normal View History

2016-12-29 21:22:45 +00:00
// scss-lint:disable VendorPrefix
//
// Main navbar
//
.bd-navbar {
2017-05-28 01:12:45 +00:00
min-height: 4rem;
2017-05-28 03:10:35 +00:00
background-color: $bd-purple;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.05), inset 0 -1px 0 rgba(0,0,0,.1);
2016-07-25 19:30:10 +00:00
2017-05-29 00:49:46 +00:00
@include media-breakpoint-down(md) {
.navbar-nav-scroll {
max-width: 100%;
height: 2.5rem;
margin-top: .25rem;
overflow-x: hidden;
2017-05-29 01:01:08 +00:00
font-size: .875rem;
2017-05-29 00:49:46 +00:00
.navbar-nav {
padding-bottom: 2rem;
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}
}
}
@include media-breakpoint-up(md) {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1030; // over everything in bootstrap
}
.navbar-nav {
.nav-link {
2017-05-29 00:49:46 +00:00
padding-right: .5rem;
padding-left: .5rem;
2017-05-28 03:10:35 +00:00
color: $bd-purple-light;
&.active,
2017-05-28 03:10:35 +00:00
&:hover {
color: #fff;
background-color: transparent;
}
&.active {
font-weight: 500;
}
}
}
2015-08-19 01:45:08 +00:00
2017-05-28 00:31:55 +00:00
.navbar-nav-svg {
display: inline-block;
width: 1rem;
height: 1rem;
vertical-align: text-top;
}
2015-08-19 01:45:08 +00:00
.dropdown-menu {
2016-12-29 21:22:45 +00:00
font-size: .875rem;
}
}