-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiomes.html
50 lines (42 loc) · 1.9 KB
/
biomes.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
<!DOCTYPE html>
<html lang="es">
<head>
<link rel="icon" type="image/png" sizes="32x32" href="2563fb.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pixelbiome.wiki beta</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.0/flowbite.min.css" rel="stylesheet">
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<div class="container mx-auto px-4 py-8">
<div class="mb-8">
<input type="text" id="searchInput"
class="w-full p-3 rounded-lg bg-gray-800 border border-gray-700 focus:ring-blue-500 focus:border-blue-500"
placeholder="Buscar bioma...">
</div>
<div id="biomesList" class="grid gap-2">
</div>
<div id="biomeDetails" class="hidden mt-8">
<button onclick="hideDetails()" class="mb-4 text-blue-400 hover:text-blue-300">← Volver</button>
<h2 id="biomeTitle" class="text-3xl font-bold mb-6"></h2>
<div class="overflow-x-auto">
<table class="min-w-full bg-gray-800 rounded-lg">
<thead class="bg-gray-700">
<tr>
<th class="px-6 py-3 text-left">Pokémon</th>
<th class="px-6 py-3 text-left">Tiempo</th>
<th class="px-6 py-3 text-left">Condiciones</th>
</tr>
</thead>
<tbody id="pokemonTable">
</tbody>
</table>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.0/flowbite.min.js"></script>
<script src="data.js"></script>
<script src="app.js"></script>
</body>
</html>