This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<title>Enjhin editor</title>
<link href="./output.css" rel="stylesheet">
</head>
<body class="text-[#d3d3d3] bg-[#161718]">
<div class="flex flex-col gap-2 p-3">
<main class="flex gap-2">
<div class="flex flex-col gap-2">
<nav class="p-1 flex justify-between border-default">
<menu class="flex gap-2 list-none">
<li><button class="px-1 py-0.5" id="mode-select">Select</button></li>
<li><button class="px-1 py-0.5" id="mode-insert">Insert</button></li>
<li><button class="px-1 py-0.5" id="mode-move">Move</button>
<li><button class="px-1 py-0.5" id="mode-connect">Connect</button>
<li><button class="px-1 py-0.5" id="mode-delete">Delete</button>
</li>
</menu>
<button class="px-2 py-0" id="export">Export</button>
</nav>
<canvas role="button" tabindex="0" class="border-default" id="enjhin-editor"></canvas>
</div>
<aside class="grow flex flex-col gap-2">
<nav class="p-1 flex justify-between border-default">
<menu class="flex gap-2 list-none">
<li>
<button class="px-1 py-0.5" id="new-body">New body</button>
</li>
<li><button class="px-1 py-0.5" id="btn">btn</button></li>
</menu>
<button class="px-1 py-0.5" id="delete-body">Delete</button>
</nav>
<nav class="flex-1 border-default">
<menu class="flex-1 list-none" id="list-view">
</menu>
</nav>
</aside>
</main>
</div>
<noscript>You will need javascript enabled to use this</noscript>
</body>
</html>