-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·71 lines (59 loc) · 1.48 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
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
<title>~$ NOTHING TO SEE HERE</title>
<style>
:root {
--light-blue: #0088ff;
--dark-blue: #0000aa;
}
body {
background: var(--light-blue);
}
h1 {
margin: 0;
}
section {
background: var(--dark-blue);
color: var(--light-blue);
font-family: monospace;
padding: 1em;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
.blink {
animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
51% {
opacity: 0;
}
100% {
opacity: 0;
}
}
</style>
</head>
<body>
<section>
<h1 class="blink">~$ NOTHING TO SEE HERE</h1>
</section>
</body>
</html>