20 lines
306 B
SCSS
20 lines
306 B
SCSS
|
html {
|
||
|
font-size: 62.5%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: var(--background-1);
|
||
|
color: var(--foreground-1);
|
||
|
font-size: 2rem;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: var(--foreground-1);
|
||
|
|
||
|
&:hover {
|
||
|
background-color: var(--foreground-1);
|
||
|
color: var(--background-1);
|
||
|
text-decoration-color: var(--foreground-1);
|
||
|
}
|
||
|
}
|