forked from KenjiEtsu/SkyblockCodexAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbingo.html
More file actions
47 lines (43 loc) · 1.63 KB
/
bingo.html
File metadata and controls
47 lines (43 loc) · 1.63 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Bingo • SkyBlockCodexAPI</title>
<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=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="bg-grid"></div>
<header class="topbar">
<div class="logo">SkyBlockCodexAPI</div>
<div class="topbar-links">
<a class="topbar-link" href="./index.html">Inicio</a>
<a class="topbar-link" href="./mayor.html">Mayor</a>
<a class="topbar-link" href="./bingo.html">Bingo</a>
<a class="topbar-link" href="./museum.html">Museum</a>
</div>
<div class="status" id="status">Listo</div>
</header>
<main class="container">
<section class="results" id="bingoPage">
<div class="empty">Cargando información de Bingo...</div>
</section>
</main>
<footer class="footer">
<span>Bingo • Detalles completos</span>
<span class="mono">API pública • Hypixel</span>
</footer>
<div class="modal" id="goalModal">
<div class="modal-card">
<button class="modal-close" id="modalClose">Cerrar</button>
<div class="modal-title" id="modalTitle">Objetivo</div>
<div class="perk-desc" id="modalBody"></div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>