-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (102 loc) · 3.66 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<title>MapGTEditor</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./main.css">
<script src="https://kit.fontawesome.com/cd04d1b879.js" crossorigin="anonymous"></script>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div class="header">
MapGT Editor
</div>
<div class="border"></div>
<div class="view-info">
<div id="view-details">
<select name="" id="view-details-dropdown">
<option value="">No view</option>
</select>
</div>
<div class="view-extra">
</div>
</div>
<div id="editor">
<div id="tools" class="tools">
</div>
<div id="canvas-container"></div>
<div id="side-bar">
<div id="details">
<div class="details-header">
Details
</div>
<table>
<tbody>
<tr>
<td class="table-header">
tag
</td>
<td id="shape-name">
</td>
</tr>
<tr>
<td class="table-header">
id
</td>
<td>
<input id="shape-id" type="text"></input>
</td>
</tr>
<tr>
<td class="table-header">
class
</td>
<td>
<input id="shape-class" type="text"></input>
</td>
</tr>
</tbody>
</table>
</div>
<div id="styling">
<div class="details-header">
Styling
</div>
<table>
<tbody>
<tr>
<td class="table-header">
fill
</td>
<td>
<input id="shape-fill" type="text"></input>
</td>
</tr>
<tr>
<td class="table-header">
stroke-width
</td>
<td>
<input id="shape-stroke-width"
type="number"
max="50"
min="1"
step="1"
></input>
</td>
</tr>
</tbody>
</table>
</div>
<button id="update-shape" style="width: 70px; border-radius: 10%">Update</button>
</div>
</div>
<div class="footer">
Made with 🤓 by <a href="https://hack.gt" target="_blank">HackGT</a> ™
</div>
<script src="dist/bundle.js"></script>
</body>
</html>