meshviewer/scss/modules/_loader.scss

24 lines
396 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 {
animation: .6s spinner ease-in-out infinite alternate;
border-bottom: 2px solid $color-primary;
border-radius: 50%;
display: inline-block;
height: 64px;
margin-top: 10px;
width: 64px;
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}