-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
47 lines (44 loc) · 837 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
<!DOCTYPE html>
<html>
<head>
<title>Monaco Vim</title>
<style type="text/css">
html, body, .container {
width: 100%;
height: 100%;
}
.container {
display: flex;
}
.container > div {
width: 100%;
height: 100%;
}
.editor {
width: 100%;
min-height: 600px;
}
#status {
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
#status input {
outline: none;
border: none;
background: transparent;
}
</style>
</head>
<body>
<div class="container">
<div>
<div class="editor" id="editor1"></div>
<div class="status" id="status1"></div>
</div>
<div>
<div class="editor" id="editor2"></div>
<div class="status" id="status2"></div>
</div>
</div>
</body>
</html>