-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (57 loc) · 1.93 KB
/
index.html
File metadata and controls
62 lines (57 loc) · 1.93 KB
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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Stylings -->
<link rel="stylesheet" href="css/app.css" />
<title>Organogram</title>
</head>
<body>
<div data-el-clone="root" class="container root">
<!-- Root element -->
<div class="box">
<div class="box-content">
<input type="text" value="Categories" placeholder="Category Name" />
</div>
<!-- Action buttons -->
<div class="btn-modify btn-wrapper">
<button data-el-add="root" class="bg-green">
<span class="icon icon-plus"></span>
</button>
<button data-el-edit="root" class="bg-blue">
<span class="icon icon-edit"></span>
</button>
<button data-el-delete="root" class="bg-red">
<span class="icon icon-delete"></span>
</button>
</div>
<!-- Confirmation buttons -->
<div class="btn-confirmation btn-wrapper d-none">
<button data-el-confirm="root" class="bg-green">
<span class="icon icon-confirm"></span>
</button>
<button data-el-close="root" class="bg-red">
<span class="icon icon-close"></span>
</button>
</div>
</div>
<!-- Levels container -->
<ul class="level-wrapper" data-el-container="root"></ul>
</div>
<!-- Zoom-in and zoom-out buttons -->
<div class="btn-zoom btn-wrapper">
<button data-zoom-out="root">
<span class="icon icon-zoom-out"></span>
</button>
<h4 data-zoom-result="root">100%</h4>
<button data-zoom-in="root">
<span class="icon icon-zoom-in"></span>
</button>
</div>
<!-- Scripts -->
<script src="js/functions.js"></script>
<script src="js/app.js"></script>
</body>
</html>