/*======================================================== DARK LAYOUT =========================================================*/ @-webkit-keyframes line-scale-party { 0% { transform: scale(1); } 50% { transform: scale(0.5); } 100% { transform: scale(1); } } @keyframes line-scale-party { 0% { transform: scale(1); } 50% { transform: scale(0.5); } 100% { transform: scale(1); } } .line-scale-party > div:nth-child(1) { -webkit-animation-delay: 0.06s; animation-delay: 0.06s; -webkit-animation-duration: 1.13s; animation-duration: 1.13s; } .line-scale-party > div:nth-child(2) { -webkit-animation-delay: 0.79s; animation-delay: 0.79s; -webkit-animation-duration: 0.75s; animation-duration: 0.75s; } .line-scale-party > div:nth-child(3) { -webkit-animation-delay: 0.65s; animation-delay: 0.65s; -webkit-animation-duration: 1.09s; animation-duration: 1.09s; } .line-scale-party > div:nth-child(4) { -webkit-animation-delay: -0.1s; animation-delay: -0.1s; -webkit-animation-duration: 1.1s; animation-duration: 1.1s; } .line-scale-party > 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; -webkit-animation-name: line-scale-party; animation-name: line-scale-party; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-delay: 0; animation-delay: 0; }