Taille police navbar et contours

This commit is contained in:
nyanloutre 2017-07-14 20:40:25 +02:00
parent 401650e7f5
commit cf9a5e1ae4
No known key found for this signature in database
GPG Key ID: 4177A74B460FAFD2
3 changed files with 9 additions and 3 deletions

View File

@ -117,15 +117,18 @@ body {
background-color: transparent; }
@media (min-width: 992px) {
#mainNav {
-webkit-text-stroke: 1px black;
border-color: rgba(255, 255, 255, 0.3);
background-color: transparent; }
#mainNav .navbar-brand {
color: rgba(255, 255, 255, 0.7); }
color: rgba(255, 255, 255, 0.7);
font-size: 1.5rem; }
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
color: white; }
#mainNav .navbar-nav > li.nav-item > a.nav-link,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus {
color: rgba(255, 255, 255, 0.7); }
color: rgba(255, 255, 255, 0.7);
font-size: 1.25rem; }
#mainNav .navbar-nav > li.nav-item > a.nav-link:hover,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus:hover {
color: white; }

File diff suppressed because one or more lines are too long

View File

@ -42,10 +42,12 @@
}
}
@media (min-width: 992px) {
-webkit-text-stroke: 1px black;
border-color: fade-out(white, .7);
background-color: transparent;
.navbar-brand {
color: fade-out(white, .3);
font-size: 1.5rem;
&:hover,
&:focus {
color: white;
@ -54,6 +56,7 @@
.navbar-nav > li.nav-item > a.nav-link,
.navbar-nav > li.nav-item > a.nav-link:focus {
color: fade-out(white, .3);
font-size: 1.25rem;
&:hover {
color: white;
}