-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bartender.html
94 lines (70 loc) · 2.75 KB
/
Bartender.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="CSS.css">
</head>
<body>
<title>Bartender</title>
<h1>Bartender</h1>
<h3 id="dayTimeBox"><span id="dayOfWeekBox"></span> <span id="clockBox"></span></h3>
<div id="dateBox"><strong>Day:</strong> <span id="dayBox"></span> <strong>Month:</strong> <span id="monthBox"></span> <strong>Year:</strong> <span id="yearBox"></span></div>
<div id="messageBox"></div>
<div id="propertyTaxBox"><button id="propertyTaxButton"></button></div>
<div id="goldBox"><strong>Gold:</strong> $<span id="goldBalance"></span></div>
<div class="flex-container" id="gameContentArea">
<div class="border item">
<h3>Behind the Bar</h3>
<h4>Buy Ingredients</h4>
<ul>
<li><button id="hops">Hops ($<span id="hopsValue"></span>)</button><button id="5xHops">x5</button></li>
<li><button id="yeast">Yeast ($<span id="yeastValue"></span>)</button><button id="5xYeast">x5</button></li>
<li><button id="honey">Honey ($<span id="honeyValue"></span>)</button><button id="5xHoney">x5</button></li>
</ul>
<h4>Craft Drinks</h4>
<button id="ale">Craft Ale</button>
<button id="mead">Craft Mead</button>
</div>
<div class="border item">
<h3>Front of the Bar</h3>
<div id="frontOfBarArea">
<h4>Table 1</h4>
<button id="customer1Button">
<span class="redDot">●</span> <span id="customer1Name"></span> (Order: <span id="customer1Order"></span>)
</button>
<button id="customer2Button">
<span class="greenDot">●</span> <span id="customer2Name"></span> (Order: <span id="customer2Order"></span>)
</button></br>
<h4>Table 2</h4>
<button id="customer3Button">
<span class="yellowDot">●</span> <span id="customer3Name"></span> (Order: <span id="customer3Order"></span>)
</button>
<button id="customer4Button">
<span class="blueDot">●</span> <span id="customer4Name"></span> (Order: <span id="customer4Order"></span>)
</button>
</div>
</div>
<div class="border item">
<h3>Storage</h3>
<h4>Ingredients</h4>
<div>Hops: <span id="hopsStock"></span></div>
<div>Yeast: <span id="yeastStock"></span></div>
<div>Honey: <span id="honeyStock"></span></div>
<h4>Drinks</h4>
<div>Ale: <span id="aleStock"></span></div>
<div>Mead: <span id="meadStock"></span></div>
<div><span id="inventory"></span></div>
<h4>Recipes</h4>
<div>No recipes learned.</div>
</div>
</div>
<div class="flex-container">
<div class="border item">
<a href="BartenderLandingPage.html"><button id="startOverButton">Start Over</button></a>
</div>
</div>
<script src="Javascript.js"></script>
</body>
<footer>
Copyright © Apartment Dev 2020, All Rights Reserved
</footer>
</html>