22 lines
680 B
CSS
Executable File
22 lines
680 B
CSS
Executable File
@keyframes line-scale-pulse-out {
|
|
0% {
|
|
transform: scaley(1); }
|
|
50% {
|
|
transform: scaley(0.4); }
|
|
100% {
|
|
transform: scaley(1); } }
|
|
|
|
.line-scale-pulse-out > div {
|
|
background-color: #6B6F82;
|
|
width: 4px;
|
|
height: 3.45rem;
|
|
border-radius: 2px;
|
|
margin: 2px;
|
|
animation-fill-mode: both;
|
|
display: inline-block;
|
|
animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }
|
|
.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
|
|
animation-delay: -0.4s !important; }
|
|
.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
|
|
animation-delay: -0.2s !important; }
|