1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-scale {
- 0% {
- transform: scale(0);
- }
- 100% {
- transform: scale(1);
- opacity: 0;
- }
- }
- @keyframes ball-scale {
- 0% {
- transform: scale(0);
- }
- 100% {
- transform: scale(1);
- opacity: 0;
- }
- }
- .ball-scale > 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;
- height: 60px;
- width: 60px;
- -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
- animation: ball-scale 1s 0s ease-in-out infinite;
- }
|