Add base index page

This commit is contained in:
Tyler Perkins
2023-07-15 18:44:31 -04:00
parent ebb1b01c3e
commit fb64b9802f
20 changed files with 295 additions and 36 deletions

16
static/css/background.css Normal file
View File

@@ -0,0 +1,16 @@
@keyframes animatedBackground {
from { background-position: 0 0; }
to { background-position: 0 100%; }
}
@keyframes rotateBackground {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
body {
background-image: url("/img/webb-dark.png");
background-position: center;
background-repeat: cover;
background-attachment: fixed;
}