123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-grid-pulse {
- 0% {
- transform: scale(1);
- }
- 50% {
- transform: scale(0.5);
- opacity: 0.7;
- }
- 100% {
- transform: scale(1);
- opacity: 1;
- }
- }
- @keyframes ball-grid-pulse {
- 0% {
- transform: scale(1);
- }
- 50% {
- transform: scale(0.5);
- opacity: 0.7;
- }
- 100% {
- transform: scale(1);
- opacity: 1;
- }
- }
- .ball-grid-pulse {
- width: 57px;
- }
- .ball-grid-pulse > div:nth-child(1) {
- -webkit-animation-delay: 0.52s;
- animation-delay: 0.52s;
- -webkit-animation-duration: 0.79s;
- animation-duration: 0.79s;
- }
- .ball-grid-pulse > div:nth-child(2) {
- -webkit-animation-delay: 0.62s;
- animation-delay: 0.62s;
- -webkit-animation-duration: 0.87s;
- animation-duration: 0.87s;
- }
- .ball-grid-pulse > div:nth-child(3) {
- -webkit-animation-delay: 0.68s;
- animation-delay: 0.68s;
- -webkit-animation-duration: 1.36s;
- animation-duration: 1.36s;
- }
- .ball-grid-pulse > div:nth-child(4) {
- -webkit-animation-delay: 0.17s;
- animation-delay: 0.17s;
- -webkit-animation-duration: 1.32s;
- animation-duration: 1.32s;
- }
- .ball-grid-pulse > div:nth-child(5) {
- -webkit-animation-delay: -0.01s;
- animation-delay: -0.01s;
- -webkit-animation-duration: 1.46s;
- animation-duration: 1.46s;
- }
- .ball-grid-pulse > div:nth-child(6) {
- -webkit-animation-delay: 0.01s;
- animation-delay: 0.01s;
- -webkit-animation-duration: 1.11s;
- animation-duration: 1.11s;
- }
- .ball-grid-pulse > div:nth-child(7) {
- -webkit-animation-delay: 0.57s;
- animation-delay: 0.57s;
- -webkit-animation-duration: 1.37s;
- animation-duration: 1.37s;
- }
- .ball-grid-pulse > div:nth-child(8) {
- -webkit-animation-delay: 0.62s;
- animation-delay: 0.62s;
- -webkit-animation-duration: 1.51s;
- animation-duration: 1.51s;
- }
- .ball-grid-pulse > div:nth-child(9) {
- -webkit-animation-delay: 0.11s;
- animation-delay: 0.11s;
- -webkit-animation-duration: 0.86s;
- animation-duration: 0.86s;
- }
- .ball-grid-pulse > 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;
- float: left;
- -webkit-animation-name: ball-grid-pulse;
- animation-name: ball-grid-pulse;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-delay: 0;
- animation-delay: 0;
- }
|