mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-28 23:12:22 +03:00
17 lines
375 B
CSS
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;
|
||
|
}
|
||
|
}
|