elm-pages-v3-beta/examples/docs/style.css
2019-09-09 20:10:50 -07:00

21 lines
414 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;
}
}
.avatar img {
border-radius: 50%;
}