-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (47 loc) · 768 Bytes
/
style.css
File metadata and controls
56 lines (47 loc) · 768 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
51
52
53
54
55
56
body {
background: #000;
}
#text {
color: #5dea62;
font-family: Monaco, monospace;
font-size: 24px;
text-align: left;
position: absolute;
top: 50%;
left: 50%;
animation: 1s infinite normal glitch;
transform: translate(-50%, -50%);
}
span {
animation: 1.5s infinite normal caret;
}
::-moz-selection {
background: #7021d2;
color: #fff;
}
::selection {
background: #7021d2;
color: #fff;
}
@keyframes glitch {
0% {
opacity: 0;
transform: translate(-52%, -52%);
}
40%,
80% {
opacity: 1;
transform: translate(-51%, -51%);
}
}
@keyframes caret {
0% {
opacity: 0;
}
40% {
opacity: 0;
}
80% {
opacity: 1;
}
}