ef0f3ffbfb
And use lowercase-hyphenated syntax for variables/mixins.
38 lines
583 B
SCSS
38 lines
583 B
SCSS
@keyframes pulse {
|
|
from {
|
|
opacity: 0.1;
|
|
}
|
|
to {
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
.loading-spinner {
|
|
margin-top: 12rem;
|
|
text-align: center;
|
|
font-size: 1.4rem;
|
|
color: $primary-color;
|
|
|
|
@include media($mobile) {
|
|
margin-top: 6rem;
|
|
}
|
|
|
|
svg {
|
|
width: 200px;
|
|
height: 200px;
|
|
margin-bottom: 2rem;
|
|
|
|
#path-comet {
|
|
fill: $primary-color;
|
|
opacity: 0.1;
|
|
|
|
animation-name: pulse;
|
|
animation-iteration-count: infinite;
|
|
animation-timing-function: ease-in-out;
|
|
animation-direction: alternate;
|
|
animation-duration: 1s;
|
|
}
|
|
}
|
|
}
|
|
|