-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (55 loc) · 2.35 KB
/
index.html
File metadata and controls
61 lines (55 loc) · 2.35 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Oscars Picks Tracker 2026</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=Playfair+Display:wght@500;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="hero">
<div class="shell">
<p class="eyebrow">98th Academy Awards • March 15, 2026 • Dolby Theatre</p>
<h1>Oscars Picks Tracker</h1>
<p class="lede">Make your picks, set the official winners, and see how you did. Everything is saved locally.</p>
<div class="hero-actions">
<a class="btn primary" href="#categories">Start picking</a>
<span class="save-pill" id="save-note" aria-live="polite">Not saved yet</span>
</div>
</div>
</header>
<section class="summary-bar" aria-label="Progress summary">
<div class="shell summary-shell">
<div class="summary-top">
<div class="current-category" aria-live="polite">
<div class="current-row">
<div class="current-name" id="current-category-name">—</div>
</div>
<div class="compact-stats" aria-label="Summary">
Matches <span id="stat-matches">0</span> • Picks <span id="stat-picks">0/24</span> • Winners <span id="stat-winners">0/24</span> • Open <span id="stat-open">24</span>
</div>
</div>
<div class="summary-actions">
<label class="jump">
<span>Jump to</span>
<select id="jump-select" aria-label="Jump to category"></select>
</label>
</div>
</div>
<div class="progress" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">
<div class="progress-bar" id="match-progress"></div>
</div>
</div>
</section>
<main class="shell main-stack" id="categories" aria-live="polite"></main>
<footer class="footer">
<div class="shell">
<p>Data stays on this device via localStorage. Built with vanilla HTML/CSS/JS for GitHub Pages. No official Oscars logos.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>