-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (86 loc) · 4.05 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
<!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="./Documents/Micrsoft Azure/FrontEndPokedexLaunchX/css & js/pokedex.css">
<link rel="stylesheet" href="./Documents/Micrsoft Azure/FrontEndPokedexLaunchX/css & js/panel.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@100&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title>PokedexWeb</title>
</head>
<body>
<main class="pokedex">
<section class="header">
<div class="header__bigCircle">
<div class="header__bigCircle__cristal"></div>
</div>
<div class="header__circle header__circle-red"></div>
<div class="header__circle header__circle-green"></div>
<div class="header__circle header__circle-yellow"></div>
</section>
<section class="screen">
<section class="screen__image">
<div class="pokemon__container">
<p id="loadingDialog" class="loadingDialog-hide"></p>
<img alt="Pokemon" id="imageScreen">
<span id="pokemonNameText"></span>
</div>
<div class="pokemon__information">
<p>Altura: <span id="pokemonHeightValue">?</span></p>
<p>Peso: <span id="pokemonWeightValue">?</span></p>
</div>
</section>
</section>
<section class="inputs">
<div class="inputs__left">
<div class="inputs__buttons">
<button class="mainButton"></button>
<button class="largeButton largeButton-red"></button>
<button class="largeButton largeButton-blue"></button>
</div>
<div class="greenRect"></div>
</div>
<div class="direction__buttons">
<div class="direction__buttons__bottom">
<div class="direction__buttons__bottom__vertical"></div>
<div class="direction__buttons__bottom__horizontal"></div>
</div>
<div class="direction__buttons__up">
<button class="up" id="keyUp"></button>
<button class="right" id="keyRight"></button>
<button class="bottom" id="keyDown"></button>
<button class="left" id="keyLeft"></button>
</div>
</div>
</section>
<section class="search">
<label for="pokemon">Pokemon: <input type="text" name="pokemon" id="pokemonInput"></label>
<button type="submit" id="search"><span class="material-icons">search</span></button>
</section>
</main>
<section class="panel">
<section class="panel__screen">
<div class="panel__screen__innner">
<div class="types">
<Label>Tipo</Label>
<ul id="listTypes"></ul>
</div>
<div class="movs">
<Label>Movimientos</Label>
<ul id="listMovs"></ul>
</div>
<div class="stats">
<Label>Estaditicas</Label>
<ul id="listStats">
</ul>
</div>
</div>
</section>
</section>
<script src="./Documents/Micrsoft Azure/FrontEndPokedexLaunchX/css & js/pokedex.js"></script>
</body>
</html>