generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
178 lines (175 loc) · 7.88 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
<!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="assets/css/style.css">
<title>Logging In</title>
</head>
<body>
<!--
The Outer Wrapper is set to the width and height of the viewport.
It ensures that all elements within it are contained within the user's screen size,
and forms the foundation to the sites responsiveness.
-->
<div class="outer-wrapper">
<div id="header" class="lgcol-12 container">
<!--
The Nav Element is an ARIA element. It contains the sites navigation elements and
is visible at all times.
-->
<nav id="nav" class="lgcol-12 smcol-3 container">
<ul id="nav-list" class="lgcol-5 smcol-3 mdcol-8 container">
<li id="nav-quit" class="nav-elements">Quit</li>
<li id="nav-newgame" class="nav-elements">New Game</li>
<!-- Not implemented in dev stage 1: The Help Menu is a dropdown menu activated from the span tag -->
<li id="help" class="nav-elements" ><span>Help</span></li>
</ul>
</nav>
<h1 id="screen-title"></h1>
</div>
<!--
This section diplays all the game monologues which ocurr before and after the main game display.
The content changes as the game flow progresses.
When this section is diplayed, the displayGame-wrapper section is hidden, and vica-versa.
This section is styled with layout columns, the number and width of which change acording to
screen size, and enable the site to be responsive.
-->
<div id="displayScreen-wrapper" class="lgcol-12 screen">
<div id="inner-display-wrapper" class="lgcol-12">
<div id="display-img-wrapper" class="lgcol-6 mdcol-12 smcol-3 smrow">
</div>
<div id="display-txt-wrapper" class="lgcol-4 mdcol-12 smcol-3 smrow">
<p id="screen-msg"></p>
</div>
</div>
<div id="display-buttons-wrapper" class="lgcol-4 container">
<button id="btn-1" class="button lgcol-2 mdcol-4 smcol-3" data-typr="play-game"></button>
</div>
</div>
<!--
This section diplays the main game display.
When this section is diplayed, the displayScreen-wrapper section is hidden, and vica-versa.
This section is styled with layout columns, the number and width of which change acording to
screen size, and enable the site to be responsive.
-->
<div id="displayGame-wrapper" class="lgcol-12 container screen" >
<!-- Infor Bar Wrapper-->
<div id="info-bar-wrapper" class="lgcol-12 container">
<!-- PLace holder for Fire Alert and spacer for Info Bar-->
<div id="fire-alert-wrapper" class="lgcol-2 smcol-3 smrow"></div>
<!-- Infor Bar -->
<div id="info-bar" class="lgcol-10 mdcol-8 smcol-3 smrow container">
<!-- Time Left Container Hidden in stage 1-->
<div id="time-left-wrapper" class="container" aria-labelledby="time-label">
<h3 id="time-label" class="info-item">Time Left: </h3>
<h3 id="time-left" class="info-item"></h3> <!-- Time Left Data written here-->
</div>
<!-- Logs In Stock Container -->
<div id="logs-wrapper" class="container" aria-labelledby="logs-label">
<h3 id="logs-label" class="info-item">Logs In Stock: </h3>
<h3 id="logs" class="info-item"></h3> <!-- Logs In Stock Data written here-->
</div>
<!-- Profit Container -->
<div id="profit-wrapper" class="container" aria-labelledby="profit-label">
<h3 id="profit-label" class="info-item">Profit: </h3>
<h3 id="profit" class="info-item"></h3> <!-- Profit Data written here-->
<!-- Target Profit Container -->
</div>
<div id="target-profit-wrapper" class="container" aria-labelledby="target-profit-label">
<h3 id="target-profit-label" class="info-item">Target Profit: </h3>
<h3 id="target-profit" class="info-item"></h3> <!-- Target Profit Data written here-->
</div>
</div>
</div>
<div id ="game-body-wrapper" class="lgcol-12 container">
<div id="spacer" class="lgcol-1 lgrow"></div> <!-- spacer-->
<!-- Container for the Actions Menu and Messages window-->
<div id="menu-messages-wrapper" class="lgcol-4 mdcol-10 smcol-3">
<div id="action-menu-wrapper" class="lgcol-12 lgrow container" aria-labelledby="actions-menu-label">
<h2 id="actions-menu-label">Actions Menu</h2>
<div id="actions-menu" class="lgcol-12 game-windows container">
<ul id ="actions-menu-list"></ul>
</div>
</div>
<div id="messages-wrapper" class="lgcol-12 lgrow container" aria-labelledby="messages-label">
<h2 id="messages-label">Messages</h2>
<div class="lgcol-12 game-windows container">
<p id="messages"></p>
</div>
</div>
</div>
<!-- Map -->
<div id="map" class="lgcol-5 mdcol-9 smcol-2 container">
<div id="a1" class="tile"></div>
<div id="a2" class="tile"></div>
<div id="a3" class="tile"></div>
<div id="a4" class="tile"></div>
<div id="a5" class="tile"></div>
<div id="a6" class="tile"></div>
<div id="a7" class="tile"></div>
<div id="a8" class="tile"></div>
<div id="b1" class="tile"></div>
<div id="b2" class="tile"></div>
<div id="b3" class="tile"></div>
<div id="b4" class="tile"></div>
<div id="b5" class="tile"></div>
<div id="b6" class="tile"></div>
<div id="b7" class="tile"></div>
<div id="b8" class="tile"></div>
<div id="c1" class="tile"></div>
<div id="c2" class="tile"></div>
<div id="c3" class="tile"></div>
<div id="c4" class="tile"></div>
<div id="c5" class="tile"></div>
<div id="c6" class="tile"></div>
<div id="c7" class="tile"></div>
<div id="c8" class="tile"></div>
<div id="d1" class="tile"></div>
<div id="d2" class="tile"></div>
<div id="d3" class="tile"></div>
<div id="d4" class="tile"></div>
<div id="d5" class="tile"></div>
<div id="d6" class="tile"></div>
<div id="d7" class="tile"></div>
<div id="d8" class="tile"></div>
<div id="e1" class="tile"></div>
<div id="e2" class="tile"></div>
<div id="e3" class="tile"></div>
<div id="e4" class="tile"></div>
<div id="e5" class="tile"></div>
<div id="e6" class="tile"></div>
<div id="e7" class="tile"></div>
<div id="e8" class="tile"></div>
<div id="f1" class="tile"></div>
<div id="f2" class="tile"></div>
<div id="f3" class="tile"></div>
<div id="f4" class="tile"></div>
<div id="f5" class="tile"></div>
<div id="f6" class="tile"></div>
<div id="f7" class="tile"></div>
<div id="f8" class="tile"></div>
<div id="g1" class="tile"></div>
<div id="g2" class="tile"></div>
<div id="g3" class="tile"></div>
<div id="g4" class="tile"></div>
<div id="g5" class="tile"></div>
<div id="g6" class="tile"></div>
<div id="g7" class="tile"></div>
<div id="g8" class="tile"></div>
<div id="h1" class="tile"></div>
<div id="h2" class="tile"></div>
<div id="h3" class="tile"></div>
<div id="h4" class="tile"></div>
<div id="h5" class="tile"></div>
<div id="h6" class="tile"></div>
<div id="h7" class="tile"></div>
<div id="h8" class="tile"></div>
</div>
</div>
</div>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>