Added Websocket stuff

This commit is contained in:
2026-05-02 18:26:02 -04:00
parent 7f49abd5e1
commit f34125d67b
10 changed files with 140 additions and 102 deletions

32
www/style/styles.css Normal file
View File

@@ -0,0 +1,32 @@
body {
margin: 0;
height: 100vh;
overflow: hidden;
background: linear-gradient(-45deg, #0f172a, #1e293b, #0ea5e9, #22c55e);
background-size: 400% 400%;
animation: gradientShift 12s ease infinite;
color: white;
font-family: Arial;
}
#waveCanvas {
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
#particleCanvas {
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}