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

53 lines
839 B
SCSS
Raw Normal View History

2022-03-28 12:08:25 +00:00
@use 'reset';
2021-08-26 15:52:13 +00:00
html {
font-size: 62.5%;
}
body {
--background-1: #000;
--foreground-1: #fff;
background-color: var(--background-1);
color: var(--foreground-1);
2021-08-26 15:52:13 +00:00
font-family: sans-serif;
font-size: 2rem;
2022-03-28 12:42:34 +00:00
padding: 2rem;
2021-08-26 15:52:13 +00:00
}
a {
color: var(--foreground-1);
2021-08-26 15:52:13 +00:00
font-weight: bold;
2022-03-28 12:30:42 +00:00
text-decoration: 1px dotted underline;
2022-03-28 12:37:26 +00:00
&:hover {
background-color: var(--foreground-1);
color: var(--background-1);
}
2021-08-26 15:52:13 +00:00
}
button {
cursor: pointer;
}
2022-03-28 12:22:07 +00:00
:focus {
outline: 2px dotted var(--foreground-1);
}
2021-08-26 15:52:13 +00:00
.monospace {
font-family: monospace;
}
2021-08-26 15:52:13 +00:00
.divider {
2022-03-28 12:42:34 +00:00
border-top: 2px dotted var(--foreground-1);
margin-bottom: 2rem;
margin-top: 2rem;
}
2021-12-03 23:51:55 +00:00
@use 'components/errors';
@use 'components/page-footer';
@use 'components/page-header';
@use 'components/page-main';
@use 'components/listenbrainz';
@use 'components/userstyles';