-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (69 loc) · 1.28 KB
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
72
73
74
75
76
77
78
body {
background: rgb(43,78,104);
color: rgb(220,220,220);
font-family: 'Fira Code', monospace;
}
.typewriter {
position: absolute;
top: 35%;
left: 10%;
}
.typewriter h1 {
border-right: 1px solid white;
white-space: nowrap;
overflow: hidden;
width: 390px;
white-space: nowrap;
overflow: hidden;
animation: typewriter 2s steps(25) 1s 1 normal both;
}
.typewriter #line-1 {
border-right: 1px solid white;
white-space: nowrap;
overflow: hidden;
width: 580px;
white-space: nowrap;
overflow: hidden;
animation: typewriter 3s steps(40) 1s 1 normal both;
animation-delay: 3.5s;
}
#line-2 {
border-right: 1px solid white;
white-space: nowrap;
overflow: hidden;
width: 405px;
white-space: nowrap;
overflow: hidden;
animation: typewriter 3s steps(40) 1s 1 normal both;
animation-delay: 7s;
}
@keyframes typewriter {
0% {
width: 0;
border-right: none;
}
0.1% {
border-right: 1px solid rgb(220,220,220);
}
99.9% {
border-right: 1px solid rgb(220,220,220);
}
100% {
border: none;
}
}
i {
opacity: 0;
animation: fadeIn 2s ease-in-out;
animation-delay: 10s;
animation-fill-mode: forwards;
padding-top: 1rem;
padding-left: 20px;
}
a {
color: rgb(220,220,220);
}
@keyframes fadeIn {
from {opacity:0;}
to {opacity:1;}
}