-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
426 lines (422 loc) · 11.5 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cocktail Grid</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Ico's Super Sweet 36teen</h1>
<input type="text" id="search-box" placeholder="Search cocktails..." />
<div class="glass-line">
<div class="margarita-glass">
<div class="glass">
<div class="bowl"></div>
<div class="stem"></div>
<div class="base"></div>
<div class="drink"></div>
</div>
<span class="glass-label">Margarita</span>
</div>
<div class="coupe-glass">
<div class="glass">
<div class="bowl"></div>
<div class="stem"></div>
<div class="drink"></div>
<div class="base"></div>
</div>
<span class="glass-label">Coupe</span>
</div>
<div class="old-fashioned-glass">
<div class="glass">
<div class="drink"></div>
</div>
<span class="glass-label">Old-Fashioned</span>
</div>
<div class="martini-glass">
<div class="glass">
<div class="bowl"></div>
<div class="stem"></div>
<div class="base"></div>
<div class="drink"></div>
</div>
<span class="glass-label">Martini</span>
</div>
<!-- <div class="tiki-glass">
<div class="glass">
<div class="drink"></div>
</div>
<span class="glass-label">Tiki</span>
</div> -->
<div class="highball-glass">
<div class="glass">
<div class="drink"></div>
</div>
<span class="glass-label">Highball</span>
</div>
<!-- <div class="hurricane-glass">
<div class="glass">
<div class="drink"></div>
</div>
<span class="glass-label">Hurricane</span>
</div> -->
<div class="wine-glass">
<div class="glass">
<div class="bowl"></div>
<div class="stem"></div>
<div class="base"></div>
<div class="drink"></div>
</div>
<span class="glass-label">Wine</span>
</div>
<!-- <div class="julep-cup-glass">
<div class="glass">
<div class="drink"></div>
</div>
<span class="glass-label">Julep Cup</span>
</div>
<div class="irish-coffee-glass">
<div class="glass">
<div class="drink"></div>
<div class="cream"></div>
</div>
<span class="glass-label">Irish Coffee</span>
</div> -->
<div class="champagne-flute-glass">
<div class="glass">
<div class="bowl"></div>
<div class="stem"></div>
<div class="base"></div>
<div class="drink"></div>
</div>
<span class="glass-label">Flute</span>
</div>
</div>
<div class="cocktail-grid" id="cocktail-grid"></div>
<script src="search-box.js"></script>
<script id="cocktails-data" type="application/json">
[
{
"name": "Margarita",
"glass": "Margarita glass",
"ingredients": [
"60 ml Tequila (Blanco)",
"30 ml Cointreau",
"20 ml Lime juice",
"15 ml simple sytup"
],
"method": "Shake with ice and strain into a salt-rimmed glass.",
"color": "#d9e76c"
},
{
"name": "Whiskey Sour",
"glass": "Old-fashioned glass",
"ingredients": [
"60 ml Bourbon",
"25 ml Lemon Juice",
"15 ml Simple Syrup",
"1 Dash bitters",
"1 (15ml) Egg White"
],
"method": "Shake dry, then shake with ice, strain into ice-filled old-fashioned glass. Garnish with skewered orange peel and cherry.",
"color": "#FFD700"
},
{
"name": "Old Fashioned",
"glass": "Old-fashioned glass",
"ingredients": [
"60 ml Bourbon",
"4 dashes Bitters",
"1 Sugar Cube",
"1 Large Ice Cube",
"1 Orange Peel"
],
"method": "Muddle sugar cubewith 4 dashes of bitters. Add large ice cube and bourbon. Stir, flame orange zest, wipe on rim and drop in.",
"color": "#8B4513"
},
{
"name": "Kentucky Maid",
"glass": "Old-fashioned glass",
"ingredients": [
"60 ml Bourbon Whiskey",
"30 ml Lime Juice",
"20 ml Simple Syrup",
"3 Mint Leaves",
"2 Cucumber Slices"
],
"method": "Muddle mint leaves and cucumber slices with simple syrup. Add bourbon and lime juice, shake with ice, strain into ice-filled old-fashioned glass. Garnish with mint sprig.",
"color": "#8B4513"
},
{
"name": "Mint Julep",
"glass": "Old-fashioned cup",
"ingredients": [
"75 ml Bourbon Whiskey",
"15 ml Simple Syrup",
"8 Mint Leaves"
],
"method": "Muddle mint leaves with simple syrup right into the glass. Add bourbon, fill with crushed ice, stir until cup is frosted. Garnish with mint sprig. Serve with straw",
"color": "#8B4513"
},
{
"name": "Brown Derby",
"glass": "Coupe glass",
"ingredients": [
"60 ml Bourbon Whiskey",
"30 ml Grapefruit Juice",
"25 ml Honey Syrup"
],
"method": "Shake with ice, strain into chilled coupe glass. Garnish with grapefruit twist.",
"color": "#FFD700"
},
{
"name": "Whiskey Smash",
"glass": "Old-fashioned glass",
"ingredients": [
"3-4 mint leaves",
"Half a lemon (quartered)",
"60 ml Bourbon Whiskey",
"22.5 ml Simple Syrup"
],
"method": "Muddle mint leaves and lemon quarters with simple syrup. Add bourbon, shake with ice, strain into ice-filled old-fashioned glass. Garnish with mint sprig.",
"color": "#8B4513"
},
{
"name": "Paloma",
"glass": "Highball glass",
"ingredients": [
"60 ml Tequila (Blanco)",
"25 ml Grapefruit Juice",
"10 ml Agave Syrup",
"15 ml Lime Juice",
"50 ml Grapefruit soda"
],
"method": "Short Shake with ice, serve in ice-filled highball glass, add grapefruit soda.",
"color": "#f2f2f2"
},
{
"name": "Caprioska",
"glass": "Old-fashioned glass",
"ingredients": [
"60 ml Vodka",
"1/2 - 1 Lime",
"1 Teaspoon Sugar"
],
"method": "Muddle lime wedges and sugar, add crushed ice, add vodka, stir",
"color": "#f2f2f2"
},
{
"name": "Pineapple Martini",
"glass": "Martini glass",
"ingredients": [
"45 ml Vodka",
"30 ml Pineapple Juice",
"15 ml Lime Juice",
"10 ml Simple Syrup"
],
"method": "Shake with ice, strain into chilled martini glass",
"color": "#f2f2f2"
},
{
"name": "Grapefruit Cooler",
"glass": "Coupe glass",
"ingredients": [
"60 ml Vodka",
"1 Grapefruit peel",
"1 Spring of mint",
"30 ml Grapefruit Juice",
"20 ml Lemon Juice",
"15 ml Simple Syrup (Or Grapefruit syrup",
"10ml Honey Syrup",
"1 Dash Angostura Bitters",
"1 Dash Peychaud's Bitters"
],
"method": "Add ALL, shake with ice, double-strain into chilled coupe glass",
"color": "#f2f2f2"
},
{
"name": "Seabreeze",
"glass": "Highball glass",
"ingredients": [
"60 ml Vodka",
"90 ml Cranberry Juice",
"60 ml Grapefruit Juice"
],
"method": "Build in ice-filled highball glass, stir gently, garnish with grapefruit",
"color": "#f2f2f2"
},
{
"name": "Sunset Vibes",
"glass": "Highball glass",
"ingredients": [
"45 ml Vodka",
"45 ml Grapefruit Juice",
"30 ml Aperol",
"45 ml Tonic Water",
"5 ml Grenadine"
],
"method": "Build in ice-filled highball glass with ice spear, stir gently, add Tonic water, pour grenadine with spoon over side",
"color": "#f2f2f2"
},
{
"name": "Martini",
"glass": "Martini glass",
"ingredients": [
"75 ml Gin",
"15 ml Dry Vermouth",
"1 Dash orange bitters",
"3 Olives"
],
"method": "Stir with ice for 30-40 sec, strain into martini glass. Garnish with 3 olives",
"color": "#000000"
},
{
"name": "Dead Man's Handle",
"glass": "Old-fashioned glass",
"ingredients": [
"45 ml Tequila",
"25 ml Aperol",
"15 ml Orgeat",
"15 mil Lime Juice"
],
"method": "Shake with ice, strain into (Crushed) ice-filled old-fashioned glass. Garnish Targine, or chili flakes. Use straw.",
"color": "#f2f2f2"
},
{
"name": "Perfect Martini",
"glass": "Martini glass",
"ingredients": [
"45ml Gin",
"20 ml Dry Vermouth",
"20 ml Sweet Vermouth",
"1 Dash Orange Bitters",
"1 Lemon twist"
],
"method": "Stir with ice for 30-40 sec, strain into chilled martini glass. garnish with twist of lemon - squeeze, rim, drop.",
"color": "#000000"
},
{
"name": "Aperol Spritz",
"glass": "Wine glass",
"ingredients": [
"75 ml Prosecco",
"50 ml Aperol",
"20 ml Soda Water",
"1 Orange Wheel"
],
"method": "Fill glass with ice, add everything and stir gently.",
"color": "#FF7F50"
},
{
"name": "Cosmopolitan",
"glass": "Coupe glass",
"ingredients": [
"60 ml Vodka (Absolut citron)",
"30 ml Cointreau",
"30 ml Lime Juice",
"30 ml Cranberry Juice"
],
"method": "Shake with ice, strain into chilled coupe glass. Garnish with lime twist.",
"color": "#FF69B4"
},
{
"name": "Espresso & Cream Martini",
"glass": "Coupe glass",
"ingredients": [
"50 ml Vodka",
"20 ml Coffee & Cream Liqueur",
"40 ml Espresso"
],
"method": "Shake with ice, strain into chilled coupe glass. Garnish with coffee beans.",
"color": "#000000"
},
{
"name": "Aperol Negroni",
"glass": "Old-fashioned glass",
"ingredients": [
"30 ml Gin",
"30 ml Aperol",
"30 ml Sweet Vermouth",
"1 Dash Orange Bitters",
"1 Orange Peel"
],
"method": "Stir with ice for 30-40 sec, strain into ice-filled old-fashioned glass. Garnish with orange twist.",
"color": "#FF4500"
},
{
"name": "Gold Rush",
"glass": "Old-fashioned glass",
"ingredients": [
"60 ml Bourbon",
"20 ml Lemon Juice",
"20 ml Honey Syrup (3:1)"
],
"method": "Shake with ice, strain into ice-filled old-fashioned glass.",
"color": "#8B4513"
},
{
"name": "Scofflaw",
"glass": "Coupe glass",
"ingredients": [
"45 ml Rye Whiskey",
"30 ml Dry Vermouth",
"20 ml Lemon Juice",
"20 ml Grenadine",
"2 Dashes Orange Bitters"
],
"method": "Shake with ice, strain into chilled coupe glass.",
"color": "#FFD700"
},
{
"name": "Mexican Firing Squad",
"glass": "Old-fashioned glass",
"ingredients": [
"60 ml Tequila (Blanco)",
"20 ml Lime Juice",
"20 ml Grenadine",
"2 Dashes Bitters"
],
"method": "Shake with ice, strain into ice-filled old-fashioned glass.",
"color": "#8B4513"
},
{
"name": "Sidecar",
"glass": "Coupe glass",
"ingredients": [
"60 ml Cognac",
"30 ml Cointreau",
"20 ml Lemon Juice"
],
"method": "Shake with ice, strain into chilled coupe glass. Garnish with lemon twist.",
"color": "#FFD700"
},
{
"name": "Japaneze Cocktail",
"glass": "Coupe glass",
"ingredients": [
"60 ml Brandy",
"20 ml Lemon Juice",
"20 ml Orgeat Syrup",
"3 Dashes Bitters"
],
"method": "Shake with ice, strain into chilled coupe glass. Garnish with lemon twist.",
"color": "#FFD700"
},
{
"name": "Manhattan",
"glass": "Coupe glass",
"ingredients": [
"60 ml Rye Whiskey",
"30 ml Sweet Vermouth",
"2 Dashes Bitters",
"1 Cherry"
],
"method": "Stir with ice for 30-40 sec, strain into chilled coupe glass. Garnish with cherry.",
"color": "#8B4513"
}
]
</script>
<script src="render-script.js"></script>
</body>
</html>