Merge pull request #11946 from hashicorp/website-type-update-fixes

Website type update fixes
This commit is contained in:
Jake Champlin 2017-02-14 15:32:58 -05:00 committed by GitHub
commit 7fa5731ad5
4 changed files with 12 additions and 3 deletions

View File

@ -99,7 +99,7 @@ body.layout-intro{
.docs-sidenav{ .docs-sidenav{
padding-top: 15px; padding-top: 15px;
padding-bottom: 15px; padding-bottom: 15px;
font-family: "Klavika-web"; font-family: $font-family-klavika;
font-size: 16px; font-size: 16px;
:last-child{ :last-child{

View File

@ -17,7 +17,7 @@ body {
h1, h2, h3, h4, h5 { h1, h2, h3, h4, h5 {
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
font-family: "klavika-web"; font-family: $font-family-klavika;
font-weight: 600; font-weight: 600;
} }
h1{ h1{
@ -74,6 +74,14 @@ pre {
margin-bottom: 0; margin-bottom: 0;
} }
// Typekit utilites to hide FOUC
.wf-loading {
visibility: hidden;
}
.wf-active, .wf-inactive {
visibility: visible;
}
//fixed grid below 992 to prevent smaller responsive sizes //fixed grid below 992 to prevent smaller responsive sizes
@media (max-width: 992px) { @media (max-width: 992px) {

View File

@ -14,7 +14,7 @@ body.page-sub{
.navbar-brand { .navbar-brand {
.logo{ .logo{
font-size: 32px; font-size: 32px;
font-family: "Klavika-web"; font-family: $font-family-klavika;
font-weight: 500; font-weight: 500;
background: image-url('logo-header.png') 0 0 no-repeat; background: image-url('logo-header.png') 0 0 no-repeat;
@include img-retina("../images/logo-header.png", "../images/logo-header@2x.png", $project-logo-width, $project-logo-height); @include img-retina("../images/logo-header.png", "../images/logo-header@2x.png", $project-logo-width, $project-logo-height);

View File

@ -45,6 +45,7 @@ $link-hover-color: darken($link-color, 15%);
// Typography // Typography
// ------------------------- // -------------------------
$font-family-open-sans: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-open-sans: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-klavika: 'klavika-web', 'klavika', 'Open Sans', Helvetica, Arial, sans-serif;
$text-shadow: 1px 1px 1px #000; $text-shadow: 1px 1px 1px #000;
$shadow: $text-shadow; $shadow: $text-shadow;