0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-30 12:24:19 +01:00
Bootstrap/docs/assets/scss/_nav.scss

56 lines
973 B
SCSS
Raw Normal View History

2016-12-29 22:22:45 +01:00
// scss-lint:disable VendorPrefix
//
// Main navbar
//
.bd-navbar {
2016-12-29 22:22:45 +01: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;
// }
// padding-right: 0;
// padding-left: 0;
2016-12-29 22:22:45 +01:00
// margin-bottom: 2rem;
background-color: #fff;
border-bottom: 1px solid rgba(0,0,0,.1);
2016-09-06 07:41:10 +02:00
box-shadow: 0 6px 12px rgba(0,0,0,.05);
2016-07-25 21:30:10 +02:00
.navbar-nav {
.nav-link {
color: $bd-graphite-light;
&.active,
&:hover,
&:focus {
color: $gray-dark;
background-color: transparent;
}
&.active {
font-weight: 500;
2016-03-22 06:56:45 +01:00
color: darken($gray-dark, 15%);
}
}
}
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;
}
.navbar-brand {
color: $bd-purple;
2015-08-19 03:45:08 +02:00
}
}