-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (61 loc) · 2.36 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Boredom Games</title>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<style>
@keyframes flicker {
0%, 100% { opacity: 1; }
25%, 75% { opacity: 0.9; }
50% { opacity: 0.95; }
}
@keyframes neon {
0%, 100% { text-shadow: 0 0 5px #ff0000; }
10% { text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000, 0 0 50px #ff0000, 0 0 60px #ff0000; }
20% { text-shadow: 0 0 30px #ff0000, 0 0 40px #ff0000, 0 0 50px #ff0000, 0 0 60px #ff0000, 0 0 70px #ff0000; }
30% { text-shadow: 0 0 40px #ff0000, 0 0 50px #ff0000, 0 0 60px #ff0000, 0 0 70px #ff0000, 0 0 80px #ff0000; }
40% { text-shadow: 0 0 50px #ff0000, 0 0 60px #ff0000, 0 0 70px #ff0000, 0 0 80px #ff0000, 0 0 90px #ff0000; }
50% { text-shadow: 0 0 60px #ff0000, 0 0 70px #ff0000, 0 0 80px #ff0000, 0 0 90px #ff0000, 0 0 100px #ff0000; }
60% { text-shadow: 0 0 70px #ff0000, 0 0 80px #ff0000, 0 0 90px #ff0000, 0 0 100px #ff0000, 0 0 110px #ff0000; }
70% { text-shadow: 0 0 80px #ff0000, 0 0 90px #ff0000, 0 0 100px #ff0000, 0 0 110px #ff0000, 0 0 120px #ff0000; }
80% { text-shadow: 0 0 90px #ff0000, 0 0 100px #ff0000, 0 0 110px #ff0000, 0 0 120px #ff0000, 0 0 130px #ff0000; }
90% { text-shadow: 0 0 100px #ff0000, 0 0 110px #ff0000, 0 0 120px #ff0000, 0 0 130px #ff0000, 0 0 140px #ff0000; }
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
h1 {
font-family: 'Arial', sans-serif;
font-size: 48px;
color: #ff0000;
animation: flicker 2s infinite, neon 2s infinite;
}
.center {
text-align: center;
}
.slide-in {
animation:
var(--animation-fade-in) forwards,
var(--animation-slide-in-up);
animation-timing-function: var(--ease-elastic-in-out-3);
animation-duration: 3s;
}
</style>
<div class="container">
<br class="is-unselectable">
<br class="is-unselectable">
<h1 class="slide-in">Boredom Games</h1>
<br class="is-unselectable">
<button class="slide-in"> <a href="/games.html">Games</a>
</button>
<button class="slide-in"> <a href="/settings.html">Settings</a>
</button>
</div>
</body>
</html>