-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (101 loc) · 2.47 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (101 loc) · 2.47 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100%;
height: 100vh;
background-color: rgb(32, 35, 38);
}
section{
padding: 200px 50px 30px 50px;
align-items: center;
justify-content: center;
}
#logo{
animation: fill 0.5s ease forwards 4.5s;
}
#logo path:nth-child(1){ /* ----- e -----*/
stroke-dasharray: 485px;
stroke-dashoffset: 485px;
animation: line-anim 2s ease forwards 1.5s;
}
#logo path:nth-child(2){ /* ----- p -----*/
stroke-dasharray: 546px;
stroke-dashoffset: 546px;
animation: line-anim 2s ease forwards 1.8s;
}
#logo path:nth-child(3){ /* ----- o -----*/
stroke-dasharray: 407px;
stroke-dashoffset: 407px;
animation: line-anim 2s ease forwards 2.1s;
}
#logo path:nth-child(4){ /* ----- c -----*/
stroke-dasharray: 338px;
stroke-dashoffset: 338px;
animation: line-anim 2s ease forwards 2.1s;
}
#logo path:nth-child(5){ /* ----- h -----*/
stroke-dasharray: 486px;
stroke-dashoffset: 486px;
animation: line-anim 2s ease forwards 2.4s;
}
#logo path:nth-child(6){
stroke-dasharray: 408px;
stroke-dashoffset: 408px;
animation: line-anim 2s ease forwards 2.7s;
}
#logo path:nth-child(7){
stroke-dasharray: 563px;
stroke-dashoffset: 563px;
animation: line-anim 2s ease forwards 2.7s;
}
#logo path:nth-child(8){
stroke-dasharray: 258px;
stroke-dashoffset: 258px;
animation: line-anim 2s ease forwards 3s;
}
#logo path:nth-child(9){
stroke-dasharray: 471px;
stroke-dashoffset: 471px;
animation: line-anim 2s ease forwards 3s;
}
#logo path:nth-child(10){
stroke-dasharray: 299px;
stroke-dashoffset: 299px;
animation: line-anim 2s ease forwards 0.9s;
}
#logo path:nth-child(11){
stroke-dasharray: 132px;
stroke-dashoffset: 132px;
animation: line-anim 2s ease forwards 0.6s;
}
#logo path:nth-child(12){
stroke-dasharray: 35px;
stroke-dashoffset: 35px;
animation: line-anim 2s ease forwards 1.2s;
}
#logo path:nth-child(13){
stroke-dasharray: 333px;
stroke-dashoffset: 333px;
animation: line-anim 2s ease forwards 0.3s;
}
#logo path:nth-child(14){
stroke-dasharray: 274px;
stroke-dashoffset: 274px;
animation: line-anim 2s ease forwards;
}
@keyframes line-anim{
to{
stroke-dashoffset: 0;
}
}
@keyframes fill{
from{
fill: transparent;
}
to{
fill: blueviolet;
}
}