28 lines
524 B
SCSS
28 lines
524 B
SCSS
|
html {
|
||
|
font-family: $font;
|
||
|
-webkit-text-size-adjust: 100%;
|
||
|
-ms-text-size-adjust: 100%;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: $bg-body;
|
||
|
color: $body-text;
|
||
|
font-family: $font;
|
||
|
font-size: $body-text-size;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $primary-links;
|
||
|
text-decoration: none;
|
||
|
outline: none;
|
||
|
&:hover, &:focus {
|
||
|
opacity: .8;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|