1
Fork 0

Update font stuff

This commit is contained in:
Jake Howard 2016-12-17 21:04:22 +00:00
parent c0f94eb121
commit 7662923148
2 changed files with 9 additions and 6 deletions

View file

@ -29,7 +29,7 @@ a {
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
font-family: $font-family-heading; font-family: $headings-font-family;
} }
p { p {
@ -65,12 +65,12 @@ aside {
transition: all 0.35s; transition: all 0.35s;
border-color: opacify($brand-grey-dark, 0.05); border-color: opacify($brand-grey-dark, 0.05);
background-color: $white; background-color: $white;
font-family: $font-family-heading; font-family: $headings-font-family;
.navbar-header .navbar-brand { .navbar-header .navbar-brand {
text-transform: uppercase; text-transform: uppercase;
color: $brand-orange; color: $brand-orange;
font-family: $font-family-heading; font-family: $headings-font-family;
font-weight: 700; font-weight: 700;
&:hover, &:focus { &:hover, &:focus {
@ -261,7 +261,7 @@ header {
.project-category, .project-category,
.project-name { .project-name {
padding: 0 15px; padding: 0 15px;
font-family: $font-family-heading; font-family: $headings-font-family;
} }
.project-category { .project-category {
@ -322,7 +322,7 @@ header {
border: 0; border: 0;
border-radius: 300px; border-radius: 300px;
text-transform: uppercase; text-transform: uppercase;
font-family: $font-family-heading; font-family: $headings-font-family;
font-weight: 700; font-weight: 700;
} }

View file

@ -10,10 +10,13 @@ $white: #FFF;
$footer-height: 175px; $footer-height: 175px;
$font-family-heading: "Open Sans", "Helvetica Neue", Arial, sans-serif; $headings-font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
/* @group Bootstrap Overrides */ /* @group Bootstrap Overrides */
$font-family-base: "Roboto", "Helvetica Neue", Arial, sans-serif; $font-family-base: "Roboto", "Helvetica Neue", Arial, sans-serif;
$font-family-sans-serif: $font-family-base;
$font-family-serif: $font-family-base;
$brand-primary: $brand-orange; $brand-primary: $brand-orange;
/* @end Bootstrap Overrides */ /* @end Bootstrap Overrides */