123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-grid-beat {
- 50% {
- opacity: 0.7;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes ball-grid-beat {
- 50% {
- opacity: 0.7;
- }
- 100% {
- opacity: 1;
- }
- }
- .ball-grid-beat {
- width: 57px;
- }
- .ball-grid-beat > div:nth-child(1) {
- -webkit-animation-delay: -0.08s;
- animation-delay: -0.08s;
- -webkit-animation-duration: 0.75s;
- animation-duration: 0.75s;
- }
- .ball-grid-beat > div:nth-child(2) {
- -webkit-animation-delay: 0.18s;
- animation-delay: 0.18s;
- -webkit-animation-duration: 0.94s;
- animation-duration: 0.94s;
- }
- .ball-grid-beat > div:nth-child(3) {
- -webkit-animation-delay: 0.25s;
- animation-delay: 0.25s;
- -webkit-animation-duration: 0.73s;
- animation-duration: 0.73s;
- }
- .ball-grid-beat > div:nth-child(4) {
- -webkit-animation-delay: 0.05s;
- animation-delay: 0.05s;
- -webkit-animation-duration: 1.45s;
- animation-duration: 1.45s;
- }
- .ball-grid-beat > div:nth-child(5) {
- -webkit-animation-delay: 0.05s;
- animation-delay: 0.05s;
- -webkit-animation-duration: 1.29s;
- animation-duration: 1.29s;
- }
- .ball-grid-beat > div:nth-child(6) {
- -webkit-animation-delay: 0.15s;
- animation-delay: 0.15s;
- -webkit-animation-duration: 1.12s;
- animation-duration: 1.12s;
- }
- .ball-grid-beat > div:nth-child(7) {
- -webkit-animation-delay: 0.63s;
- animation-delay: 0.63s;
- -webkit-animation-duration: 1.07s;
- animation-duration: 1.07s;
- }
- .ball-grid-beat > div:nth-child(8) {
- -webkit-animation-delay: 0.75s;
- animation-delay: 0.75s;
- -webkit-animation-duration: 0.92s;
- animation-duration: 0.92s;
- }
- .ball-grid-beat > div:nth-child(9) {
- -webkit-animation-delay: 0.01s;
- animation-delay: 0.01s;
- -webkit-animation-duration: 1.08s;
- animation-duration: 1.08s;
- }
- .ball-grid-beat > 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-beat;
- animation-name: ball-grid-beat;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-delay: 0;
- animation-delay: 0;
- }
|