1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-scale-ripple {
- 0% {
- transform: scale(0.1);
- opacity: 1;
- }
- 70% {
- transform: scale(1);
- opacity: 0.7;
- }
- 100% {
- opacity: 0;
- }
- }
- @keyframes ball-scale-ripple {
- 0% {
- transform: scale(0.1);
- opacity: 1;
- }
- 70% {
- transform: scale(1);
- opacity: 0.7;
- }
- 100% {
- opacity: 0;
- }
- }
- .ball-scale-ripple > div {
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- height: 50px;
- width: 50px;
- border-radius: 100%;
- border: 2px solid #b8c2cc;
- -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
- animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
- }
|