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

28 lines
374 B
SCSS
Raw Normal View History

//
// Main navbar
//
.bd-navbar {
.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
.dropdown-menu {
font-size: inherit;
}
}