53 lines
1.6 KiB
CSS
Executable File
53 lines
1.6 KiB
CSS
Executable File
@keyframes ball-spin-fade-loader {
|
|
50% {
|
|
opacity: 0.3;
|
|
transform: scale(0.4); }
|
|
100% {
|
|
opacity: 1;
|
|
transform: scale(1); } }
|
|
|
|
.ball-spin-fade-loader {
|
|
position: relative;
|
|
top: -10px;
|
|
left: -10px; }
|
|
.ball-spin-fade-loader > div:nth-child(1) {
|
|
top: 25px;
|
|
left: 0;
|
|
animation: ball-spin-fade-loader 1s -0.96s infinite linear; }
|
|
.ball-spin-fade-loader > div:nth-child(2) {
|
|
top: 17.045455px;
|
|
left: 17.045455px;
|
|
animation: ball-spin-fade-loader 1s -0.84s infinite linear; }
|
|
.ball-spin-fade-loader > div:nth-child(3) {
|
|
top: 0;
|
|
left: 25px;
|
|
animation: ball-spin-fade-loader 1s -0.72s infinite linear; }
|
|
.ball-spin-fade-loader > div:nth-child(4) {
|
|
top: -17.045455px;
|
|
left: 17.045455px;
|
|
animation: ball-spin-fade-loader 1s -0.6s infinite linear; }
|
|
.ball-spin-fade-loader > div:nth-child(5) {
|
|
top: -25px;
|
|
left: 0;
|
|
animation: ball-spin-fade-loader 1s -0.48s infinite linear; }
|
|
.ball-spin-fade-loader > div:nth-child(6) {
|
|
top: -17.045455px;
|
|
left: -17.045455px;
|
|
animation: ball-spin-fade-loader 1s -0.36s infinite linear; }
|
|
.ball-spin-fade-loader > div:nth-child(7) {
|
|
top: 0;
|
|
left: -25px;
|
|
animation: ball-spin-fade-loader 1s -0.24s infinite linear; }
|
|
.ball-spin-fade-loader > div:nth-child(8) {
|
|
top: 17.045455px;
|
|
left: -17.045455px;
|
|
animation: ball-spin-fade-loader 1s -0.12s infinite linear; }
|
|
.ball-spin-fade-loader > div {
|
|
background-color: #6B6F82;
|
|
width: 15px;
|
|
height: 15px;
|
|
border-radius: 100%;
|
|
margin: 2px;
|
|
animation-fill-mode: both;
|
|
position: absolute; }
|