[data-name="GitCommitVerticalAnimate"] path[d="M12 3v6"],
[data-name="GitCommitVerticalAnimate"] circle[cx="12"][cy="12"][r="3"],
[data-name="GitCommitVerticalAnimate"] path[d="M12 15v6"] {
opacity: 1;
stroke-dasharray: 20;
stroke-dashoffset: 0;
}
[data-name="GitCommitVerticalAnimate"]:hover path[d="M12 3v6"] {
animation: drawTopPath 0.4s ease-in-out;
}
[data-name="GitCommitVerticalAnimate"]:hover circle[cx="12"][cy="12"][r="3"] {
animation: drawCircle 0.4s ease-in-out 0.15s both;
}
[data-name="GitCommitVerticalAnimate"]:hover path[d="M12 15v6"] {
animation: drawBottomPath 0.4s ease-in-out 0.3s both;
}
@keyframes drawTopPath {
0% {
opacity: 0;
stroke-dashoffset: 20;
}
100% {
opacity: 1;
stroke-dashoffset: 0;
}
}
@keyframes drawCircle {
0% {
opacity: 0;
stroke-dashoffset: 20;
}
25% {
opacity: 1;
}
100% {
opacity: 1;
stroke-dashoffset: 0;
}
}
@keyframes drawBottomPath {
0% {
opacity: 0;
stroke-dashoffset: 20;
}
50% {
opacity: 1;
}
100% {
opacity: 1;
stroke-dashoffset: 0;
}
}