-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
57 lines (56 loc) · 3.25 KB
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" />
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css" />
<script src="https://kit.fontawesome.com/6d4035b361.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Edu+QLD+Beginner&family=Lobster+Two:ital,wght@1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/options.css">
<title>Shaken Or Stirred</title>
</head>
<body>
<div class="row center-align">
<h2>What drink can we start mixing for you?</h2>
</div>
<div class="row center-align">
<div class="center justify-center">
<div class="col s3 be-centered">
<h4>What is the Vibe for the Night?</h4>
<div id="first">
<button class="waves-effect waves-teal btn-flat" id="classic-btn">Classy Evening <i class="fa-solid fa-wine-bottle"></i></button>
<button class="waves-effect waves-teal btn-flat" id="shake-btn">Cool Drink for a Hot Night <i class="fa-solid fa-beer-mug-empty"></i></button>
<button class="waves-effect waves-teal btn-flat" id="party-btn">Party Time <i class="fa-solid fa-champagne-glasses"></i></button>
<button class="waves-effect waves-teal btn-flat" id="nonAlc-btn">Relaxed Night (Non-Alc) <i class="fa-solid fa-mug-hot"></i></button>
</div>
</div>
<div class="col s3 be-centered" >
<h4>Or Is There Something Special You'd Like to Stir in?</h4>
<div id="display">
<button class="waves-effect waves-teal btn-flat" id="whiskey-btn">Whiskey <i class="fa-solid fa-whiskey-glass"></i></button>
<button class="waves-effect waves-teal btn-flat" id="tequila-btn">Tequila <i class="fa-solid fa-bottle-droplet"></i></button>
<button class="waves-effect waves-teal btn-flat" id="vodka-btn">Vodka <i class="fa-solid fa-martini-glass"></i></button>
<button class="waves-effect waves-teal btn-flat" id="scotch-btn">Scotch <i class="fa-solid fa-whiskey-glass"></i></button>
</div>
</div>
<div class="col s3 be-centered">
<h4>Or is it Bartender's Choice? Let's...</h4>
<div id="last">
<button class="waves-effect waves-teal btn-flat" id="21random">Shake It Up!<i class="fa-solid fa-shuffle"></i></button>
</div>
</div>
</div>
</div>
<footer>
<div class="foot-box">
<img id="logo" src="assets/images/Shaken or Stirred Logo Blank BG.png"></img>
</div>
</footer>
<script src="assets/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>