29c3f9f1a697d4e912d791a9f6dbc8ed77c4600483f3016b56c018ab2ddc867910c6391d735f2db10c21b1f3926535ccb8af7a047567cd5f8a3bfd6615ca25 245 B

123456789101112131415
  1. @keyframes lightSpeedOutRight {
  2. from {
  3. opacity: 1;
  4. }
  5. to {
  6. transform: translate3d(100%, 0, 0) skewX(30deg);
  7. opacity: 0;
  8. }
  9. }
  10. .lightSpeedOutRight {
  11. animation-name: lightSpeedOutRight;
  12. animation-timing-function: ease-in;
  13. }