implement PPTY

This commit is contained in:
Emile Clark-Boman 2026-02-03 20:26:22 +10:00
parent a13032c76e
commit d76ac04531
12 changed files with 499 additions and 118 deletions

View file

@ -1,3 +1,27 @@
body {
background-color: var(--theme-bg);
}
#bg-canvas {
display:block;
position: fixed;
inset: 0;
width: 100vw;
height: 100vh;
z-index: -1;
}
.centered {
position: absolute;
inset: 0 0 0 0;
margin: auto;
display: flex;
}
.heading {
font-family: monospace;
font-size: 2em;
font-weight: bold;
}