Edit File: line-scale-pulse-out-rapid.css
/*======================================================== DARK LAYOUT =========================================================*/ @-webkit-keyframes line-scale-pulse-out-rapid { 0% { -webkit-transform : scaley(1); transform : scaley(1); } 80% { -webkit-transform : scaley(0.3); transform : scaley(0.3); } 90% { -webkit-transform : scaley(1); transform : scaley(1); } } @keyframes line-scale-pulse-out-rapid { 0% { -webkit-transform : scaley(1); transform : scaley(1); } 80% { -webkit-transform : scaley(0.3); transform : scaley(0.3); } 90% { -webkit-transform : scaley(1); transform : scaley(1); } } .line-scale-pulse-out-rapid > div { background-color : #B8C2CC; width : 4px; height : 3.45rem; border-radius : 2px; margin : 2px; -webkit-animation-fill-mode : both; animation-fill-mode : both; display : inline-block; vertical-align : middle; -webkit-animation : line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); animation : line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); } .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) { -webkit-animation-delay : -0.25s !important; animation-delay : -0.25s !important; } .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) { -webkit-animation-delay : 0s !important; animation-delay : 0s !important; }
Back to File Manager