-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (57 loc) · 2.68 KB
/
index.html
File metadata and controls
60 lines (57 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Marked!</title>
</head>
<body>
<div id="app">
<div id="loadingApp" class="center">Loading...</div>
<div id="labelApp" style="display:none;">
<div id="controlContainer">
<div style="display:flex;">
<div id="bannerText">Marked!</div>
<div id="patreonContainer"></div>
</div>
<div id="buttonLabels">
<div class="nameGroup center">
<label for="gr1n">Group #1</label><br>
<input type="text" id="gr1n" name="gr1n" maxlength="15" size="10">
</div>
<div class="nameGroup center">
<label for="gr2n">Group #2</label><br>
<input type="text" id="gr2n" name="gr2n" maxlength="15" size="10">
</div>
<div class="nameGroup center">
<label for="gr3n">Group #3</label><br>
<input type="text" id="gr3n" name="gr3n" maxlength="15" size="10">
</div>
</div>
<div id="mainButtonsGroup" class="center">
<label id="tip_textsize" for="distance"><embed class="menu-svg" src="/text.svg" /> </label><input type="number" id="distance" name="distance">
<label id="tip_opacity" for="opacity"><embed class="menu-svg" src="/opacity.svg" /> </label><input type="number" id="opacity" name="opacity">
<label id="tip_stroke" for="stroke"><embed class="menu-svg" src="/stroke.svg" /> </label><input type="number" id="stroke" name="stroke">
<div id="mainButtons"></div>
</div>
</div>
<div id="tableContainer">
<table id="table-one" style="width:100%">
<thead>
<tr id="tableHeader">
<th style="width: 5%">🔛</th>
<th id="labelSort" style="width: 55%">Label Name</th>
<th style="width: 10%">Group</th>
<th style="width: 20%">Direction</th>
<th style="width: 5%">🖍️</th>
<th style="width: 5%">#️⃣</th>
</tr>
</thead>
<tbody id="label-list"></tbody>
</table>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>