24 lines
301 B
SCSS
24 lines
301 B
SCSS
|
@import "colors.scss";
|
||
|
|
||
|
body {
|
||
|
padding: 0 0.25rem;
|
||
|
margin: auto;
|
||
|
max-width: 48rem;
|
||
|
color: $fg;
|
||
|
background: $bg;
|
||
|
font-family: 'Roboto', 'Ubuntu', sans-serif;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3, h4, h5, h6 {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $link;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover {
|
||
|
color: $link-hover;
|
||
|
}
|
||
|
}
|