forked from KenjiEtsu/SkyblockCodexAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (70 loc) · 2.95 KB
/
index.html
File metadata and controls
77 lines (70 loc) · 2.95 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>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 class="home-page">
<div class="bg-grid"></div>
<header class="topbar">
<div class="logo">SkyBlockCodexAPI</div>
<div class="topbar-links">
<a class="topbar-link" id="currentMayor" href="./mayor.html">Current Mayor: Cargando...</a>
<a class="topbar-link" id="currentBingo" href="./bingo.html">Bingo: Cargando...</a>
<a class="topbar-link" href="./museum.html">Museum</a>
</div>
<div class="status" id="status">Listo</div>
</header>
<main class="container">
<section class="hero">
<div>
<p class="eyebrow">Wiki inteligente</p>
<h1 class="hero-title">Consulta items, colecciones, skills y más sin salir del navegador.</h1>
<p class="sub">Conexión directa al API oficial de Hypixel. Respuestas rápidas, formato limpio.</p>
</div>
<div class="hero-card">
<div class="card-title">Modo</div>
<div class="mode-grid" id="modeGrid">
<button class="mode active" data-mode="item">Item</button>
<button class="mode" data-mode="collection">Colección</button>
<button class="mode" data-mode="skill">Skill</button>
</div>
<div class="input-row">
<input id="queryInput" type="text" placeholder="Escribe el nombre o ID" />
<button id="searchBtn" class="cta">Buscar</button>
</div>
<div class="suggestions" id="suggestions"></div>
<p class="hint" id="hint">Ejemplo: Wise Dragon Boots</p>
<div class="demo" id="demoArea">
<div class="demo-bar">
<span class="demo-label">Búsqueda demo</span>
<span class="demo-text" id="demoText"></span><span class="demo-cursor">|</span>
</div>
<div class="demo-results" id="demoResults"></div>
</div>
</div>
</section>
<section class="results" id="results">
<div class="empty">Haz una búsqueda para ver resultados.</div>
</section>
</main>
<footer class="footer">
<span>SkyBlockCodexAPI • Interfaz local</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">Detalle</div>
<div class="perk-desc" id="modalBody"></div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>