meshviewer/scss/modules/_loader.scss

24 lines
330 B
SCSS
Raw Normal View History

2016-06-01 20:56:26 +00:00
.loader {
color: $color-primary;
font-size: 1.8em;
line-height: 2;
margin: 30vh auto;
text-align: center;
}
.spinner {
path {
&:first-of-type {
animation: 1s spinner ease-in-out infinite alternate;
opacity: 1;
}
}
2016-06-01 20:56:26 +00:00
}
@keyframes spinner {
to {
filter: grayscale(.8);
opacity: .2;
2016-06-01 20:56:26 +00:00
}
}