-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
27 lines (26 loc) · 1.04 KB
/
game.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VScode</title>
</head>
<body class="w-full h-full absolute">
<div class="w-full h-full flex flex-col">
<div class="w-full min-h-min p-4 bg-ctp-crust border-b-2 border-b-ctp-overlay0 flex flex-row justify-center">
<p class ="text-ctp-text py-2 font-mono inline mr-auto">VScode</p>
<div class = "px-2 py-1 text-lg text-ctp-text border-2 border-ctp-red font-mono rounded-md ">
0:03
</div>
</div>
<div class="w-full h-full bg-zinc-800 flex flex-col md:flex-row ">
<div id="editor-1" class="w-full h-full overflow-auto md:border-r-2 border-ctp-overlay0 md:border-b-0 border-b-2">
</div>
<div id="editor-2" class = "w-full h-full overflow-auto">
</div>
</div>
</div>
<script type="module" src="/src/game.ts"></script>
</body>
</html>