-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (95 loc) · 2.73 KB
/
index.html
File metadata and controls
100 lines (95 loc) · 2.73 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bar-Wizard</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<aside class="left toolbar">
<section data-step="glasses">
<h3>Glasses</h3>
<div class="shelf">
<figure>
<img src="glasses/collins.svg" />
<figcaption>Collins</figcaption>
</figure>
<figure>
<img src="glasses/tumbler.svg" />
<figcaption>Tumbler</figcaption>
</figure>
</div>
</section>
<section data-step="mixers">
<h3>Mixers</h3>
<div class="shelf">
<figure>
<img src="bottles/champagne.svg" />
<figcaption>Champagne</figcaption>
</figure>
<figure>
<img src="bottles/gin.svg" />
<figcaption>Gin</figcaption>
</figure>
</div>
</section>
<section data-step="details">
<h3>Details</h3>
<div class="shelf">
<figure>
<img src="details/ice-cube.svg" />
<figcaption>Ice Cube</figcaption>
</figure>
<figure>
<img src="details/cherry.svg" />
<figcaption>Cherry</figcaption>
</figure>
</div>
</section>
</aside>
<main>
<div id="pages">
<section class="glasses page" data-step="glasses">
<h2>Glass</h2>
<div id="canvas"></div>
</section>
<section class="mixers page right" data-step="mixers">
<h2>Mixers</h2>
</section>
<section class="details page right" data-step="details">
<h2>Details</h2>
</section>
</div>
</main>
<aside class="right toolbar">
<section data-step="glasses"> </section>
<section data-step="mixers">
<h3>Recipe</h3>
<form
name="recipe"
style="
display: grid;
column-gap: 1mm;
row-gap: 5mm;
grid-template-columns: 3fr 1fr;
grid-auto-rows: 1fr;
"
>
<input type="number" min="0" name="qty" />
<select name="units" value="oz">
<option value="parts">parts</option>
<option value="oz">oz</option>
<option value="ml">ml</option>
</select>
<input type="text" name="name" /><input type="color" name="fill" />
</form>
</section>
<section data-step="details">
<h3>Instructions</h3>
</section>
</aside>
<script src="modules/snap.svg.js"></script>
<script src="modules/wizard.js"></script>
</body>
</html>