-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Lox.ts Web</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<style>
body {
margin: 0;
padding: 0;
overflow: none;
}
.border {
border-style: solid;
border-color: black;
border-width: 1px;
border-radius: 3px;
}
</style>
<nav>
<button id="run">Run</button>
<button id="clear">Clear</button>
<!--<button id="open-repl">REPL</button>-->
</nav>
<div id="container" style="display: flex; flex-direction: row;
align-items: stretch; width: 100vw; height: 90vh;">
<textarea id="code-pane" style="resize: none; width: 50vw;"></textarea>
<div class="border" id="output-pane" style="width: 50vw; padding: 5px;"></div>
</div>
<script src="./index.bundle.js"></script>
</body>
</html>