2020-06-19 00:16:57 -04:00
|
|
|
/* Universal box-sizing as per https://css-tricks.com/box-sizing/ */
|
|
|
|
html {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2019-07-05 14:16:46 -04:00
|
|
|
}
|
|
|
|
|
2020-06-19 00:16:57 -04:00
|
|
|
/* Universal box-sizing as per https://css-tricks.com/box-sizing/ */
|
|
|
|
*, *:before, *:after {
|
|
|
|
-webkit-box-sizing: inherit;
|
|
|
|
-moz-box-sizing: inherit;
|
|
|
|
box-sizing: inherit;
|
2019-07-05 14:16:46 -04:00
|
|
|
}
|
|
|
|
|
2020-06-19 00:16:57 -04:00
|
|
|
body {
|
|
|
|
font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
|
|
|
|
color: $text-color;
|
|
|
|
background-color: $background-color;
|
|
|
|
-webkit-text-size-adjust: 100%;
|
|
|
|
-webkit-font-feature-settings: "kern" 1;
|
|
|
|
-moz-font-feature-settings: "kern" 1;
|
|
|
|
-o-font-feature-settings: "kern" 1;
|
|
|
|
font-feature-settings: "kern" 1;
|
|
|
|
font-kerning: normal;
|
|
|
|
text-rendering: optimizeLegibility; /* Beware of performance issues in mobile - see https://css-tricks.com/almanac/properties/t/text-rendering/ */
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
font-smoothing: antialiased;
|
2019-07-05 14:16:46 -04:00
|
|
|
|
2020-06-19 00:16:57 -04:00
|
|
|
&.is-offset {
|
|
|
|
margin-top: -195px;
|
2019-07-05 14:16:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-19 00:16:57 -04:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #443E40;
|
2019-08-08 03:39:26 -04:00
|
|
|
}
|
2020-06-19 01:14:43 -04:00
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 15px 0;
|
|
|
|
}
|
2020-06-19 01:18:08 -04:00
|
|
|
|
|
|
|
b, strong {
|
|
|
|
font-size: 17px !important;
|
|
|
|
}
|
2020-06-19 14:35:43 -04:00
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-type: lower-greek;
|
|
|
|
list-style-position: inside;
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
2020-09-09 20:08:14 -04:00
|
|
|
ul.pagination {
|
2020-07-15 07:17:35 -04:00
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2020-06-19 14:35:43 -04:00
|
|
|
* {
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|