You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
929 B

1 year ago
  1. .wp-block-query__enhanced-pagination-animation{
  2. background-color:var(--wp--preset--color--primary, #000);
  3. height:4px;
  4. margin:0;
  5. max-width:100vw !important;
  6. opacity:0;
  7. padding:0;
  8. position:fixed;
  9. right:0;
  10. top:0;
  11. width:100vw;
  12. }
  13. .wp-block-query__enhanced-pagination-animation.start-animation{
  14. animation:wp-block-query__enhanced-pagination-start-animation 30s cubic-bezier(.03, .5, 0, 1) forwards;
  15. }
  16. .wp-block-query__enhanced-pagination-animation.finish-animation{
  17. animation:wp-block-query__enhanced-pagination-finish-animation .3s ease-in;
  18. }
  19. @keyframes wp-block-query__enhanced-pagination-start-animation{
  20. 0%{
  21. opacity:1;
  22. transform:scaleX(0);
  23. transform-origin:100% 0;
  24. }
  25. to{
  26. opacity:1;
  27. transform:scaleX(1);
  28. transform-origin:100% 0;
  29. }
  30. }
  31. @keyframes wp-block-query__enhanced-pagination-finish-animation{
  32. 0%{
  33. opacity:1;
  34. }
  35. 50%{
  36. opacity:1;
  37. }
  38. to{
  39. opacity:0;
  40. }
  41. }