-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
42 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat 🐈</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
touch-action: none;
-webkit-user-select: none;
}
body, canvas {
overflow: hidden;
width: 100vw;
height: 100vh;
image-rendering: pixelated;
overscroll-behavior: contain;
}
section{
text-align: right;
color: black;
font-size: 20px;
font-family: 'Inter', sans-serif;
position: absolute;
top: 0;
right: 0;
padding: 25px;
}
</style>
</head>
<body>
<canvas></canvas>
<section>
</section>
<script type="module" src="/src/main.ts"></script>
</body>
</html>