docs/_scss/_base.scss

33 lines
551 B
SCSS
Executable File

/*
*
* globals
*
*/
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
body {
background-color: $bg-body;
color: $body-text-color;
font-family: $font;
font-size: $body-text-size;
margin: $clear;
padding: $clear;
overflow-x: hidden;
}
a {
color: $primary-links;
text-decoration: none;
outline: none;
&:hover {
opacity: .8;
text-decoration: none;
}
}