-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrollbar.html
459 lines (459 loc) · 23.8 KB
/
scrollbar.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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<!DOCTYPE html>
<html lang="en">
<head>
<title>Scrollbar Widget</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<style>
:root {
--black: #000000;
--beige: #d4c9bd;
--white: #ffffff;
--brown: #5a4d46;
--green: #9ba167;
--none: #ffffff00;
}
div.scrollmenu {
background-color: var(--beige);
overflow: auto;
white-space: nowrap;
display: flex;
}
div.card {
min-width: 250px;
display: block;
padding: 20px;
padding-left: 10px;
padding-right: 10px;
margin: 20px;
margin-bottom: 10px;
background: var(--white);
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: var(--green);
}
div.card h1{
text-align: center;
color: var(--brown);
}
div.card img{
height: 300px;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
}
div.button-group {
border-radius: 1px;
border-color: var(--black);
margin: auto;
display: flex;
flex-direction: row;
justify-content: center;
}
div.button-group button{
color: var(--none);
width: 30px;
height: 52px;
cursor: pointer;
}
button.btn-Discovery-Frost {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Discovery%20Frost.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Fusion-Blanc {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Fusion%20Blanc.png?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Fusion-Dove {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Fusion%20Dove.png?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Fusion-Nickel {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Fusion%20Nickel.png?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Galaxy-Cobblestone {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Cobblestone.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Galaxy-Espresso {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Espresso.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Galaxy-Frost {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Frost.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Galaxy-Horizon {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Horizon.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Galaxy-Linen {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Linen.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Galaxy-Nickel {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Nickel.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Hallmark-Frost {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Hallmark%20Frost.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Imperio-Dove {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Imperio%20Dove.png?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Imperio-Nickel {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Imperio%20Nickel.png?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Metro-Frost {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Metro%20Frost.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Metro-Java {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Metro%20Java.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Metro-Mist {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Metro%20Mist.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Nexus-Frost {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Nexus%20Frost.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Nexus-Slate {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Nexus%20Slate.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
:root {
--black: #000000;
--beige: #d4c9bd;
--white: #ffffff;
--brown: #5a4d46;
--green: #9ba167;
--none: #ffffff00;
}
div.scrollmenu {
background-color: var(--beige);
overflow: auto;
white-space: nowrap;
display: flex;
}
div.card {
min-width: 250px;
display: block;
padding: 20px;
padding-left: 10px;
padding-right: 10px;
margin: 20px;
margin-bottom: 10px;
background: var(--white);
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: var(--green);
}
div.card h1{
text-align: center;
color: var(--brown);
}
div.card img{
height: 300px;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
}
div.button-group {
border-radius: 1px;
border-color: var(--black);
margin: auto;
display: flex;
flex-direction: row;
justify-content: center;
}
div.button-group button{
color: var(--none);
width: 30px;
height: 52px;
cursor: pointer;
}
button.btn-Elegant-Dove {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Dove.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Elegant-Espresso {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Espresso.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Elegant-Ocean_Blue {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Ocean_Blue.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Elegant-Smoky_Grey {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Smoky_Grey.png?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Elegant-Stone {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Stone.png?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Elegant-White {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20White.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Fashion-Dove {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20Dove.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Fashion-Ocean_Blue {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20Ocean_Blue.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Fashion-Pearl {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20Pearl.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Fashion-White {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20White.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Harmony-Pearl {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Harmony%20Pearl.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Luxor-Cinnamon {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20Cinnamon.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Luxor-Espresso {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20Espresso.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Luxor-Smoky_Grey {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20Smoky_Grey.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Luxor-White {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20White.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Matrix-Greystone {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Matrix%20Greystone.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Matrix-Silver {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Matrix%20Silver.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Milano-Slate {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Milano%20Slate.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Milano-White {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Milano%20White.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Park_Avenue-Blue {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Park_Avenue%20Blue.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Park_Avenue-White {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Park_Avenue%20White.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
button.btn-Richmond-Stone {
background-image:url('https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Richmond%20Stone.jpg?raw=true');
background-size: 26px;
margin: 2px;
}
</style>
<script>
function changeImage(id, new_image, new_text) {
var img = document.getElementById(id + " img");
img.src=new_image;
document.getElementById(id + " title").innerHTML = new_text;
return false;
}
</script>
<body>
<div class="scrollmenu">
<div class="card">
<h1 id="Fabuwood Discovery title">Discovery Frost</h1>
<img id="Fabuwood Discovery img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Discovery%20Frost.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Discovery-Frost" onclick="changeImage('Fabuwood Discovery', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Discovery%20Frost.jpg?raw=true', 'Discovery Frost');"/>
</div>
</div>
<div class="card">
<h1 id="Fabuwood Fusion title">Fusion Blanc</h1>
<img id="Fabuwood Fusion img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Fusion%20Blanc.png?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Fusion-Blanc" onclick="changeImage('Fabuwood Fusion', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Fusion%20Blanc.png?raw=true', 'Fusion Blanc');"/>
<button class="btn-Fusion-Dove" onclick="changeImage('Fabuwood Fusion', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Fusion%20Dove.png?raw=true', 'Fusion Dove');"/>
<button class="btn-Fusion-Nickel" onclick="changeImage('Fabuwood Fusion', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Fusion%20Nickel.png?raw=true', 'Fusion Nickel');"/>
</div>
</div>
<div class="card">
<h1 id="Fabuwood Galaxy title">Galaxy Cobblestone</h1>
<img id="Fabuwood Galaxy img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Cobblestone.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Galaxy-Cobblestone" onclick="changeImage('Fabuwood Galaxy', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Cobblestone.jpg?raw=true', 'Galaxy Cobblestone');"/>
<button class="btn-Galaxy-Espresso" onclick="changeImage('Fabuwood Galaxy', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Espresso.jpg?raw=true', 'Galaxy Espresso');"/>
<button class="btn-Galaxy-Frost" onclick="changeImage('Fabuwood Galaxy', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Frost.jpg?raw=true', 'Galaxy Frost');"/>
<button class="btn-Galaxy-Horizon" onclick="changeImage('Fabuwood Galaxy', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Horizon.jpg?raw=true', 'Galaxy Horizon');"/>
<button class="btn-Galaxy-Linen" onclick="changeImage('Fabuwood Galaxy', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Linen.jpg?raw=true', 'Galaxy Linen');"/>
<button class="btn-Galaxy-Nickel" onclick="changeImage('Fabuwood Galaxy', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Galaxy%20Nickel.jpg?raw=true', 'Galaxy Nickel');"/>
</div>
</div>
<div class="card">
<h1 id="Fabuwood Hallmark title">Hallmark Frost</h1>
<img id="Fabuwood Hallmark img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Hallmark%20Frost.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Hallmark-Frost" onclick="changeImage('Fabuwood Hallmark', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Hallmark%20Frost.jpg?raw=true', 'Hallmark Frost');"/>
</div>
</div>
<div class="card">
<h1 id="Fabuwood Imperio title">Imperio Dove</h1>
<img id="Fabuwood Imperio img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Imperio%20Dove.png?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Imperio-Dove" onclick="changeImage('Fabuwood Imperio', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Imperio%20Dove.png?raw=true', 'Imperio Dove');"/>
<button class="btn-Imperio-Nickel" onclick="changeImage('Fabuwood Imperio', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Imperio%20Nickel.png?raw=true', 'Imperio Nickel');"/>
</div>
</div>
<div class="card">
<h1 id="Fabuwood Metro title">Metro Frost</h1>
<img id="Fabuwood Metro img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Metro%20Frost.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Metro-Frost" onclick="changeImage('Fabuwood Metro', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Metro%20Frost.jpg?raw=true', 'Metro Frost');"/>
<button class="btn-Metro-Java" onclick="changeImage('Fabuwood Metro', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Metro%20Java.jpg?raw=true', 'Metro Java');"/>
<button class="btn-Metro-Mist" onclick="changeImage('Fabuwood Metro', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Metro%20Mist.jpg?raw=true', 'Metro Mist');"/>
</div>
</div>
<div class="card">
<h1 id="Fabuwood Nexus title">Nexus Frost</h1>
<img id="Fabuwood Nexus img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Nexus%20Frost.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Nexus-Frost" onclick="changeImage('Fabuwood Nexus', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Nexus%20Frost.jpg?raw=true', 'Nexus Frost');"/>
<button class="btn-Nexus-Slate" onclick="changeImage('Fabuwood Nexus', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/Fabuwood/Nexus%20Slate.jpg?raw=true', 'Nexus Slate');"/>
</div>
</div>
</div>
<div class="scrollmenu">
<div class="card">
<h1 id="CNC Elegant title">Elegant Dove</h1>
<img id="CNC Elegant img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Dove.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Elegant-Dove" onclick="changeImage('CNC Elegant', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Dove.jpg?raw=true', 'Elegant Dove');"/>
<button class="btn-Elegant-Espresso" onclick="changeImage('CNC Elegant', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Espresso.jpg?raw=true', 'Elegant Espresso');"/>
<button class="btn-Elegant-Ocean_Blue" onclick="changeImage('CNC Elegant', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Ocean_Blue.jpg?raw=true', 'Elegant Ocean Blue');"/>
<button class="btn-Elegant-Smoky_Grey" onclick="changeImage('CNC Elegant', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Smoky_Grey.png?raw=true', 'Elegant Smoky Grey');"/>
<button class="btn-Elegant-Stone" onclick="changeImage('CNC Elegant', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20Stone.png?raw=true', 'Elegant Stone');"/>
<button class="btn-Elegant-White" onclick="changeImage('CNC Elegant', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Elegant%20White.jpg?raw=true', 'Elegant White');"/>
</div>
</div>
<div class="card">
<h1 id="CNC Fashion title">Fashion Dove</h1>
<img id="CNC Fashion img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20Dove.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Fashion-Dove" onclick="changeImage('CNC Fashion', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20Dove.jpg?raw=true', 'Fashion Dove');"/>
<button class="btn-Fashion-Ocean_Blue" onclick="changeImage('CNC Fashion', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20Ocean_Blue.jpg?raw=true', 'Fashion Ocean Blue');"/>
<button class="btn-Fashion-Pearl" onclick="changeImage('CNC Fashion', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20Pearl.jpg?raw=true', 'Fashion Pearl');"/>
<button class="btn-Fashion-White" onclick="changeImage('CNC Fashion', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Fashion%20White.jpg?raw=true', 'Fashion White');"/>
</div>
</div>
<div class="card">
<h1 id="CNC Harmony title">Harmony Pearl</h1>
<img id="CNC Harmony img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Harmony%20Pearl.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Harmony-Pearl" onclick="changeImage('CNC Harmony', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Harmony%20Pearl.jpg?raw=true', 'Harmony Pearl');"/>
</div>
</div>
<div class="card">
<h1 id="CNC Luxor title">Luxor Cinnamon</h1>
<img id="CNC Luxor img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20Cinnamon.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Luxor-Cinnamon" onclick="changeImage('CNC Luxor', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20Cinnamon.jpg?raw=true', 'Luxor Cinnamon');"/>
<button class="btn-Luxor-Espresso" onclick="changeImage('CNC Luxor', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20Espresso.jpg?raw=true', 'Luxor Espresso');"/>
<button class="btn-Luxor-Smoky_Grey" onclick="changeImage('CNC Luxor', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20Smoky_Grey.jpg?raw=true', 'Luxor Smoky Grey');"/>
<button class="btn-Luxor-White" onclick="changeImage('CNC Luxor', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Luxor%20White.jpg?raw=true', 'Luxor White');"/>
</div>
</div>
<div class="card">
<h1 id="CNC Matrix title">Matrix Greystone</h1>
<img id="CNC Matrix img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Matrix%20Greystone.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Matrix-Greystone" onclick="changeImage('CNC Matrix', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Matrix%20Greystone.jpg?raw=true', 'Matrix Greystone');"/>
<button class="btn-Matrix-Silver" onclick="changeImage('CNC Matrix', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Matrix%20Silver.jpg?raw=true', 'Matrix Silver');"/>
</div>
</div>
<div class="card">
<h1 id="CNC Milano title">Milano Slate</h1>
<img id="CNC Milano img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Milano%20Slate.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Milano-Slate" onclick="changeImage('CNC Milano', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Milano%20Slate.jpg?raw=true', 'Milano Slate');"/>
<button class="btn-Milano-White" onclick="changeImage('CNC Milano', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Milano%20White.jpg?raw=true', 'Milano White');"/>
</div>
</div>
<div class="card">
<h1 id="CNC Park_Avenue title">Park Avenue Blue</h1>
<img id="CNC Park_Avenue img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Park_Avenue%20Blue.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Park_Avenue-Blue" onclick="changeImage('CNC Park_Avenue', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Park_Avenue%20Blue.jpg?raw=true', 'Park Avenue Blue');"/>
<button class="btn-Park_Avenue-White" onclick="changeImage('CNC Park_Avenue', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Park_Avenue%20White.jpg?raw=true', 'Park Avenue White');"/>
</div>
</div>
<div class="card">
<h1 id="CNC Richmond title">Richmond Stone</h1>
<img id="CNC Richmond img" src="https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Richmond%20Stone.jpg?raw=true" alt="Image Unavailable">
<div class="button-group">
<button class="btn-Richmond-Stone" onclick="changeImage('CNC Richmond', 'https://github.com/NathanaelOliver/Chuckles/blob/main/Cabinets/CNC/Richmond%20Stone.jpg?raw=true', 'Richmond Stone');"/>
</div>
</div>
</div>
</body>
</html>