20 lines
331 B
SCSS
20 lines
331 B
SCSS
html,
|
|
body {
|
|
background-color: #162028;
|
|
font-family: $font-family-sans-serif;
|
|
font-size: $font-size-base;
|
|
line-height: $line-height-base;
|
|
color: $text-color;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
transition: color 100ms ease-in-out;
|
|
color: darken($text-color, 15%);
|
|
|
|
&:hover {
|
|
color: darken($text-color, 5%);
|
|
}
|
|
}
|