old_blog/_sass/_base.scss

38 lines
1.1 KiB
SCSS
Raw Normal View History

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
}