1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes rotate {
- 0% {
- transform: rotate(0deg);
- }
- 50% {
- transform: rotate(180deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- @keyframes rotate {
- 0% {
- transform: rotate(0deg);
- }
- 50% {
- transform: rotate(180deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- .ball-rotate {
- position: relative;
- }
- .ball-rotate > div {
- background-color: #b8c2cc;
- width: 15px;
- height: 15px;
- border-radius: 100%;
- margin: 2px;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- position: relative;
- }
- .ball-rotate > div:first-child {
- -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
- animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
- }
- .ball-rotate > div:before,
- .ball-rotate > div:after {
- background-color: #b8c2cc;
- width: 15px;
- height: 15px;
- border-radius: 100%;
- margin: 2px;
- content: "";
- position: absolute;
- opacity: 0.8;
- }
- .ball-rotate > div:before {
- top: 0px;
- left: -28px;
- }
- .ball-rotate > div:after {
- top: 0px;
- left: 25px;
- }
|