-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.24 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 1.24 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
cat > index.html << 'EOF'
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Ukusoma</title>
<style>
body {
background-color: #0d0d0d;
color: #e0e0e0;
font-family: monospace;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
animation: fadeIn 2s ease-in;
}
a {
color: #ffcc00;
text-decoration: none;
margin-top: 2rem;
font-weight: bold;
}
a:hover {
text-shadow: 0 0 10px #ffcc00;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.glow {
font-size: 1.5rem;
text-align: center;
line-height: 1.6;
color: #ccc;
max-width: 640px;
padding: 0 1rem;
}
</style>
</head>
<body>
<div class="glow">
<p><em>“The archive decays. The Island persists.”</em></p>
<p>This repository is deprecated.<br />
Refer to numbered folders for historical fragments.</p>
<p>For living systems, step carefully into:</p>
<a href="6-kitabo/ensi/ukubona/">→ Enter the Island 🏝️</a>
</div>
</body>
</html>
EOF