open-vault/website/source/assets/stylesheets/_global.scss
Seth Vargo 602a7c27f8 Fix code in header font size (#3970)
* Fix code in header font size

This fixes the tiny code font in header names.

* Update _global.scss
2018-02-13 22:17:51 -05:00

40 lines
651 B
SCSS
Executable file

html {
height: 100%;
min-height: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
body {
-webkit-font-smoothing: antialiased;
color: $body-font-color;
background-color: $white;
font-size: $font-size;
font-family: $font-family-open-sans;
font-weight: $font-weight-reg;
height: 100%;
min-height: 100%;
}
h1, h2, h3, h4, h5 {
font-family: $font-family-klavika;
-webkit-font-smoothing: antialiased;
code, tt {
font-size: inherit !important;
}
}
h1 {
margin-bottom: 24px;
}
// Avoid FOUT
.wf-loading {
visibility: hidden;
}
.wf-active, .wf-inactive {
visibility: visible;
}