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

54 lines
872 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 {
2022-04-09 13:56:09 +00:00
--background-1: #52d168;
--background-2: #60f079;
--foreground-1: #1d2623;
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);
2022-04-09 13:56:09 +00:00
color: var(--background-2);
2022-03-28 12:37:26 +00:00
}
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';