elm-pages-v3-beta/examples/docs/style.css
2019-08-17 07:20:27 -07:00

17 lines
375 B
CSS

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Roboto&display=swap");
.dotted-line {
-webkit-animation: animation-yweh2o 400ms linear infinite;
animation: animation-yweh2o 400ms linear infinite;
}
@-webkit-keyframes animation-yweh2o {
to {
stroke-dashoffset: 10;
}
}
@keyframes animation-yweh2o {
to {
stroke-dashoffset: 10;
}
}