-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (67 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta charset=utf-8>
</head>
<body style="margin: 0px; padding: 0px;">
<style>
body {
margin: 0px;
width: 100%;
height: 100%;
}
#editor {
width: 100%;
height: 100%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
#canvas {
width: 100%;
height: 100%;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
image-rendering: pixelated
}
.ͼ1 .cm-content {
font-size: 20px;
}
.ͼo {
background-color: #2e344033;
}
.ͼo .cm-activeLine {
background-color: #4c566a33;
}
#runButton {
position: fixed;
top: 0;
right: 0;
margin: 20px;
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
font-size: 35px;
}
</style>
<canvas id="canvas"></canvas>
<div id="editor"></div>
<button id="runButton">▶️</button>
</body>
<script>
(async () => {
const { setup } = await import("./bundle.js");
setup();
})()
</script>
</html