19 lines
370 B
CSS
Executable File
19 lines
370 B
CSS
Executable File
@keyframes ball-scale {
|
|
0% {
|
|
transform: scale(0); }
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 0; } }
|
|
|
|
.ball-scale > div {
|
|
background-color: #6B6F82;
|
|
width: 15px;
|
|
height: 15px;
|
|
border-radius: 100%;
|
|
margin: 2px;
|
|
animation-fill-mode: both;
|
|
display: inline-block;
|
|
height: 60px;
|
|
width: 60px;
|
|
animation: ball-scale 1s 0s ease-in-out infinite; }
|