d2/d2renderers/d2svg/style.css
Alexander Wang cc0a048757
test
2023-01-12 10:29:13 -08:00

24 lines
363 B
CSS

.shape {
shape-rendering: geometricPrecision;
stroke-linejoin: round;
}
.connection {
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
opacity: 0.5;
}
@keyframes dashdraw {
from {
stroke-dashoffset: 30;
}
}
path[stroke-dasharray] {
stroke-dasharray: 15 15;
animation: dashdraw 0.5s linear infinite;
}