-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (48 loc) · 1011 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Moon Lander</title>
<style>
body {
margin: 0;
height: 100vh;
width: 100vw;
}
iframe {
border: none;
}
textarea {
width: 100%;
height: 90%;
}
#game-container {
height: 100%;
width: 50%;
float: left;
}
#editor-container {
height: 100%;
width: 50%;
float: left;
}
.clear {
clear: both;
}
#editor {
width: 100%;
height: 90%;
}
</style>
<script src="./node_modules/monaco-editor/min/vs/loader.js"></script>
</head>
<body>
<div id="game-container">
</div>
<div id="editor-container">
<div id="editor"></div>
<button id="run" type="button">RUN</button>
</div>
<div class="clear"></div>
<script src="./src/editor.js" type="module"></script>
</body>
</html>