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

50 lines
721 B
SCSS
Raw Normal View History

2023-01-09 15:09:00 +00:00
@use "reset";
2021-08-26 15:52:13 +00:00
html {
font-size: 62.5%;
}
body {
2022-10-25 21:51:06 +00:00
--anchor-color: #f0f;
--anchor-hover: #000;
2022-10-25 21:51:06 +00:00
background-color: #000;
color: #000;
2021-08-26 15:52:13 +00:00
font-family: sans-serif;
font-size: 2rem;
}
a {
2022-10-25 21:51:06 +00:00
color: var(--anchor-color);
2021-08-26 15:52:13 +00:00
font-weight: bold;
2022-10-25 21:51:06 +00:00
text-decoration: 2px dotted underline;
2022-03-28 12:37:26 +00:00
&:hover {
2022-10-25 21:51:06 +00:00
background-color: var(--anchor-color);
color: var(--anchor-hover);
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 {
2022-10-25 21:51:06 +00:00
outline: 2px dotted #f0f;
2022-03-28 12:22:07 +00:00
}
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;
}
2023-01-09 15:09:00 +00:00
@use "components/page-footer";
@use "components/page-header";
@use "components/page-main";
@use "components/listenbrainz";