You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
637 B
Plaintext

/*
.path-yel-in {
animation: draw 10s infinite;
animation-delay: 1s;
animation-timing-function: linear;
}
.path-yel-out {
animation: draw 10s infinite;
animation-timing-function: linear;
}
.path-left {
animation-delay: 2s;
}
.path-bottom {
animation-delay: 4s;
}
.circuit-path {
animation: circuit 20s linear infinite;
animation-delay: 2s;
}
.circuit-static, .circuit-anim {
left: 50%;
top: 50%;
transform: translate(-50%, -50%), translateZ(0);
position: absolute;
}
.circuit-anim {
backface-visibility: hidden;
}
@keyframes circuit {
100% {
stroke-dashoffset: 0;
stroke-opacity: 0.6;
}
}
*/