12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-pulse-sync {
- 33% {
- transform: translateY(10px);
- }
- 66% {
- transform: translateY(-10px);
- }
- 100% {
- transform: translateY(0);
- }
- }
- @keyframes ball-pulse-sync {
- 33% {
- transform: translateY(10px);
- }
- 66% {
- transform: translateY(-10px);
- }
- 100% {
- transform: translateY(0);
- }
- }
- .ball-pulse-sync > div:nth-child(1) {
- -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
- animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
- }
- .ball-pulse-sync > div:nth-child(2) {
- -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
- animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
- }
- .ball-pulse-sync > div:nth-child(3) {
- -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
- animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
- }
- .ball-pulse-sync > div {
- background-color: #b8c2cc;
- width: 15px;
- height: 15px;
- border-radius: 100%;
- margin: 2px;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- display: inline-block;
- }
|