begin shift to scss

This commit is contained in:
Emile Clark-Boman 2025-08-06 17:13:27 +10:00
parent d652c2e83e
commit dc23724c54
4 changed files with 113 additions and 0 deletions

23
www/scss/_base.scss Normal file
View file

@ -0,0 +1,23 @@
$color-bg: #0e0d14; /* background */
$color-txt: #ffc0cb; /* text */ /* #ac4aed */
html, body {
height: 100%;
margin: 0;
background-color: $color-bg;
}
.centered {
position: absolute;
inset: 0 0 0 0;
margin: auto;
display: flex;
}
.heading {
font-family: monospace;
font-size: 2em;
font-weight: bold;
color: $color-txt;
}