1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-scale-multiple {
- 0% {
- transform: scale(0);
- opacity: 0;
- }
- 5% {
- opacity: 1;
- }
- 100% {
- transform: scale(1);
- opacity: 0;
- }
- }
- @keyframes ball-scale-multiple {
- 0% {
- transform: scale(0);
- opacity: 0;
- }
- 5% {
- opacity: 1;
- }
- 100% {
- transform: scale(1);
- opacity: 0;
- }
- }
- .ball-scale-multiple {
- position: relative;
- }
- .ball-scale-multiple > div:nth-child(2) {
- -webkit-animation-delay: -0.4s;
- animation-delay: -0.4s;
- }
- .ball-scale-multiple > div:nth-child(3) {
- -webkit-animation-delay: -0.2s;
- animation-delay: -0.2s;
- }
- .ball-scale-multiple > div {
- background-color: #b8c2cc;
- width: 15px;
- height: 15px;
- border-radius: 100%;
- margin: 2px;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- position: absolute;
- top: 0px;
- opacity: 0;
- margin: 0;
- width: 60px;
- height: 60px;
- -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
- animation: ball-scale-multiple 1s 0s linear infinite;
- }
|