-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (80 loc) · 2.14 KB
/
style.css
File metadata and controls
85 lines (80 loc) · 2.14 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
background: rgb(32, 35, 48);
}
#logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: fill-it 0.5s ease forwards 7s;
}
#logo path:nth-child(2) {
stroke-dasharray: 463.9678955078125;
stroke-dashoffset: 463.9678955078125;
animation: line-anim 6s ease forwards;
}
#logo path:nth-child(3) {
stroke-dasharray: 297.21600341796875;
stroke-dashoffset: 297.21600341796875;
animation: line-anim 6s ease forwards 0.3s;
}
#logo path:nth-child(4) {
stroke-dasharray: 534.5279541015625;
stroke-dashoffset: 534.5279541015625;
animation: line-anim 6s ease forwards 0.6s;
}
#logo path:nth-child(5) {
stroke-dasharray: 490.2921142578125;
stroke-dashoffset: 490.2921142578125;
animation: line-anim 6s ease forwards 0.9s;
}
#logo path:nth-child(6) {
stroke-dasharray: 754.9266357421875;
stroke-dashoffset: 754.9266357421875;
animation: line-anim 6s ease forwards 1.2s;
}
#logo path:nth-child(7) {
stroke-dasharray: 483.89276123046875;
stroke-dashoffset: 483.89276123046875;
animation: line-anim 6s ease forwards 1.5s;
}
#logo path:nth-child(8) {
stroke-dasharray: 571.5776977539062;
stroke-dashoffset: 571.5776977539062;
animation: line-anim 6s ease forwards 1.8s;
}
#logo path:nth-child(9) {
stroke-dasharray: 571.5776977539062;
stroke-dashoffset: 571.5776977539062;
animation: line-anim 6s ease forwards 2.1s;
}
#logo path:nth-child(10) {
stroke-dasharray: 226.94400024414062;
stroke-dashoffset: 226.94400024414062;
animation: line-anim 6s ease forwards 2.4s;
}
#logo path:nth-child(11) {
stroke-dasharray: 604.48291015625;
stroke-dashoffset: 604.48291015625;
animation: line-anim 6s ease forwards 2.7s;
}
@keyframes line-anim {
to {
stroke-dashoffset: 0;
}
}
@keyframes fill-it {
from {
fill: transparent;
}
to {
fill: white;
}
}