Import fonts

This commit is contained in:
Seth Vargo 2017-04-06 18:39:43 -04:00
parent ee6921f1b6
commit a8103bb84d
No known key found for this signature in database
GPG Key ID: C921994F9C27E0FF
3 changed files with 13 additions and 7 deletions

View File

@ -12,10 +12,16 @@
margin-bottom: 0; margin-bottom: 0;
} }
pre { pre,
code,
pre code,
tt {
font-family: $font-family-monospace; font-family: $font-family-monospace;
font-size: ($font-size - 3); font-size: $font-size - 2;
font-weight: normal; line-height: 1.6;
}
pre {
padding: 20px; padding: 20px;
margin: 0 0 $font-size; margin: 0 0 $font-size;

View File

@ -16,9 +16,9 @@ $vault-blue: #00ABE0;
$vault-gray: #919FA8; $vault-gray: #919FA8;
// Typography // Typography
$font-family-klavika: 'klavika-web', 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-klavika: 'klavika-web', Helvetica, sans-serif;
$font-family-open-sans: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-open-sans: 'Open Sans', sans-serif;
$font-family-monospace: 'Menlo', 'Monaco', 'Consolas', "Courier New", monospace; $font-family-monospace: 'Fira Mono', monospace;
$font-size: 15px; $font-size: 15px;
$font-weight-reg: 400; $font-weight-reg: 400;
$font-weight-bold: 600; $font-weight-bold: 600;

View File

@ -1,7 +1,7 @@
@import 'bootstrap-sprockets'; @import 'bootstrap-sprockets';
@import 'bootstrap'; @import 'bootstrap';
@import url('//fonts.googleapis.com/css?family=Open+Sans:400,600'); @import url('https://fonts.googleapis.com/css?family=Fira+Mono|Open+Sans:400,600');
// Mega Nav // Mega Nav
@import 'hashicorp/mega-nav'; @import 'hashicorp/mega-nav';