| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- /* ==========================================================================
- Variables
- ========================================================================== */
- @-webkit-keyframes showSweetAlert {
- 0% {
- transform: scale(0.7);
- -webkit-transform: scale(0.7);
- }
- 45% {
- transform: scale(1.05);
- -webkit-transform: scale(1.05);
- }
- 80% {
- -webkit-transform: scale(0.95);
- transform: scale(0.95);
- -webkit-tranform: scale(0.95);
- }
- 100% {
- transform: scale(1);
- -webkit-transform: scale(1);
- }
- }
- @keyframes showSweetAlert {
- 0% {
- transform: scale(0.7);
- -webkit-transform: scale(0.7);
- }
- 45% {
- transform: scale(1.05);
- -webkit-transform: scale(1.05);
- }
- 80% {
- -webkit-transform: scale(0.95);
- transform: scale(0.95);
- -webkit-tranform: scale(0.95);
- }
- 100% {
- transform: scale(1);
- -webkit-transform: scale(1);
- }
- }
- @-webkit-keyframes hideSweetAlert {
- 0% {
- transform: scale(1);
- -webkit-transform: scale(1);
- }
- 100% {
- transform: scale(0.5);
- -webkit-transform: scale(0.5);
- }
- }
- @keyframes hideSweetAlert {
- 0% {
- transform: scale(1);
- -webkit-transform: scale(1);
- }
- 100% {
- transform: scale(0.5);
- -webkit-transform: scale(0.5);
- }
- }
- .showSweetAlert {
- -webkit-animation: showSweetAlert 0.3s;
- animation: showSweetAlert 0.3s;
- }
- .hideSweetAlert {
- -webkit-animation: hideSweetAlert 0.2s;
- animation: hideSweetAlert 0.2s;
- }
- @-webkit-keyframes animateSuccessTip {
- 0% {
- width: 0;
- left: 1px;
- top: 19px;
- }
- 54% {
- width: 0;
- left: 1px;
- top: 19px;
- }
- 70% {
- width: 50px;
- left: -8px;
- top: 37px;
- }
- 84% {
- width: 17px;
- left: 21px;
- top: 48px;
- }
- 100% {
- width: 25px;
- left: 14px;
- top: 45px;
- }
- }
- @keyframes animateSuccessTip {
- 0% {
- width: 0;
- left: 1px;
- top: 19px;
- }
- 54% {
- width: 0;
- left: 1px;
- top: 19px;
- }
- 70% {
- width: 50px;
- left: -8px;
- top: 37px;
- }
- 84% {
- width: 17px;
- left: 21px;
- top: 48px;
- }
- 100% {
- width: 25px;
- left: 14px;
- top: 45px;
- }
- }
- @-webkit-keyframes animateSuccessLong {
- 0% {
- width: 0;
- right: 46px;
- top: 54px;
- }
- 65% {
- width: 0;
- right: 46px;
- top: 54px;
- }
- 84% {
- width: 55px;
- right: 0px;
- top: 35px;
- }
- 100% {
- width: 47px;
- right: 8px;
- top: 38px;
- }
- }
- @keyframes animateSuccessLong {
- 0% {
- width: 0;
- right: 46px;
- top: 54px;
- }
- 65% {
- width: 0;
- right: 46px;
- top: 54px;
- }
- 84% {
- width: 55px;
- right: 0px;
- top: 35px;
- }
- 100% {
- width: 47px;
- right: 8px;
- top: 38px;
- }
- }
- @-webkit-keyframes rotatePlaceholder {
- 0% {
- transform: rotate(-45deg);
- -webkit-transform: rotate(-45deg);
- }
- 5% {
- transform: rotate(-45deg);
- -webkit-transform: rotate(-45deg);
- }
- 12% {
- transform: rotate(-405deg);
- -webkit-transform: rotate(-405deg);
- }
- 100% {
- transform: rotate(-405deg);
- -webkit-transform: rotate(-405deg);
- }
- }
- @keyframes rotatePlaceholder {
- 0% {
- transform: rotate(-45deg);
- -webkit-transform: rotate(-45deg);
- }
- 5% {
- transform: rotate(-45deg);
- -webkit-transform: rotate(-45deg);
- }
- 12% {
- transform: rotate(-405deg);
- -webkit-transform: rotate(-405deg);
- }
- 100% {
- transform: rotate(-405deg);
- -webkit-transform: rotate(-405deg);
- }
- }
- .animateSuccessTip {
- -webkit-animation: animateSuccessTip 0.75s;
- animation: animateSuccessTip 0.75s;
- }
- .animateSuccessLong {
- -webkit-animation: animateSuccessLong 0.75s;
- animation: animateSuccessLong 0.75s;
- }
- .icon.success.animate::after {
- -webkit-animation: rotatePlaceholder 4.25s ease-in;
- animation: rotatePlaceholder 4.25s ease-in;
- }
- @-webkit-keyframes animateErrorIcon {
- 0% {
- transform: rotateX(100deg);
- -webkit-transform: rotateX(100deg);
- opacity: 0;
- }
- 100% {
- transform: rotateX(0deg);
- -webkit-transform: rotateX(0deg);
- opacity: 1;
- }
- }
- @keyframes animateErrorIcon {
- 0% {
- transform: rotateX(100deg);
- -webkit-transform: rotateX(100deg);
- opacity: 0;
- }
- 100% {
- transform: rotateX(0deg);
- -webkit-transform: rotateX(0deg);
- opacity: 1;
- }
- }
- .animateErrorIcon {
- -webkit-animation: animateErrorIcon 0.5s;
- animation: animateErrorIcon 0.5s;
- }
- @-webkit-keyframes animateXMark {
- 0% {
- transform: scale(0.4);
- -webkit-transform: scale(0.4);
- margin-top: 26px;
- opacity: 0;
- }
- 50% {
- transform: scale(0.4);
- -webkit-transform: scale(0.4);
- margin-top: 26px;
- opacity: 0;
- }
- 80% {
- transform: scale(1.15);
- -webkit-transform: scale(1.15);
- margin-top: -6px;
- }
- 100% {
- transform: scale(1);
- -webkit-transform: scale(1);
- margin-top: 0;
- opacity: 1;
- }
- }
- @keyframes animateXMark {
- 0% {
- transform: scale(0.4);
- -webkit-transform: scale(0.4);
- margin-top: 26px;
- opacity: 0;
- }
- 50% {
- transform: scale(0.4);
- -webkit-transform: scale(0.4);
- margin-top: 26px;
- opacity: 0;
- }
- 80% {
- transform: scale(1.15);
- -webkit-transform: scale(1.15);
- margin-top: -6px;
- }
- 100% {
- transform: scale(1);
- -webkit-transform: scale(1);
- margin-top: 0;
- opacity: 1;
- }
- }
- .animateXMark {
- -webkit-animation: animateXMark 0.5s;
- animation: animateXMark 0.5s;
- }
- @-webkit-keyframes pulseWarning {
- 0% {
- border-color: rgba(242, 152, 36, 0.5);
- }
- 100% {
- border-color: #f29824;
- }
- }
- @keyframes pulseWarning {
- 0% {
- border-color: rgba(242, 152, 36, 0.5);
- }
- 100% {
- border-color: #f29824;
- }
- }
- .pulseWarning {
- -webkit-animation: pulseWarning 0.75s infinite alternate;
- animation: pulseWarning 0.75s infinite alternate;
- }
- @-webkit-keyframes pulseWarningIns {
- 0% {
- background-color: rgba(242, 152, 36, 0.5);
- }
- 100% {
- background-color: #f29824;
- }
- }
- @keyframes pulseWarningIns {
- 0% {
- background-color: rgba(242, 152, 36, 0.5);
- }
- 100% {
- background-color: #f29824;
- }
- }
- .pulseWarningIns {
- -webkit-animation: pulseWarningIns 0.75s infinite alternate;
- animation: pulseWarningIns 0.75s infinite alternate;
- }
|