meat/index.html

41 lines
888 B
HTML
Raw Permalink Normal View History

2026-08-04 02:09:54 +02:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MEAT</title>
<style>
html,
body {
margin: 0;
height: 100%;
background: #000;
overflow: hidden;
}
#screen {
2026-08-05 09:24:13 +02:00
position: absolute;
2026-08-04 02:09:54 +02:00
image-rendering: pixelated;
}
2026-08-04 03:00:58 +02:00
#fps {
position: fixed;
right: 6px;
bottom: 6px;
2026-08-05 09:24:13 +02:00
font: 13px monospace;
white-space: pre;
line-height: 1.35;
text-align: right;
2026-08-04 03:00:58 +02:00
color: #fff;
background: #000;
opacity: 0.5;
2026-08-05 09:24:13 +02:00
padding: 2px 6px;
2026-08-04 03:00:58 +02:00
pointer-events: none;
}
2026-08-04 02:09:54 +02:00
</style>
</head>
<body>
<canvas id="screen"></canvas>
2026-08-04 03:00:58 +02:00
<div id="fps">-- fps</div>
2026-08-04 02:09:54 +02:00
<script type="module" src="/app/main.ts"></script>
</body>
</html>