-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 1.57 KB
/
Copy pathindex.html
File metadata and controls
61 lines (61 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>quick stack</title>
<link rel="stylesheet" href="css/style.css" charset="utf-8">
<script data-main="app" src="vendor/require.js"></script>
</head>
<body>
<div id="sidebar">
<div id="logo">
<span>Quick Stack</span>
</div>
<div id="vinyl-width-control">
<div>
<span>vinyl width</span>
</div>
<input id="vinyl-width" type="text" value="100">
</div>
<div id="element-label">
<span>Elements</span>
</div>
<div id="elements"></div>
<div id="sb-buttons">
<div id="add" class="btn">
<span>+</span>
</div>
<div id="test" class="btn">
<span>next</span>
</div>
<div id="stack" class="btn">
<span>stack</span>
</div>
</div>
</div>
<div id="vinyl-container">
<div class="out">
<div class="inn">
<div class="vinyl-background">
<svg id="vinyl" xmlns="http://www.w3.org/2000/svg" width="300"></svg>
</div>
</div>
</div>
</div>
<div id="rsb">
<svg id="rsb-set" xmlns="http://www.w3.org/2000/svg"></svg>
</div>
<div class="curtain" style="display: none">
<div id="row-pattern">
<div class="outer-num">
<div class="inner-num"></div>
</div>
<input type="text" name="width">
<div class="delimiter">
<span>×</soan>
</div>
<input type="text" name="height">
</div>
</div>
</body>
</html>