xxxxxxxxxx
1
<h1>It was a gloomy, rainy day...</h1>
xxxxxxxxxx
1
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);
2
/* Base */
3
body {
4
padding: 0;
5
margin: 0;
6
background-color: #000;
7
display: flex;
8
align-items: center;
9
justify-content: center;
10
min-height: 100vh;
11
}
12
h1 {
13
position: relative;
14
color: hsl(0, 0%, 68%);
15
font-weight: bold;
16
font-family: "Anonymous Pro", monospace;
17
letter-spacing: 7px;
18
overflow: hidden;
19
border-right: 2px solid hsl(0, 0%, 80%);
20
white-space: nowrap;
21
animation: typewriter 4s steps(44) 1s 1 normal both,
22
blinkTextCursor 500ms infinite;
23
}
24
25
@keyframes typewriter {
26
from {
27
width: 0;
28
}
29
to {
30
width: 710px;
31
}
32
}
33
@keyframes blinkTextCursor {
34
from {
35
border-right-color: hsl(0, 0%, 80%);
36
}
37
to {
38
border-right-color: transparent;
39
}
40
}
1
1
Console errors: 0