3f20fb1e607bcdbc70c9d68c6654c07598148e98d63907f5dca33a8a2221e36e6127ffcf26a5819e84a2673dc9208904e358c0baf73947618ddffcd0ab242b 278 B

1234567891011121314151617181920
  1. @keyframes backInLeft {
  2. 0% {
  3. transform: translateX(-2000px) scale(0.7);
  4. opacity: 0.7;
  5. }
  6. 80% {
  7. transform: translateX(0px) scale(0.7);
  8. opacity: 0.7;
  9. }
  10. 100% {
  11. transform: scale(1);
  12. opacity: 1;
  13. }
  14. }
  15. .backInLeft {
  16. animation-name: backInLeft;
  17. }