blob: f66813715b2e4fcde352802614f3cc22c5e04b5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.path {
stroke-dasharray: 890;
stroke-dashoffset: 890;
animation: dash 3s ease-in-out forwards normal infinite;
}
@keyframes dash {
from {
stroke-dashoffset: 890;
}
to {
stroke-dashoffset: 0;
}
}
|