terraform/website/source/assets/stylesheets/_global.scss

44 lines
749 B
SCSS
Raw Normal View History

2017-04-05 17:28:34 +02:00
html {
height: 100%;
min-height: 100%;
2014-07-16 23:51:48 +02:00
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
2017-04-05 17:28:34 +02:00
}
2014-07-16 23:51:48 +02:00
body {
2017-04-05 17:28:34 +02: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%;
2014-07-16 23:51:48 +02:00
}
2014-07-28 19:10:23 +02:00
h1, h2, h3, h4, h5 {
2017-04-05 17:28:34 +02:00
font-family: $font-family-klavika;
-webkit-font-smoothing: antialiased;
2014-07-16 23:51:48 +02:00
}
2017-04-05 17:28:34 +02:00
h1 {
margin-bottom: 24px;
2014-07-16 23:51:48 +02:00
}
2017-04-05 17:28:34 +02:00
// Avoid FOUT
2017-02-14 20:28:43 +01:00
.wf-loading {
visibility: hidden;
}
2017-04-05 17:28:34 +02:00
2017-02-14 20:28:43 +01:00
.wf-active, .wf-inactive {
visibility: visible;
}
2017-05-05 21:33:29 +02:00
2017-05-11 20:43:58 +02:00
@media (min-width: $screen-sm) and (max-width: $screen-md) {
2017-05-05 21:33:29 +02:00
.container {
padding: 0;
max-width: $screen-md;
min-width: $screen-sm;
}
}