Modif police

This commit is contained in:
nyanloutre 2017-07-14 19:05:49 +02:00
parent 6bc9a77f14
commit c9a5f2b73e
No known key found for this signature in database
GPG Key ID: 4177A74B460FAFD2
8 changed files with 36 additions and 12 deletions

View File

@ -1,3 +1,8 @@
@font-face {
font-family: 'descuadrado';
src: url("font/descuadrado-webfont.woff2") format("woff2"), url("font/descuadrado-webfont.woff") format("woff");
font-weight: normal;
font-style: normal; }
html, html,
body { body {
width: 100%; width: 100%;
@ -112,18 +117,18 @@ body {
background-color: transparent; } background-color: transparent; }
@media (min-width: 992px) { @media (min-width: 992px) {
#mainNav { #mainNav {
border-color: rgba(0, 0, 0, 0.3); border-color: rgba(255, 255, 255, 0.3);
background-color: transparent; } background-color: transparent; }
#mainNav .navbar-brand { #mainNav .navbar-brand {
color: rgba(0, 0, 0, 0.7); } color: rgba(255, 255, 255, 0.7); }
#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus { #mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
color: black; } color: white; }
#mainNav .navbar-nav > li.nav-item > a.nav-link, #mainNav .navbar-nav > li.nav-item > a.nav-link,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus { #mainNav .navbar-nav > li.nav-item > a.nav-link:focus {
color: rgba(0, 0, 0, 0.7); } color: rgba(255, 255, 255, 0.7); }
#mainNav .navbar-nav > li.nav-item > a.nav-link:hover, #mainNav .navbar-nav > li.nav-item > a.nav-link:hover,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus:hover { #mainNav .navbar-nav > li.nav-item > a.nav-link:focus:hover {
color: black; } color: white; }
#mainNav.navbar-shrink { #mainNav.navbar-shrink {
border-color: rgba(34, 34, 34, 0.05); border-color: rgba(34, 34, 34, 0.05);
background-color: white; } background-color: white; }
@ -330,4 +335,7 @@ header.masthead {
.btn-xl { .btn-xl {
padding: 15px 30px; } padding: 15px 30px; }
#about h2 {
font-family: descuadrado; }
/*# sourceMappingURL=creative.css.map */ /*# sourceMappingURL=creative.css.map */

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

5
scss/_about.scss Normal file
View File

@ -0,0 +1,5 @@
#about {
h2 {
font-family: descuadrado;
}
}

View File

@ -1,4 +1,14 @@
// Global styling for this template // Global styling for this template
@font-face {
font-family: 'descuadrado';
src: url('font/descuadrado-webfont.woff2') format('woff2'),
url('font/descuadrado-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
html, html,
body { body {
width: 100%; width: 100%;

View File

@ -42,20 +42,20 @@
} }
} }
@media (min-width: 992px) { @media (min-width: 992px) {
border-color: fade-out(black, .7); border-color: fade-out(white, .7);
background-color: transparent; background-color: transparent;
.navbar-brand { .navbar-brand {
color: fade-out(black, .3); color: fade-out(white, .3);
&:hover, &:hover,
&:focus { &:focus {
color: black; color: white;
} }
} }
.navbar-nav > li.nav-item > a.nav-link, .navbar-nav > li.nav-item > a.nav-link,
.navbar-nav > li.nav-item > a.nav-link:focus { .navbar-nav > li.nav-item > a.nav-link:focus {
color: fade-out(black, .3); color: fade-out(white, .3);
&:hover { &:hover {
color: black; color: white;
} }
} }
&.navbar-shrink { &.navbar-shrink {

View File

@ -7,3 +7,4 @@
@import "portfolio.scss"; @import "portfolio.scss";
@import "cta.scss"; @import "cta.scss";
@import "bootstrap-overrides.scss"; @import "bootstrap-overrides.scss";
@import "_about.scss";