-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (67 loc) · 1.3 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (67 loc) · 1.3 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.head{
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#text-fill{
width: 600px;
margin-bottom: 20px;
border-top-left-radius: 50px;
border-top-right-radius: 50px;
border-bottom-left-radius: 50px;
border-bottom-right-radius: 50px;
}
.logo{
margin-bottom: 20px;
}
#svg_logo{
stroke-dasharray: 572;
stroke-dashoffset:572;
animation: line-anim 2s ease forwards 0.2s;
}
/*#svg_logo path:nth-child(2){
}
#svg_logo path:nth-child(3){
stroke-dasharray: 500;
stroke-dashoffset:500;
animation: line-anim 2s ease forwards 0.4s;
}
#svg_logo path:nth-child(4){
stroke-dasharray: 572;
stroke-dashoffset:572;
animation: line-anim 2s ease forwards 0.6s;
}
#svg_logo path:nth-child(5){
stroke-dasharray: 572;
stroke-dashoffset:572;
animation: line-anim 2s ease forwards 0.8s;
}
#svg_logo path:nth-child(6){
stroke-dasharray: 572;
stroke-dashoffset:572;
animation: line-anim 2s ease forwards 1s;
}
#svg_logo path:nth-child(7){
stroke-dasharray: 572;
stroke-dashoffset:572;
animation: line-anim 2s ease forwards 1.2s;
}*/
@keyframes line-anim{
from{
fill: transparent;
}
to{
fill: white;
stroke-dashoffset:0;
}
}
form{
margin-bottom:50px;
}