-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnothing.html
More file actions
65 lines (57 loc) · 2.82 KB
/
Copy pathnothing.html
File metadata and controls
65 lines (57 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nothing | Kobosh Joei Truth</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Nothing. Literally nothing to see here." />
<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=Syne:wght@700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/index-modern.css" />
</head>
<body>
<!-- Ambient background visuals -->
<div class="ambient" aria-hidden="true">
<span class="orb orb-one"></span>
<span class="orb orb-two"></span>
<span class="grid"></span>
</div>
<div class="subpage-container reveal" style="max-width: 440px; min-height: auto;">
<main class="content-card" style="text-align: center; align-items: center; justify-content: center; gap: 1rem; padding: 2rem;">
<header class="nav-header" style="border: none; margin-bottom: 0.5rem; justify-content: flex-end;">
<button class="theme-toggle" aria-label="Toggle theme">
<svg class="sun-icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4"/><path d="M12 2v2"/><path d="M12 20v2"/><path d="m4.93 4.93 1.41 1.41"/><path d="m17.66 17.66 1.41 1.41"/><path d="M2 12h2"/><path d="M20 12h2"/><path d="m6.34 17.66-1.41 1.41"/><path d="m19.07 4.93-1.41 1.41"/></svg>
<svg class="moon-icon" viewBox="0 0 24 24"><path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"/></svg>
</button>
</header>
<span class="eyebrow" style="align-self: center;">Void</span>
<h1 style="font-size: 2rem; margin-top: 0.5rem;">Nothing</h1>
<p style="opacity: 0.7; font-size: 0.95rem;">hello this is nothing lol</p>
<div style="font-size: 3.5rem; font-weight: 800; font-family: 'Syne', sans-serif; letter-spacing: -0.05em; color: var(--accent-2); margin: 1rem 0; animation: pulse 2s infinite alternate;">
kobosh
</div>
<a class="action action-ghost" href="./" style="width: 100%;">Return to Reality</a>
</main>
</div>
<footer class="site-footer" style="max-width: 440px; margin-top: 1.5rem;">
<p>© Kobosh.com</p>
<p id="year-stamp" class="tabular-nums"></p>
</footer>
<style>
@keyframes pulse {
from {
transform: scale(0.96);
opacity: 0.9;
filter: drop-shadow(0 0 5px rgba(13, 148, 136, 0.1));
}
to {
transform: scale(1.04);
opacity: 1;
filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.3));
}
}
</style>
<script src="assets/js/index-modern.js"></script>
</body>
</html>