| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-pulse-rise-even {
- 0% {
- transform: scale(1.1);
- }
- 25% {
- transform: translateY(-30px);
- }
- 50% {
- transform: scale(0.4);
- }
- 75% {
- transform: translateY(30px);
- }
- 100% {
- transform: translateY(0);
- transform: scale(1);
- }
- }
- @keyframes ball-pulse-rise-even {
- 0% {
- transform: scale(1.1);
- }
- 25% {
- transform: translateY(-30px);
- }
- 50% {
- transform: scale(0.4);
- }
- 75% {
- transform: translateY(30px);
- }
- 100% {
- transform: translateY(0);
- transform: scale(1);
- }
- }
- @-webkit-keyframes ball-pulse-rise-odd {
- 0% {
- transform: scale(0.4);
- }
- 25% {
- transform: translateY(30px);
- }
- 50% {
- transform: scale(1.1);
- }
- 75% {
- transform: translateY(-30px);
- }
- 100% {
- transform: translateY(0);
- transform: scale(0.75);
- }
- }
- @keyframes ball-pulse-rise-odd {
- 0% {
- transform: scale(0.4);
- }
- 25% {
- transform: translateY(30px);
- }
- 50% {
- transform: scale(1.1);
- }
- 75% {
- transform: translateY(-30px);
- }
- 100% {
- transform: translateY(0);
- transform: scale(0.75);
- }
- }
- .ball-pulse-rise > 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;
- -webkit-animation-duration: 1s;
- animation-duration: 1s;
- -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
- animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-delay: 0;
- animation-delay: 0;
- }
- .ball-pulse-rise > div:nth-child(2n) {
- -webkit-animation-name: ball-pulse-rise-even;
- animation-name: ball-pulse-rise-even;
- }
- .ball-pulse-rise > div:nth-child(2n-1) {
- -webkit-animation-name: ball-pulse-rise-odd;
- animation-name: ball-pulse-rise-odd;
- }
|