-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 772 Bytes
/
index.html
File metadata and controls
51 lines (48 loc) · 772 Bytes
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
---
title: greetings earthling
---
<style>
html,
body {
height: 100%;
}
body {
background: black;
display: flex;
justify-content: center;
align-items: center;
}
.prompt {
font-size: 30vw;
color: greenyellow;
}
.cursor {
display: inline-block;
animation: pulsate 1.4s ease infinite;
transform: translate(0px, -15px) scale(0.8);
}
a {
text-decoration: none;
}
@keyframes pulsate {
0% {
opacity: 0.1;
}
12% {
opacity: 0.8;
}
24% {
opacity: 0.1;
}
36% {
opacity: 0.8;
}
60% {
opacity: 0.1;
}
100% {
opacity: 0.1;
}
}
</style>
<a href="/hello-world/"><div class="prompt">~μ <span class="cursor">|</span></div></a>