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
Raw Permalink Normal View History

2022-01-23 20:09:33 +01:00
* {
box-sizing: border-box;
}
html,body {
margin:0;
padding:0;
}
2022-02-27 02:29:57 +01:00
2022-01-23 20:09:33 +01:00
html body {
background-color:$bg-color;
}
2022-02-27 02:29:57 +01:00
body {
2022-01-23 20:09:33 +01:00
@include font-size($font-size-base);
font-family:$font-family-sans-serif;
line-height: 1.4;
2022-02-02 02:10:22 +01:00
color: $body-text-color;
2022-01-23 20:09:33 +01:00
}
p {
margin-top:0;
margin-bottom: $paragraph-margin-bottom;
}
a {
2022-02-02 02:10:22 +01:00
color: $link-color;
2022-02-27 02:29:57 +01:00
font-weight: $link-font-weight;
2022-01-23 20:09:33 +01:00
text-decoration:underline;
&:hover {
2022-02-02 02:10:22 +01:00
color:$link-hover-color;
2022-02-27 02:29:57 +01:00
}
2022-01-23 20:09:33 +01:00
&:visited {
2022-02-02 02:10:22 +01:00
color: $link-visited-color;
}
&:active {
color:$link-active-color;
2022-01-23 20:09:33 +01:00
}
}