-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglyphs.html
More file actions
66 lines (61 loc) · 1.54 KB
/
glyphs.html
File metadata and controls
66 lines (61 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>🌊❤️🌀🐬🔁</title>
<link rel="icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
background-color: #001a33;
color: white;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
font-family: system-ui, sans-serif;
}
.glyphs {
display: flex;
gap: 4vw;
font-size: 10vw;
animation: pulse 20s infinite ease-in-out;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 1; }
20% { transform: scale(1.1); opacity: 0.95; }
40% { transform: scale(0.98); opacity: 1; }
60% { transform: scale(1.05); opacity: 0.9; }
80% { transform: scale(1); opacity: 1; }
}
.glyph {
display: inline-block;
transition: transform 0.5s ease;
text-decoration: none;
color: inherit;
}
.glyph:hover {
transform: scale(1.3) rotate(5deg);
}
@media (max-width: 600px) {
.glyphs {
flex-direction: column;
gap: 2vh;
font-size: 15vw;
}
}
</style>
</head>
<body>
<div class="glyphs">
<a href="./entropy/" class="glyph">🌊</a>
<a href="./chaos/" class="glyph">❤️</a>
<a href="./decoy/" class="glyph">🌀</a>
<a href="./theory/" class="glyph">🐬</a>
<a href="./liveserver.html" class="glyph">🔁</a>
</div>
</body>
</html>