game-engine/public/index.html
2023-07-22 13:34:09 +01:00

32 lines
600 B
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<title>Scuti Renderer</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
image-rendering: pixelated;
}
div#stats {
position: fixed;
top: 0;
right: 0;
z-index: 500;
width: max(200px, 10vw, 10vh);
height: max(100px, 6vh, 6vw);
opacity: 0.8;
user-select: none;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="script4.js"></script>
</body>
</html>