-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
181 lines (126 loc) · 7.15 KB
/
Copy pathindex.html
File metadata and controls
181 lines (126 loc) · 7.15 KB
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
<html>
<head>
<title>prodex</title>
<link rel="icon" type="image/x-icon" href="res/favicon.svg">
<!-- metas -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- lib -->
<script src="lib/pako/pako.js"></script>
<script src="lib/swal/swal.js"></script>
<link rel="stylesheet" href="lib/swal/swal.css">
<link rel="stylesheet" href="lib/animate/animate.css">
<link rel="stylesheet" href="lib/el-checkbox/el-checkbox.css">
<!-- res -->
<link rel="stylesheet" href="res/pokemon-spritesheet.css">
<link rel="stylesheet" href="res/item-spritesheet.css">
<link rel="stylesheet" href="res/footprint-spritesheet.css">
<!-- prototypes -->
<script src="src/prototypes/Array.js"></script>
<!-- components -->
<link rel="stylesheet" href="src/components/slider/slider.css">
<script src="src/components/slider/slider.js"></script>
<link rel="stylesheet" href="src/components/pokemon/pokemon.css">
<script src="src/components/pokemon/pokemon.js"></script>
<link rel="stylesheet" href="src/components/pokemon-header/pokemon-header.css">
<script src="src/components/pokemon-header/pokemon-header.js"></script>
<link rel="stylesheet" href="src/components/pokemon-details/pokemon-details.css">
<script src="src/components/pokemon-details/pokemon-details.js"></script>
<link rel="stylesheet" href="src/components/gender-rate/gender-rate.css">
<script src="src/components/gender-rate/gender-rate.js"></script>
<link rel="stylesheet" href="src/components/stats/stats.css">
<script src="src/components/stats/stats.js"></script>
<link rel="stylesheet" href="src/components/types-effectiveness/types-effectiveness.css">
<script src="src/components/types-effectiveness/types-effectiveness.js"></script>
<link rel="stylesheet" href="src/components/evolution-chain/evolution-chain.css">
<script src="src/components/evolution-chain/evolution-chain.js"></script>
<link rel="stylesheet" href="src/components/encounters/encounters.css">
<script src="src/components/encounters/encounters.js"></script>
<link rel="stylesheet" href="src/components/held-items/held-items.css">
<script src="src/components/held-items/held-items.js"></script>
<link rel="stylesheet" href="src/components/type/type.css">
<script src="src/components/type/type.js"></script>
<link rel="stylesheet" href="src/components/damage-class/damage-class.css">
<script src="src/components/damage-class/damage-class.js"></script>
<link rel="stylesheet" href="src/components/move/move.css">
<script src="src/components/move/move.js"></script>
<link rel="stylesheet" href="src/components/pokemon-filter/pokemon-filter.css">
<script src="src/components/pokemon-filter/pokemon-filter.js"></script>
<link rel="stylesheet" href="src/components/move-selector/move-selector.css">
<script src="src/components/move-selector/move-selector.js"></script>
<link rel="stylesheet" href="src/components/checklist/checklist.css">
<script src="src/components/checklist/checklist.js"></script>
<link rel="stylesheet" href="src/components/team-type-statistics/team-type-statistics.css">
<script src="src/components/team-type-statistics/team-type-statistics.js"></script>
<!-- index -->
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<div id="main-container" class="flex-rows padding gap">
<!-- <div class="flex-rows">
<input type="radio" name="tab" class="tab-control-header" id="tab-header-1" />
<label for="tab-header-1">tab1</label>
<input type="radio" name="tab" class="tab-control-header" id="tab-header-2" />
<label for="tab-header-2">tab2</label>
<input type="radio" name="tab" class="tab-control-header" id="tab-header-3" />
<label for="tab-header-3">tab3</label>
<div class="tab-control-content" id="tab1">111</div>
<div class="tab-control-content" id="tab2">222</div>
<div class="tab-control-content" id="tab3">333</div>
</div> -->
<div class="flex-columns justify-center">
<span class="logo">prodex</span>
</div>
<div class="flex-columns justify-center">
<div class="flex-rows gap box">
<div class="flex-rows">
<label for="version">GAME VERSION</label>
<select name="version" id="version"></select>
</div>
<button class="danger" onclick="reset()">RESET TEAM</button>
</div>
</div>
<div class="flex-columns justify-center">
<div class="flex-columns justify-center display-toggle box">
<div class="grow flex-rows" style="width: 50%;">
<input type="radio" name="display-toggle" id="display-build" checked="checked" />
<label class="grow" for="display-build">BUILD</label>
</div>
<div class="grow flex-rows" style="width: 50%;">
<input type="radio" name="display-toggle" id="display-details" />
<label class="grow" for="display-details">DETAILS</label>
</div>
</div>
</div>
<div class="slider">
<div id="team" class="flex-columns gap justify-center wrap grow">
<div id="team-slot-1" class="box flex-rows">
</div>
<div id="team-slot-2" class="box flex-rows">
</div>
<div id="team-slot-3" class="box flex-rows">
</div>
<div id="team-slot-4" class="box flex-rows">
</div>
<div id="team-slot-5" class="box flex-rows">
</div>
<div id="team-slot-6" class="box flex-rows">
</div>
</div>
</div>
<div id="metrics" class="flex-columns justify-center gap wrap">
</div>
<a class="made-by" href="https://github.com/phcs93/" target="_blank">
MADE BY PHCS93
</a>
<div class="buy-me-a-coffee flex-rows justify-center">
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js"
data-name="bmc-button" data-slug="phcs93i" data-color="#FFDD00" data-emoji="" data-font="Cookie"
data-text="Buy me a coffee" data-outline-color="#000000" data-font-color="#000000"
data-coffee-color="#ffffff"></script>
</div>
</div>
</body>
</html>