-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1022 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
49
50
51
52
53
<html><head><style>
@font-face {
font-family: "FiraCode";
src: url("font.ttf") format("truetype");
}
body {
font-family: "FiraCode", monospace;
}
body, #content {
padding: 0;
margin: 0;
}
body, #input {
font-size: 12px;
}
#content {
overflow-y: scroll;
padding-left: 0.5em;
}
#input {
font-family: "FiraCode", monospace;
width: 100%;
border: 0;
outline: 0;
background-color: #dddddd;
}
.line {
padding-top: 1px;
padding-bottom: 1px;
}
.output {
background-color: #eeeeee;
margin: 0;
font-family: "FiraCode", monospace;
word-wrap: break-word;
overflow-wrap: break-word;
white-space: pre-wrap;
}
.output.error {
color: red;
}
#input:disabled {
background-color: white;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
</head><body>
<div id='content'>
<input id='input' autocomplete='off'></input>
</div>
<script src='bundle.js'></script>
</body>
</html>