Files
docker-docs/_scss/_base.scss
Sebastiaan van Stijn c413c4e4fb _scss: remove unneeded $clear variable
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-26 18:58:10 +01:00

28 lines
524 B
SCSS
Executable File

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;
}
}