-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
69 lines (63 loc) · 1.21 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
<!doctype html>
<head>
<meta charset="utf-8" />
</head>
<body>
<style>
html, body {
overflow: hidden;
}
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: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
image-rendering: pixelated
}
.ͼ1 .cm-content {
font-size: 55px;
}
.ͼo {
background-color: #2e344033;
}
.ͼo .cm-activeLine {
background-color: #4c566a33;
}
#runButton {
position: absolute;
top: 0;
right: 0;
margin: 20px;
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
font-size: 35px;
}
</style>
<meta charset=utf8>
<canvas id="canvas"></canvas>
<div id="editor"></div>
<button id="runButton">▶️</button>
<script src="bundle.js"></script>
</body>