elm-pages-v3-beta/examples/docs/style.css
2019-09-24 11:40:30 -07:00

29 lines
549 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%;
}
@media all and (max-width: 600px) {
#navbar-title {
font-size: 20px !important;
}
#navbar-title svg {
width: 20px;
}
}