-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 884 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 884 Bytes
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
<html>
<head>
<title>PICO-8 RUNTIME</title>
<style type="text/css">
canvas {
image-rendering: optimizeSpeed; /* Older versions of FF */
image-rendering: -moz-crisp-edges; /* FF 6.0+ */
image-rendering: -webkit-optimize-contrast; /* Safari */
image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
image-rendering: pixelated; /* Awesome future-browsers */
-ms-interpolation-mode: nearest-neighbor; /* IE */
width: 100%;
height: 100%;
}
#root {
display: inline-block;
width: 512px;
height: 512px;
border: 16px solid black;
}
</style>
</head>
<body>
<div id='root'></div>
<script src="/static/bundle.js"></script>
</body>
</html>