8e1b6e64df4c84892c5c8704c7082ab3040edacf32cb782ce7d2d0aeaeddbb52bb1e566177ad6d20c70371eaa338e553ee68bc1bba3aebb1a1f05dc0de8d00 263 B

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