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

49 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-color;
}
h1,h2,h3,h4,h5,h6 {
font-family: inherit;
}
h1 {
}
h2 {
font-size:2rem;
}
p {
margin-top:0;
margin-bottom: $paragraph-margin-bottom;
}
a {
text-decoration: none;
color: $orange;
text-decoration:underline;
&:hover {
color:darken($orange, 15%);
}
&:visited {
color: none;
}
}