blob: 07391ac7805b11030f35b3ef167b0fd40261ce72 (
plain) (
blame)
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
|
/* ########################
Texx-Web
Texx
by Marvin Borner
& Marco Alexander Fischer
######################### */
html, body {
height: 100%;
}
body {
background-color: #282828;
display: flex;
align-items: center;
justify-content: center;
}
.typewriter h1 {
font-family: 'Mukta', sans-serif;
color: white;
overflow: hidden;
border-right: .15em solid white;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: white; }
}
|