first commit

This commit is contained in:
Izzy
2025-11-17 18:36:03 -05:00
committed by GitHub
commit dff95aa973
17 changed files with 342 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
document.getElementById("crtSwitch")?.addEventListener("change",e=>{
document.body.classList.toggle("crt-on",e.target.checked);
document.body.classList.toggle("crt-off",!e.target.checked);
});