123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes ball-triangle-path-1 {
- 33% {
- transform: translate(25px, -50px);
- }
- 66% {
- transform: translate(50px, 0px);
- }
- 100% {
- transform: translate(0px, 0px);
- }
- }
- @keyframes ball-triangle-path-1 {
- 33% {
- transform: translate(25px, -50px);
- }
- 66% {
- transform: translate(50px, 0px);
- }
- 100% {
- transform: translate(0px, 0px);
- }
- }
- @-webkit-keyframes ball-triangle-path-2 {
- 33% {
- transform: translate(25px, 50px);
- }
- 66% {
- transform: translate(-25px, 50px);
- }
- 100% {
- transform: translate(0px, 0px);
- }
- }
- @keyframes ball-triangle-path-2 {
- 33% {
- transform: translate(25px, 50px);
- }
- 66% {
- transform: translate(-25px, 50px);
- }
- 100% {
- transform: translate(0px, 0px);
- }
- }
- @-webkit-keyframes ball-triangle-path-3 {
- 33% {
- transform: translate(-50px, 0px);
- }
- 66% {
- transform: translate(-25px, -50px);
- }
- 100% {
- transform: translate(0px, 0px);
- }
- }
- @keyframes ball-triangle-path-3 {
- 33% {
- transform: translate(-50px, 0px);
- }
- 66% {
- transform: translate(-25px, -50px);
- }
- 100% {
- transform: translate(0px, 0px);
- }
- }
- .ball-triangle-path {
- position: relative;
- transform: translate(-29.9940011998px, -37.5093773443px);
- }
- .ball-triangle-path > div:nth-child(1) {
- -webkit-animation-name: ball-triangle-path-1;
- animation-name: ball-triangle-path-1;
- -webkit-animation-delay: 0;
- animation-delay: 0;
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- }
- .ball-triangle-path > div:nth-child(2) {
- -webkit-animation-name: ball-triangle-path-2;
- animation-name: ball-triangle-path-2;
- -webkit-animation-delay: 0;
- animation-delay: 0;
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- }
- .ball-triangle-path > div:nth-child(3) {
- -webkit-animation-name: ball-triangle-path-3;
- animation-name: ball-triangle-path-3;
- -webkit-animation-delay: 0;
- animation-delay: 0;
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- }
- .ball-triangle-path > div {
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- position: absolute;
- width: 10px;
- height: 10px;
- border-radius: 100%;
- border: 1px solid #b8c2cc;
- }
- .ball-triangle-path > div:nth-of-type(1) {
- top: 50px;
- }
- .ball-triangle-path > div:nth-of-type(2) {
- left: 25px;
- }
- .ball-triangle-path > div:nth-of-type(3) {
- top: 50px;
- left: 50px;
- }
|