This repository has been archived on 2022-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
frontend-styles/src/scss/_global.scss

41 lines
543 B
SCSS

* {
box-sizing: border-box;
}
html,body {
margin:0;
padding:0;
}
html body {
background-color:$bg-color;
}
body {
@include font-size($font-size-base);
font-family:$font-family-sans-serif;
line-height: 1.4;
color: $body-text-color;
}
p {
margin-top:0;
margin-bottom: $paragraph-margin-bottom;
}
a {
color: $link-color;
font-weight: $link-font-weight;
text-decoration:underline;
&:hover {
color:$link-hover-color;
}
&:visited {
color: $link-visited-color;
}
&:active {
color:$link-active-color;
}
}