-
Notifications
You must be signed in to change notification settings - Fork 0
/
initialImplementation.html
211 lines (209 loc) · 4.72 KB
/
initialImplementation.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
205
206
207
208
209
210
211
/*
* Here for posterity
*
* This is what I quickly coded up over part of a weekend just to scratch a coding itch before deciding to use
* this project as an opportunity to get accustomed to React/Redux
*/
<html>
<head>
<title></title>
<script type="text/javascript" src="gwent.js"></script>
<style type="text/css">
ul {
padding: 0;
margin: 0;
}
.gameBoard {
width: 100%;
height: 100%;
display: table;
}
.sidebarContainer {
width: 20%;
height: 100%;
display: table-cell;
}
.sidebar {
display: table;
height: 100%;
width: 100%;
}
.sidebarInfoContainer {
display: table-row;
}
.sidebarInfo {
display: table-cell;
}
.playerFieldsContainer {
height: 100%;
width: 60%;
display: table-cell;
}
.playerField {
width: 100%;
height: 50%;
}
.playerInfo {
display: table;
height: 100%;
width: 100%;
}
.cardRowContainer {
display: table;
width: 100%;
height: 25%;
}
.cardRow {
list-style: none;
width: 100%;
height: 25%;
display: table-row;
}
.card {
display: table-cell;
position: relative;
width: 10%;
}
.cardImg {
max-height: 100%;
width: auto;
display: block;
position: absolute;
}
.leaderCardContainer {
width: 50%;
display: table-cell;
}
.leaderCard {
display: table;
height: 66%;
}
.livesContainer {
display: table-cell;
}
.lives {
list-style: none;
width: 100%;
height: 50%;
display: table;
}
.lifeContainer {
width: 50px;
height: 100%;
display: table-cell;
}
.life {
content: ' ';
margin: 5px;
width: 40px;
height: 40px;
border-radius: 50% 50%;
background-color: gray;
}
.life.active {
background-color: red;
}
.filler {
display: table-cell;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<div class="gameBoard js_gameBoard">
<div class="sidebarContainer">
<div class="sidebar">
<div class="sidebarInfoContainer">
<div class="js_sidebarInfo_player1 sidebarInfo">
<div class="playerInfo">
<div class="leaderCardContainer">
<ul class="leaderCard js_leaderCard"></ul>
</div>
<div class="livesContainer">
<ul class="lives js_lives">
<li class="lifeContainer"><div class="js_life life active"></div></li>
<li class="lifeContainer"><div class="js_life life active"></div></li>
</ul>
</div>
</div>
</div>
</div>
<ul class="cardRow js_weatherCards"></ul>
<div class="sidebarInfoContainer">
<div class="sidebarInfo js_sidebarInfo_player2">
<div class="playerInfo">
<div class="leaderCardContainer">
<ul class="leaderCard js_leaderCard"></ul>
</div>
<div class="livesContainer">
<ul class="lives js_lives">
<li class="lifeContainer"><div class="js_life life active"></div></li>
<li class="lifeContainer"><div class="js_life life active"></div></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="playerFieldsContainer">
<div id="js_playerField1" class="playerField">
<div class="cardRowContainer">
<ul class="cardRow hand js_hand">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
<div class="cardRowContainer">
<ul class="cardRow js_siege">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
<div class="cardRowContainer">
<ul class="cardRow js_ranged">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
<div class="cardRowContainer">
<ul class="cardRow js_melee">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
</div>
<div id="js_playerField2" class="playerField">
<div class="cardRowContainer">
<ul class="cardRow js_melee">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
<div class="cardRowContainer">
<ul class="cardRow js_ranged">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
<div class="cardRowContainer">
<ul class="cardRow js_siege">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
<div class="cardRowContainer">
<ul class="cardRow hand js_hand">
<li class="js_score score filler"></li>
<li class="filler"></li>
</ul>
</div>
</div>
</div>
<div class="sidebar">
<div class="discardPile js_discardPile_player1"></div>
<div class="discardPile js_discardPile_player2"></div>
</div>
</div>
</body>
</html>