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

77 lines
1.6 KiB
SCSS
Raw Normal View History

//
// Main navbar
//
.bd-navbar {
2017-05-27 21:12:45 -04:00
min-height: 4rem;
2017-05-27 23:10:35 -04: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 15:30:10 -04:00
2017-05-28 20:49:46 -04:00
@include media-breakpoint-down(md) {
padding-right: .5rem;
padding-left: .5rem;
2017-05-28 20:49:46 -04:00
.navbar-nav-scroll {
max-width: 100%;
height: 2.5rem;
margin-top: .25rem;
2017-06-17 23:36:49 -04:00
overflow: hidden;
2017-05-28 21:01:08 -04:00
font-size: .875rem;
2017-05-28 20:49:46 -04:00
.navbar-nav {
padding-bottom: 2rem;
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}
}
}
@include media-breakpoint-up(md) {
@supports (position: sticky) {
position: sticky;
top: 0;
z-index: 1071; // over everything in bootstrap
}
2017-05-28 20:49:46 -04:00
}
.navbar-nav {
.nav-link {
2017-05-28 20:49:46 -04:00
padding-right: .5rem;
padding-left: .5rem;
2017-05-27 23:10:35 -04:00
color: $bd-purple-light;
&.active,
2017-05-27 23:10:35 -04:00
&:hover {
color: #fff;
background-color: transparent;
}
&.active {
font-weight: 500;
}
}
}
2015-08-18 21:45:08 -04:00
2017-05-27 20:31:55 -04:00
.navbar-nav-svg {
display: inline-block;
width: 1rem;
height: 1rem;
vertical-align: text-top;
}
2015-08-18 21:45:08 -04:00
.dropdown-menu {
2016-12-29 16:22:45 -05:00
font-size: .875rem;
}
2017-05-30 16:59:42 -04:00
.dropdown-item.active {
font-weight: 500;
color: $gray-900;
2017-05-30 16:59:42 -04:00
background-color: transparent;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23292b2c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: .4rem .6rem;
background-size: .75rem .75rem;
}
}