| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460 |
- .loading {
- height: 100vh;
- width: 100vw;
- overflow: hidden;
- background-color: #3c3c3c;
- display: flex;
- justify-content: center;
- align-items: center;
- position: fixed;
- top: 0;
- left: 0;
- user-select: none;
- }
- .loader {
- position: relative;
- }
- @keyframes stroke {
- 0% {
- fill: rgba(72, 138, 20, 0);
- stroke: rgba(54, 95, 160, 1);
- stroke-dashoffset: 25%;
- stroke-dasharray: 0 50%;
- stroke-width: 1;
- text-shadow: none;
- }
- 70% {
- fill: rgba(72, 138, 20, 0);
- stroke: rgba(54, 95, 160, 1);
- stroke-width: 3;
- text-shadow: none;
- }
- 90%,
- 100% {
- fill: rgba(255,255,255, 1);
- stroke: rgba(0, 0, 0, 0);
- stroke-dashoffset: -25%;
- stroke-dasharray: 50% 0;
- stroke-width: 0;
- text-shadow: 0 0 10px #ccc;
- }
- }
- .loader .logo {
- position: absolute;
- top: -150px;
- left: 50%;
- margin-left: calc((4 * 80px + 50px) / -2);
- }
- .loader svg {
- display: block;
- height: 120px;
- width: calc(4 * 80px + 50px);
- }
- .loader svg text {
- /*color: #FFFFFF;*/
- animation: stroke 5s infinite alternate;
- letter-spacing: 10px;
- font-size: 80px;
- /*text-shadow: 0 0 4px #FFFFFF;*/
- }
- .loader .dot {
- -webkit-animation-name: movement;
- animation-name: movement;
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- height: 10px;
- position: absolute;
- top: -10px;
- transform: translate3d(0, -25px, 0) scale(1);
- width: 10px;
- }
- .loader .dot:nth-of-type(1) {
- -webkit-animation-delay: -0.1s;
- animation-delay: -0.1s;
- left: 150px;
- }
- .loader .dot:nth-of-type(1)::before {
- -webkit-animation-delay: -0.1s;
- animation-delay: -0.1s;
- }
- .loader .dot:nth-of-type(2) {
- -webkit-animation-delay: -1.2s;
- animation-delay: -1.2s;
- left: 150px;
- }
- .loader .dot:nth-of-type(2)::before {
- -webkit-animation-delay: -1.2s;
- animation-delay: -1.2s;
- }
- .loader .dot:nth-of-type(3) {
- -webkit-animation-delay: -0.3s;
- animation-delay: -0.3s;
- left: 125px;
- }
- .loader .dot:nth-of-type(3)::before {
- -webkit-animation-delay: -0.3s;
- animation-delay: -0.3s;
- }
- .loader .dot:nth-of-type(4) {
- -webkit-animation-delay: -1.4s;
- animation-delay: -1.4s;
- left: 125px;
- }
- .loader .dot:nth-of-type(4)::before {
- -webkit-animation-delay: -1.4s;
- animation-delay: -1.4s;
- }
- .loader .dot:nth-of-type(5) {
- -webkit-animation-delay: -0.5s;
- animation-delay: -0.5s;
- left: 100px;
- }
- .loader .dot:nth-of-type(5)::before {
- -webkit-animation-delay: -0.5s;
- animation-delay: -0.5s;
- }
- .loader .dot:nth-of-type(6) {
- -webkit-animation-delay: -1.6s;
- animation-delay: -1.6s;
- left: 100px;
- }
- .loader .dot:nth-of-type(6)::before {
- -webkit-animation-delay: -1.6s;
- animation-delay: -1.6s;
- }
- .loader .dot:nth-of-type(7) {
- -webkit-animation-delay: -0.7s;
- animation-delay: -0.7s;
- left: 75px;
- }
- .loader .dot:nth-of-type(7)::before {
- -webkit-animation-delay: -0.7s;
- animation-delay: -0.7s;
- }
- .loader .dot:nth-of-type(8) {
- -webkit-animation-delay: -1.8s;
- animation-delay: -1.8s;
- left: 75px;
- }
- .loader .dot:nth-of-type(8)::before {
- -webkit-animation-delay: -1.8s;
- animation-delay: -1.8s;
- }
- .loader .dot:nth-of-type(9) {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
- left: 50px;
- }
- .loader .dot:nth-of-type(9)::before {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
- }
- .loader .dot:nth-of-type(10) {
- -webkit-animation-delay: -2s;
- animation-delay: -2s;
- left: 50px;
- }
- .loader .dot:nth-of-type(10)::before {
- -webkit-animation-delay: -2s;
- animation-delay: -2s;
- }
- .loader .dot:nth-of-type(11) {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
- left: 25px;
- }
- .loader .dot:nth-of-type(11)::before {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
- }
- .loader .dot:nth-of-type(12) {
- -webkit-animation-delay: -2.2s;
- animation-delay: -2.2s;
- left: 25px;
- }
- .loader .dot:nth-of-type(12)::before {
- -webkit-animation-delay: -2.2s;
- animation-delay: -2.2s;
- }
- .loader .dot:nth-of-type(13) {
- -webkit-animation-delay: -1.3s;
- animation-delay: -1.3s;
- left: 0px;
- }
- .loader .dot:nth-of-type(13)::before {
- -webkit-animation-delay: -1.3s;
- animation-delay: -1.3s;
- }
- .loader .dot:nth-of-type(14) {
- -webkit-animation-delay: -2.4s;
- animation-delay: -2.4s;
- left: 0px;
- }
- .loader .dot:nth-of-type(14)::before {
- -webkit-animation-delay: -2.4s;
- animation-delay: -2.4s;
- }
- .loader .dot:nth-of-type(15) {
- -webkit-animation-delay: -1.5s;
- animation-delay: -1.5s;
- left: -25px;
- }
- .loader .dot:nth-of-type(15)::before {
- -webkit-animation-delay: -1.5s;
- animation-delay: -1.5s;
- }
- .loader .dot:nth-of-type(16) {
- -webkit-animation-delay: -2.6s;
- animation-delay: -2.6s;
- left: -25px;
- }
- .loader .dot:nth-of-type(16)::before {
- -webkit-animation-delay: -2.6s;
- animation-delay: -2.6s;
- }
- .loader .dot:nth-of-type(17) {
- -webkit-animation-delay: -1.7s;
- animation-delay: -1.7s;
- left: -50px;
- }
- .loader .dot:nth-of-type(17)::before {
- -webkit-animation-delay: -1.7s;
- animation-delay: -1.7s;
- }
- .loader .dot:nth-of-type(18) {
- -webkit-animation-delay: -2.8s;
- animation-delay: -2.8s;
- left: -50px;
- }
- .loader .dot:nth-of-type(18)::before {
- -webkit-animation-delay: -2.8s;
- animation-delay: -2.8s;
- }
- .loader .dot:nth-of-type(19) {
- -webkit-animation-delay: -1.9s;
- animation-delay: -1.9s;
- left: -75px;
- }
- .loader .dot:nth-of-type(19)::before {
- -webkit-animation-delay: -1.9s;
- animation-delay: -1.9s;
- }
- .loader .dot:nth-of-type(20) {
- -webkit-animation-delay: -3s;
- animation-delay: -3s;
- left: -75px;
- }
- .loader .dot:nth-of-type(20)::before {
- -webkit-animation-delay: -3s;
- animation-delay: -3s;
- }
- .loader .dot:nth-of-type(21) {
- -webkit-animation-delay: -2.1s;
- animation-delay: -2.1s;
- left: -100px;
- }
- .loader .dot:nth-of-type(21)::before {
- -webkit-animation-delay: -2.1s;
- animation-delay: -2.1s;
- }
- .loader .dot:nth-of-type(22) {
- -webkit-animation-delay: -3.2s;
- animation-delay: -3.2s;
- left: -100px;
- }
- .loader .dot:nth-of-type(22)::before {
- -webkit-animation-delay: -3.2s;
- animation-delay: -3.2s;
- }
- .loader .dot:nth-of-type(23) {
- -webkit-animation-delay: -2.3s;
- animation-delay: -2.3s;
- left: -125px;
- }
- .loader .dot:nth-of-type(23)::before {
- -webkit-animation-delay: -2.3s;
- animation-delay: -2.3s;
- }
- .loader .dot:nth-of-type(24) {
- -webkit-animation-delay: -3.4s;
- animation-delay: -3.4s;
- left: -125px;
- }
- .loader .dot:nth-of-type(24)::before {
- -webkit-animation-delay: -3.4s;
- animation-delay: -3.4s;
- }
- .loader .dot:nth-of-type(25) {
- -webkit-animation-delay: -2.5s;
- animation-delay: -2.5s;
- left: -150px;
- }
- .loader .dot:nth-of-type(25)::before {
- -webkit-animation-delay: -2.5s;
- animation-delay: -2.5s;
- }
- .loader .dot:nth-of-type(26) {
- -webkit-animation-delay: -3.6s;
- animation-delay: -3.6s;
- left: -150px;
- }
- .loader .dot:nth-of-type(26)::before {
- -webkit-animation-delay: -3.6s;
- animation-delay: -3.6s;
- }
- .loader .dot::before {
- -webkit-animation-name: size-opacity;
- animation-name: size-opacity;
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease;
- animation-timing-function: ease;
- background: white;
- border-radius: 50%;
- content: "";
- display: block;
- height: 100%;
- width: 100%;
- }
- .loader .dot:nth-of-type(even)::before {
- background-color: #ff47aa;
- box-shadow: inset 0 0 4px #ff1492;
- }
- @-webkit-keyframes movement {
- 0% {
- transform: translate3d(0, -25px, 0);
- z-index: 0;
- }
- 50% {
- transform: translate3d(0, 25px, 0);
- z-index: 10;
- }
- 100% {
- transform: translate3d(0, -25px, 0);
- z-index: -5;
- }
- }
- @keyframes movement {
- 0% {
- transform: translate3d(0, -25px, 0);
- z-index: 0;
- }
- 50% {
- transform: translate3d(0, 25px, 0);
- z-index: 10;
- }
- 100% {
- transform: translate3d(0, -25px, 0);
- z-index: -5;
- }
- }
- @-webkit-keyframes size-opacity {
- 0% {
- opacity: 1;
- transform: scale(1);
- }
- 25% {
- transform: scale(1.5);
- }
- 50% {
- opacity: 1;
- }
- 75% {
- opacity: 0.35;
- transform: scale(0.5);
- }
- 100% {
- opacity: 1;
- transform: scale(1);
- }
- }
- @keyframes size-opacity {
- 0% {
- opacity: 1;
- transform: scale(1);
- }
- 25% {
- transform: scale(1.5);
- }
- 50% {
- opacity: 1;
- }
- 75% {
- opacity: 0.35;
- transform: scale(0.5);
- }
- 100% {
- opacity: 1;
- transform: scale(1);
- }
- }
|