1
Fork 0
bauke-xyz/source/scss/index.scss

42 lines
633 B
SCSS

@use 'reset';
html {
font-size: 62.5%;
}
body {
--background-1: #000;
--foreground-1: #fff;
background-color: var(--background-1);
color: var(--foreground-1);
font-family: sans-serif;
font-size: 2rem;
}
a {
color: var(--foreground-1);
font-weight: bold;
}
button {
cursor: pointer;
}
.monospace {
font-family: monospace;
}
.divider {
border-top: 2px solid var(--foreground-1);
margin-bottom: 1rem;
margin-top: 1rem;
}
@use 'components/errors';
@use 'components/page-footer';
@use 'components/page-header';
@use 'components/page-main';
@use 'components/listenbrainz';
@use 'components/userstyles';