|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- /* This is a compiled file, to make changes persist, consider editing under the templates directory */
- .pace {
- width: 140px;
- height: 300px;
- position: fixed;
- top: -90px;
- right: -20px;
- z-index: 2000;
- -webkit-transform: scale(0);
- -moz-transform: scale(0);
- -ms-transform: scale(0);
- -o-transform: scale(0);
- transform: scale(0);
- opacity: 0;
- -webkit-transition: all 2s linear 0s;
- -moz-transition: all 2s linear 0s;
- transition: all 2s linear 0s;
- }
-
- .pace.pace-active {
- -webkit-transform: scale(.25);
- -moz-transform: scale(.25);
- -ms-transform: scale(.25);
- -o-transform: scale(.25);
- transform: scale(.25);
- opacity: 1;
- }
-
- .pace .pace-activity {
- width: 140px;
- height: 140px;
- border-radius: 70px;
- background: #22df80;
- position: absolute;
- top: 0;
- z-index: 1911;
- -webkit-animation: pace-bounce 1s infinite;
- -moz-animation: pace-bounce 1s infinite;
- -o-animation: pace-bounce 1s infinite;
- -ms-animation: pace-bounce 1s infinite;
- animation: pace-bounce 1s infinite;
- }
-
- .pace .pace-progress {
- position: absolute;
- display: block;
- left: 50%;
- bottom: 0;
- z-index: 1910;
- margin-left: -30px;
- width: 60px;
- height: 75px;
- background: rgba(20, 20, 20, .1);
- box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
- border-radius: 30px / 40px;
- -webkit-transform: scaleY(.3) !important;
- -moz-transform: scaleY(.3) !important;
- -ms-transform: scaleY(.3) !important;
- -o-transform: scaleY(.3) !important;
- transform: scaleY(.3) !important;
- -webkit-animation: pace-compress .5s infinite alternate;
- -moz-animation: pace-compress .5s infinite alternate;
- -o-animation: pace-compress .5s infinite alternate;
- -ms-animation: pace-compress .5s infinite alternate;
- animation: pace-compress .5s infinite alternate;
- }
-
- @-webkit-keyframes pace-bounce {
- 0% {
- top: 0;
- -webkit-animation-timing-function: ease-in;
- }
- 40% {}
- 50% {
- top: 140px;
- height: 140px;
- -webkit-animation-timing-function: ease-out;
- }
- 55% {
- top: 160px;
- height: 120px;
- border-radius: 70px / 60px;
- -webkit-animation-timing-function: ease-in;
- }
- 65% {
- top: 120px;
- height: 140px;
- border-radius: 70px;
- -webkit-animation-timing-function: ease-out;
- }
- 95% {
- top: 0;
- -webkit-animation-timing-function: ease-in;
- }
- 100% {
- top: 0;
- -webkit-animation-timing-function: ease-in;
- }
- }
-
- @-moz-keyframes pace-bounce {
- 0% {
- top: 0;
- -moz-animation-timing-function: ease-in;
- }
- 40% {}
- 50% {
- top: 140px;
- height: 140px;
- -moz-animation-timing-function: ease-out;
- }
- 55% {
- top: 160px;
- height: 120px;
- border-radius: 70px / 60px;
- -moz-animation-timing-function: ease-in;
- }
- 65% {
- top: 120px;
- height: 140px;
- border-radius: 70px;
- -moz-animation-timing-function: ease-out;}
- 95% {
- top: 0;
- -moz-animation-timing-function: ease-in;
- }
- 100% {top: 0;
- -moz-animation-timing-function: ease-in;
- }
- }
-
- @keyframes pace-bounce {
- 0% {
- top: 0;
- animation-timing-function: ease-in;
- }
- 50% {
- top: 140px;
- height: 140px;
- animation-timing-function: ease-out;
- }
- 55% {
- top: 160px;
- height: 120px;
- border-radius: 70px / 60px;
- animation-timing-function: ease-in;
- }
- 65% {
- top: 120px;
- height: 140px;
- border-radius: 70px;
- animation-timing-function: ease-out;
- }
- 95% {
- top: 0;
- animation-timing-function: ease-in;
- }
- 100% {
- top: 0;
- animation-timing-function: ease-in;
- }
- }
-
- @-webkit-keyframes pace-compress {
- 0% {
- bottom: 0;
- margin-left: -30px;
- width: 60px;
- height: 75px;
- background: rgba(20, 20, 20, .1);
- box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
- border-radius: 30px / 40px;
- -webkit-animation-timing-function: ease-in;
- }
- 100% {
- bottom: 30px;
- margin-left: -10px;
- width: 20px;
- height: 5px;
- background: rgba(20, 20, 20, .3);
- box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
- border-radius: 20px / 20px;
- -webkit-animation-timing-function: ease-out;
- }
- }
-
- @-moz-keyframes pace-compress {
- 0% {
- bottom: 0;
- margin-left: -30px;
- width: 60px;
- height: 75px;
- background: rgba(20, 20, 20, .1);
- box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
- border-radius: 30px / 40px;
- -moz-animation-timing-function: ease-in;
- }
- 100% {
- bottom: 30px;
- margin-left: -10px;
- width: 20px;
- height: 5px;
- background: rgba(20, 20, 20, .3);
- box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
- border-radius: 20px / 20px;
- -moz-animation-timing-function: ease-out;
- }
- }
-
- @keyframes pace-compress {
- 0% {
- bottom: 0;
- margin-left: -30px;
- width: 60px;
- height: 75px;
- background: rgba(20, 20, 20, .1);
- box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
- border-radius: 30px / 40px;
- animation-timing-function: ease-in;
- }
- 100% {
- bottom: 30px;
- margin-left: -10px;
- width: 20px;
- height: 5px;
- background: rgba(20, 20, 20, .3);
- box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
- border-radius: 20px / 20px;
- animation-timing-function: ease-out;
- }
- }
|