2017-03-28 03:37:59 +00:00
|
|
|
html {
|
2019-10-03 20:07:53 +00:00
|
|
|
font-size: $font-size-default;
|
2017-03-28 03:37:59 +00:00
|
|
|
height: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
}
|
2015-09-12 00:01:02 +00:00
|
|
|
|
|
|
|
body {
|
2019-11-07 19:29:21 +00:00
|
|
|
-moz-osx-font-smoothing: grayscale;
|
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;
|
2019-10-03 20:07:53 +00:00
|
|
|
font-size: $font-size-default;
|
|
|
|
font-family: $font-body;
|
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
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|