1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-zig {
- 33% {
- transform: translate(-15px, -30px);
- }
- 66% {
- transform: translate(15px, -30px);
- }
- 100% {
- transform: translate(0, 0);
- }
- }
- @keyframes ball-zig {
- 33% {
- transform: translate(-15px, -30px);
- }
- 66% {
- transform: translate(15px, -30px);
- }
- 100% {
- transform: translate(0, 0);
- }
- }
- @-webkit-keyframes ball-zag {
- 33% {
- transform: translate(15px, 30px);
- }
- 66% {
- transform: translate(-15px, 30px);
- }
- 100% {
- transform: translate(0, 0);
- }
- }
- @keyframes ball-zag {
- 33% {
- transform: translate(15px, 30px);
- }
- 66% {
- transform: translate(-15px, 30px);
- }
- 100% {
- transform: translate(0, 0);
- }
- }
- .ball-zig-zag {
- position: relative;
- transform: translate(-15px, -15px);
- }
- .ball-zig-zag > div {
- background-color: #b8c2cc;
- width: 15px;
- height: 15px;
- border-radius: 100%;
- margin: 2px;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- position: absolute;
- margin-left: 15px;
- top: 4px;
- left: -7px;
- }
- .ball-zig-zag > div:first-child {
- -webkit-animation: ball-zig 0.7s 0s infinite linear;
- animation: ball-zig 0.7s 0s infinite linear;
- }
- .ball-zig-zag > div:last-child {
- -webkit-animation: ball-zag 0.7s 0s infinite linear;
- animation: ball-zag 0.7s 0s infinite linear;
- }
|