Remove index & change walls colors

This commit is contained in:
Sysy's
2026-03-31 09:52:51 +02:00
parent 5620fade9c
commit 731d040e89
2 changed files with 1 additions and 10 deletions

View File

@@ -89,7 +89,7 @@ main {
} }
.wall { .wall {
background-color: #DADEEF; background-color: #0729c0;
} }
.target { .target {

View File

@@ -1,9 +0,0 @@
function rotateMirror(mirror) {
let angle = 0;
if (mirror.style.transform == "") {
angle = 0;
} else {
angle = parseInt(mirror.style.transform.split("(")[1].split("deg")[0])%360;
}
mirror.style.transform = `rotate(${angle+45}deg)`;
}