22c6b6ab72f1c2fa4c0f5250cf649a77e859e8dcf61faca3b00dc619d1cc3165fbbc2c7fd1b278cd54d6f5e6318080d3415e3596e12968a6a010c4eb29a71a 230 B

123456789101112131415
  1. @keyframes rotateOutDownRight {
  2. from {
  3. opacity: 1;
  4. }
  5. to {
  6. transform: rotate3d(0, 0, 1, -45deg);
  7. opacity: 0;
  8. }
  9. }
  10. .rotateOutDownRight {
  11. animation-name: rotateOutDownRight;
  12. transform-origin: right bottom;
  13. }