generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
204 lines (202 loc) · 6.81 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
<!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" />
<meta
name="description"
content="A Top Trumps-style card game featuring the world's greatest (fictional!) detectives."
/>
<meta
name="keywords"
content="game, card game, detectives, sleuth, top trumps"
/>
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- Fav Icon credit: https://tinyurl.com/2s4k8tyh-->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<link rel="manifest" href="site.webmanifest" />
<!-- Font Awesome Script -->
<script
src="https://kit.fontawesome.com/32eb0f11a8.js"
crossorigin="anonymous"
></script>
<title>Sleuth.</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Sleuth.</h1>
</a>
<div class="header-buttons">
<div id="circle">?</div>
<a
class="home-button"
href="index.html"
aria-label="Return to Sleuth landing page"
>
<i class="fa-solid fa-arrow-left-long"></i>
</a>
</div>
<div class="stripe stripe-red"></div>
<div class="stripe stripe-green"></div>
<div class="stripe stripe-blue"></div>
</header>
<!-- Game Container -->
<main id="game-container">
<!-- Opponenet Rea -->
<section id="opponent-area">
<div class="player-containers" id="opponent-left">
<div id="opponent-last-card-warning" class="last-card-warning">
Last Card!
</div>
</div>
<div class="player-containers">
<img
id="main-logo"
class="logo"
src="assets/media/logos/logo2.svg"
alt="Sleuth Logo"
/>
<!-- Opponent Card -->
<div class="small-reverse-card" id="opponent-card">
<div class="opponent-header-container">
<div id="opponent-header"></div>
</div>
<div class="opponent-body">
<div id="opponent-image"></div>
<div class="dividers">
<div class="divider blur">Enemies</div>
<div class="divider blur">Cases</div>
<div class="divider blur">Style</div>
<div class="divider blur">Assistants</div>
</div>
</div>
</div>
</div>
<div class="player-containers" id="opponent-right">
<div id="draw-pile-container"></div>
</div>
</section>
<section id="middle-area" class="start-message">
<div id="middle-left"></div>
<div id="middle-centre">
<div id="middle-area-logo"></div>
<div id="instructions"></div>
<div id="middle-area-text">
<p>In this game you will muster the world's greatest detectives.</p>
<br />
<p>
Choose your characters strengths and predict your opponent's
weaknesses to pit sleuth against sleuth and collect all 16
crime-solvers.
</p>
<br />
<h2>Start Sleuthing!</h2>
<div class="button-container">
<button
class="difficulty-button blue-button"
data-difficulty="Easy"
aria-label="Easy Mode"
></button>
<button
class="difficulty-button green-button"
data-difficulty="Medium"
aria-label="Medium Mode"
></button>
<button
class="difficulty-button red-button"
data-difficulty="Hard"
aria-label="Hard Mode"
></button>
<button
class="difficulty-button wild-button"
data-difficulty="Wild"
aria-label="Wild Mode"
></button>
</div>
<br /><br />
<h2>Learn More</h2>
<div class="button-container">
<button
class="more-info-button"
onclick="location.href='detectives.html'"
>
Detectives
</button>
<button class="more-info-button" id="instructions-button">
How to Play
</button>
</div>
</div>
</div>
<div id="middle-right"></div>
</section>
<section id="player-area">
<div class="player-containers" id="player-left">
<div id="player-deck" class="small-reverse-card">
<div id="card-count-container">
<span></span>
</div>
</div>
</div>
<div class="player-containers">
<div id="card">
<div id="card-header-container">
<div id="card-header"></div>
</div>
<div class="card-body-container">
<div id="card-image"></div>
<div id="card-stats"></div>
</div>
</div>
</div>
<div class="player-containers" id="player-right">
<div id="player-last-card-warning" class="last-card-warning">
Last Card!
</div>
</div>
</section>
<section id="game-stats-modal">
<div class="modal-content">
<div
class="exit-modal"
onclick="document.getElementById('game-stats-modal').style.display='none'"
>
×
</div>
<p class="game-stat">Difficulty: <span id="difficulty"></span></p>
<p class="game-stat">Your Cards: <span id="card-count"></span></p>
<p class="game-stat">
Cards in Draw Pile: <span id="draw-count"></span>
</p>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-top">
<a
href="https://github.com/denham-ed/sleuth"
target="_blank"
aria-label="Visit the GitHub repository for this project (opens in a new window)"
>
<i class="fa-brands fa-github footer-logo"></i>
</a>
<a
href="https://www.linkedin.com/in/ed-denham-313743153/"
target="_blank"
aria-label="Visit the LinkedIn profile for Ed Denham (opens in a new window)"
>
<i class="fa-brands fa-linkedin footer-logo"></i
></a>
</div>
<div class="footer-bottom">Designed by Ed Denham</div>
</footer>
<script src="assets/js/detectives.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>