open-vault/website/source/assets/stylesheets/_global.scss

62 lines
1.1 KiB
SCSS
Raw Normal View History

2015-03-13 17:34:29 +00:00
//
// Global Site
// --------------------------------------------------
2017-03-06 19:53:00 +00:00
html {
height: 100%;
min-height: 100%;
2015-03-13 17:34:29 +00:00
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
2015-03-13 17:34:29 +00:00
body {
2017-03-06 19:53:00 +00:00
-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%;
2015-03-13 17:34:29 +00:00
}
h1, h2, h3, h4, h5 {
2017-03-06 19:53:00 +00:00
font-family: $font-family-klavika;
-webkit-font-smoothing: antialiased;
2015-03-13 17:34:29 +00:00
}
2017-03-06 19:53:00 +00:00
h1 {
margin-bottom: 24px;
2015-03-13 17:34:29 +00:00
}
.center {
2017-03-06 19:53:00 +00:00
text-align: center;
}
.alert p:last-child {
margin-bottom: 0;
}
//Typekit utilites for hiding FOUC
.wf-loading {
visibility: hidden;
}
.wf-active, .wf-inactive {
visibility: visible;
}
//fixed grid below 992 to prevent smaller responsive sizes
@media (min-width: 768px) and (max-width: 992px) {
.container{
width: 100%;
}
}
//guarantees nav list fits at tablet viewport size
@media (min-width: 768px) and (max-width: 800px) {
#header .navbar-nav a {
font-size: 12px !important;
}
}