1
Fork 0

Use font size vars in creative

This commit is contained in:
Jake Howard 2017-01-17 13:53:59 +00:00
parent b4c50c26e7
commit 7273c3f4cd
2 changed files with 10 additions and 9 deletions

View file

@ -35,7 +35,7 @@ h1, h2, h3, h4, h5, h6 {
p {
margin-bottom: 20px;
line-height: 1.5;
font-size: 16px;
font-size: $font-size-base;
}
.bg-primary {
@ -84,7 +84,7 @@ aside {
& > a:focus {
text-transform: uppercase;
color: $brand-grey-dark;
font-size: 13px;
font-size: $font-size-small;
font-weight: 700;
&:hover {
@ -132,7 +132,7 @@ aside {
.navbar-header .navbar-brand {
color: $brand-orange;
font-size: 14px;
font-size: $font-size-small;
&:hover, &:focus {
color: darken($brand-orange, 10%);
@ -184,7 +184,7 @@ header {
p {
margin-bottom: 50px;
color: opacify($white, 0.7);
font-size: 16px;
font-size: $font-size-base;
font-weight: 300;
}
}
@ -207,7 +207,7 @@ header {
margin-right: auto;
margin-left: auto;
max-width: 80%;
font-size: 18px;
font-size: $font-size-large;
}
}
}
@ -266,12 +266,12 @@ header {
.project-category {
text-transform: uppercase;
font-size: 14px;
font-size: $font-size-small;
font-weight: 600;
}
.project-name {
font-size: 18px;
font-size: $font-size-large;
}
}
}
@ -286,11 +286,11 @@ header {
.portfolio-box-caption {
.portfolio-box-caption-content {
.project-category {
font-size: 16px;
font-size: $font-size-base;
}
.project-name {
font-size: 22px;
font-size: $font-size-large;
}
}
}

View file

@ -15,5 +15,6 @@ $font-family-heading: "Open Sans", "Helvetica Neue", Arial, sans-serif;
/* @group Bootstrap Overrides */
$font-family-base: "Roboto", "Helvetica Neue", Arial, sans-serif;
$font-size-base: 16px;
$brand-primary: $brand-orange;
/* @end Bootstrap Overrides */