cheatsheets/_sass/2017/base/base.scss

39 lines
498 B
SCSS

/*
* Base
*/
html, body {
background: $body-bg;
font-family: $body-font;
font-size: 14px;
line-height: 1.6;
color: $text-color;
}
body {
@include font-size(0);
padding: 8px;
margin: 0 auto;
}
@media (min-width: 481px) {
body {
padding: 16px;
max-width: $column * 3 + 32px;
}
}
pre, code {
font-family: $monospace-font;
letter-spacing: -0.03em;
}
pre {
font-size: 0.92em;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}