-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
155 lines (151 loc) · 5.38 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
<!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="./css/style.css" />
<script src="./scripts/index.js" type="module"></script>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images//favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/images//favicon-16x16.png"
/>
<title>House of Burgundy</title>
</head>
<body>
<div id="top-bar">
<img id="github-link" src="./assets/images/github.png" alt="github link">
<img id="linkedin-link" src="./assets/images/linkedin.png" alt="linkedin link">
</div>
<div id="game-container">
<div id="left-panel">
<div id="logo"></div>
<div id="timer"><span>15:00</span></div>
<div id="buttons">
<div class="hover" id="music-btn"></div>
<div class="hover" id="restart-btn"></div>
<div class="hover" id="info-btn"></div>
</div>
<div id="status">
<div id="post"></div>
<div id="output">
<p></p>
<p></p>
</div>
</div>
<div class="hover" id="answer"><span>Of course</span></div>
</div>
<div id="main-panel">
<div id="location"></div>
<div id="info-panel"></div>
<div id="character"></div>
<div id="apero">
<div id="apero-crowd"></div>
<div id="you-win">
<p>YOU WIN</p>
<p>Let's rave now</p>
</div>
</div>
<div id="unga-unga-form">
<input type="text" id="magical-formula" name="magical-formula" />
</div>
<div id="add-inventory">
<div id="item-title"><span></span></div>
<div id="new-item"></div>
<div class="hover" id="add-btn"></div>
</div>
<div class="hover glow" id="castle"></div>
<div class="hover glow" id="lavoir"></div>
<div class="hover glow" id="church"></div>
<div class="hover glow" id="well"></div>
<div class="hover glow" id="bins"></div>
<div class="hover glow" id="bus-stop"></div>
<div class="hover glow" id="sam-house"></div>
<div class="hover glow" id="emily-house"></div>
<div class="hover glow" id="town-hall"></div>
<div class="hover glow" id="tree"></div>
<div class="hover glow" id="island"></div>
<div class="hover glow" id="antenna"></div>
<div class="hover glow" id="vegetable-garden"></div>
<div class="hover glow" id="farm"></div>
<div class="hover glow" id="cat"></div>
<div class="hover glow" id="goat"></div>
<div class="hover glow" id="sparrow"></div>
<div class="item" id="church-wall"></div>
<div class="hover glow" id="twins"></div>
<div class="hover glow" id="back-to-map">
<div id="map-button"></div>
<div id="back-button"></div>
</div>
<div class="item glow" id="wine"></div>
<div class="item glow" id="no-item"></div>
<div class="item glow" id="pumpkin"></div>
<div class="item glow" id="redcurrants"></div>
<div class="item glow" id="core"></div>
<div class="item glow" id="blackberries"></div>
<div class="item glow" id="axe"></div>
<div class="item glow" id="cheese"></div>
<div class="item glow" id="gold"></div>
<div class="item glow" id="gourdin"></div>
<div class="item glow" id="hammer"></div>
<div class="item glow" id="honey"></div>
<div class="item glow" id="key"></div>
<div class="item glow" id="leaf"></div>
<div class="item glow" id="potion"></div>
<div class="item glow" id="rake"></div>
<div class="item glow" id="ruby"></div>
<div class="item glow" id="scroll"></div>
<div class="item glow" id="wrench"></div>
</div>
<div id="right-panel">
<div id="inventory-title"></div>
<div id="inventory">
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
<div class="inventory-spot hover">
<div class="inventory-item"></div>
</div>
</div>
</div>
</div>
<div id="bottom-bar"></div>
</body>
</html>