Initial commit

This commit is contained in:
2026-09-16 19:23:09 +02:00
commit 1697016838
17 changed files with 1329 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #000000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.canvas-wrapper {
width: min(90vw, 120vh);
aspect-ratio: 4 / 3;
background-color: #1e293b;
}
#canvas {
width: 100%;
height: 100%;
image-rendering: pixelated;
}
</style>
</head>
<body>
<div class="canvas-wrapper">
<canvas id="canvas" tabindex="0"></canvas>
</div>
</body>
<script src="main.js" type="module"></script>
</html>