Files
remark42/web/app/components/root/_loading/root_loading.scss
T
2018-02-02 21:10:13 +02:00

40 lines
519 B
SCSS

// TODO: add true preloader
.root_loading {
position: relative;
height: 3em;
&::after {
content: 'Loading..';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
animation: rootLoading 1s infinite;
}
@keyframes rootLoading {
0% {
content: 'Loading..';
}
25% {
content: 'Loading...';
}
50% {
content: 'Loading..';
}
75% {
content: 'Loading.';
}
100% {
content: 'Loading.';
}
}
}