2017-03-28 03:37:59 +00:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
}
|
2015-09-12 00:01:02 +00:00
|
|
|
|
|
|
|
body {
|
2015-11-10 21:58:56 +00:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2017-03-15 01:56:38 +00:00
|
|
|
color: $body-font-color;
|
2015-11-10 21:58:56 +00:00
|
|
|
background-color: $white;
|
2017-03-28 03:37:59 +00:00
|
|
|
font-size: $font-size;
|
2015-11-10 21:58:56 +00:00
|
|
|
font-family: $font-family-open-sans;
|
2017-03-28 03:37:59 +00:00
|
|
|
font-weight: $font-weight-reg;
|
|
|
|
height: 100%;
|
|
|
|
min-height: 100%;
|
2015-09-12 00:01:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5 {
|
2017-02-16 20:41:02 +00:00
|
|
|
font-family: $font-family-klavika;
|
2015-11-10 21:58:56 +00:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2015-09-12 00:01:02 +00:00
|
|
|
}
|
2016-11-01 12:53:13 +00:00
|
|
|
|
2017-03-28 03:37:59 +00:00
|
|
|
h1 {
|
2015-11-10 21:58:56 +00:00
|
|
|
margin-bottom: 24px;
|
2015-09-12 00:01:02 +00:00
|
|
|
}
|
|
|
|
|
2017-07-21 02:31:57 +00:00
|
|
|
@media (min-width: $screen-sm) and (max-width: $screen-md) {
|
|
|
|
.container {
|
|
|
|
padding: 0;
|
|
|
|
max-width: $screen-md;
|
|
|
|
min-width: $screen-sm;
|
|
|
|
}
|
|
|
|
}
|