2017-03-31 23:05:07 +02:00
|
|
|
// Styling for the navbar
|
|
|
|
#mainNav {
|
|
|
|
background-color: $gray-darker;
|
|
|
|
.navbar-toggler {
|
|
|
|
font-size: 12px;
|
2017-05-08 20:57:42 +02:00
|
|
|
right: 0;
|
|
|
|
padding: 13px;
|
2017-03-31 23:05:07 +02:00
|
|
|
text-transform: uppercase;
|
2017-05-08 20:57:42 +02:00
|
|
|
color: white;
|
|
|
|
border: 0;
|
|
|
|
background-color: $theme-primary;
|
2017-03-31 23:05:07 +02:00
|
|
|
@include heading-font;
|
|
|
|
}
|
|
|
|
.container {
|
|
|
|
padding: 0;
|
|
|
|
.navbar-brand {
|
|
|
|
color: $theme-primary;
|
|
|
|
@include script-font;
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
color: darken($theme-primary, 10%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.navbar-nav {
|
|
|
|
.nav-item {
|
|
|
|
.nav-link {
|
|
|
|
font-size: 90%;
|
|
|
|
font-weight: 400;
|
2017-05-08 20:57:42 +02:00
|
|
|
padding: .75em 0;
|
2017-03-31 23:05:07 +02:00
|
|
|
letter-spacing: 1px;
|
|
|
|
color: white;
|
2017-05-08 20:57:42 +02:00
|
|
|
@include heading-font;
|
2017-03-31 23:05:07 +02:00
|
|
|
&:hover,
|
|
|
|
&.active {
|
|
|
|
color: $theme-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(min-width:992px) {
|
|
|
|
#mainNav {
|
|
|
|
padding: 25px 0;
|
2017-05-08 20:57:42 +02:00
|
|
|
-webkit-transition: padding .3s;
|
|
|
|
-moz-transition: padding .3s;
|
|
|
|
transition: padding .3s;
|
2017-03-31 23:05:07 +02:00
|
|
|
border: none;
|
2017-05-08 20:57:42 +02:00
|
|
|
background-color: transparent;
|
2017-03-31 23:05:07 +02:00
|
|
|
.navbar-brand {
|
|
|
|
font-size: 1.75em;
|
2017-05-08 20:57:42 +02:00
|
|
|
-webkit-transition: all .3s;
|
|
|
|
-moz-transition: all .3s;
|
|
|
|
transition: all .3s;
|
2017-03-31 23:05:07 +02:00
|
|
|
}
|
|
|
|
.navbar-nav {
|
|
|
|
.nav-item {
|
|
|
|
.nav-link {
|
|
|
|
padding: 1.1em 1em !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.navbar-shrink {
|
|
|
|
padding: 0;
|
2017-05-08 20:57:42 +02:00
|
|
|
background-color: $gray-darker;
|
2017-03-31 23:05:07 +02:00
|
|
|
.navbar-brand {
|
|
|
|
font-size: 1.25em;
|
2017-05-08 20:57:42 +02:00
|
|
|
padding: 12px 0;
|
2017-03-31 23:05:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|