couleur navbar

This commit is contained in:
nyanloutre 2017-07-14 16:19:41 +02:00
parent 5ad280404f
commit 1cda0987c6
No known key found for this signature in database
GPG Key ID: 4177A74B460FAFD2
3 changed files with 11 additions and 11 deletions

View File

@ -85,24 +85,24 @@ body {
#mainNav .navbar-brand {
font-weight: 700;
text-transform: uppercase;
color: #F05F40;
color: black;
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; }
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
color: #f05f40; }
color: black; }
#mainNav .navbar-toggle {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
color: #222222; }
color: grey; }
#mainNav .navbar-nav > li.nav-item > a.nav-link,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
color: #222222; }
color: grey; }
#mainNav .navbar-nav > li.nav-item > a.nav-link:hover,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus:hover {
color: #F05F40; }
color: black; }
#mainNav .navbar-nav > li.nav-item > a.nav-link.active,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus.active {
color: #F05F40 !important;

File diff suppressed because one or more lines are too long

View File

@ -7,18 +7,18 @@
.navbar-brand {
font-weight: 700;
text-transform: uppercase;
color: $theme-primary;
color: black;
@include sans-serif-font;
&:hover,
&:focus {
color: darken($theme-primary, .1);
color: darken(black, .1);
}
}
.navbar-toggle {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
color: $gray-darker;
color: grey;
}
.navbar-nav {
> li.nav-item {
@ -27,9 +27,9 @@
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
color: $gray-darker;
color: grey;
&:hover {
color: $theme-primary;
color: black;
}
&.active {
color: $theme-primary !important;