-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.14 KB
/
index.html
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
<html>
<head>
<title>Nullrefino</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="minimal-ui, width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<style>
html, body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background-color: #252526;
}
* {
outline: none;
}
body {
display: flex;
align-items: center;
justify-content: center;
}
/* VERY IMPORTANT TO MAKE IT NOT ANNOYING */
canvas {
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: pixelated;
}
</style>
</head>
<body>
<canvas id="notan_canvas"></canvas>
</body>
</html>