-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (96 loc) · 2.08 KB
/
style.css
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
background-color: rgb(32, 35, 48);
overflow: hidden;
}
#logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: fill 0.5s ease forwards 3.5s;
}
#logo path:nth-child(1) {
stroke-dasharray: 374px;
stroke-dashoffset: 374px;
animation: line-anim 2s ease forwards;
}
#logo path:nth-child(2) {
stroke-dasharray: 343px;
stroke-dashoffset: 343px;
animation: line-anim 2s ease forwards 0.3s;
}
#logo path:nth-child(3) {
stroke-dasharray: 236px;
stroke-dashoffset: 236px;
animation: line-anim 2s ease forwards 0.6s;
}
#logo path:nth-child(4) {
stroke-dasharray: 265px;
stroke-dashoffset: 265px;
animation: line-anim 2s ease forwards 0.9s;
}
#logo path:nth-child(5) {
stroke-dasharray: 337px;
stroke-dashoffset: 337px;
animation: line-anim 2s ease forwards 1.2s;
}
#logo path:nth-child(6) {
stroke-dasharray: 281px;
stroke-dashoffset: 281px;
animation: line-anim 2s ease forwards 1.5s;
}
#logo path:nth-child(7) {
stroke-dasharray: 236px;
stroke-dashoffset: 236px;
animation: line-anim 2s ease forwards 1.8s;
}
#logo path:nth-child(8) {
stroke-dasharray: 337px;
stroke-dashoffset: 337px;
animation: line-anim 2s ease forwards 2.1s;
}
#logo path:nth-child(9) {
stroke-dasharray: 279px;
stroke-dashoffset: 279px;
animation: line-anim 2s ease forwards 2.4s;
}
#logo path:nth-child(10) {
stroke-dasharray: 37px;
stroke-dashoffset: 37px;
animation: line-anim 2s ease forwards 2.7s;
}
#logo path:nth-child(11) {
stroke-dasharray: 289px;
stroke-dashoffset: 289px;
animation: line-anim 2s ease forwards 3s;
}
#logo path:nth-child(12) {
stroke-dasharray: 164px;
stroke-dashoffset: 164px;
animation: line-anim 2s ease forwards 3.3s;
}
#logo path:nth-child(13) {
stroke-dasharray: 462px;
stroke-dashoffset: 462px;
animation: line-anim 2s ease forwards 3.6s;
}
@keyframes line-anim {
to {
stroke-dashoffset: 0;
}
}
@keyframes fill {
from {
fill: transparent;
}
to {
fill: white;
}
}