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.

animations.less 929B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @keyframes isloadingspin {
  2. 0% { transform: translate(-50%, -50%) rotate(0deg); }
  3. 100% { transform: translate(-50%, -50%) rotate(360deg); }
  4. }
  5. .is-loading {
  6. background: transparent !important;
  7. color: transparent !important;
  8. border: transparent !important;
  9. pointer-events: none !important;
  10. position: relative !important;
  11. overflow: hidden !important;
  12. }
  13. .is-loading::after {
  14. content: "";
  15. position: absolute;
  16. display: block;
  17. width: 4rem;
  18. height: 4rem;
  19. left: 50%;
  20. top: 50%;
  21. transform: translate(-50%, -50%);
  22. animation: isloadingspin 500ms infinite linear;
  23. border-width: 4px;
  24. border-style: solid;
  25. border-color: #ececec #ececec #666 #666;
  26. border-radius: 100%;
  27. }
  28. .markup pre.is-loading,
  29. .editor-loading.is-loading {
  30. height: 12rem;
  31. }
  32. @keyframes fadein {
  33. 0% {
  34. opacity: 0;
  35. }
  36. 100% {
  37. opacity: 1;
  38. }
  39. }
  40. @keyframes fadeout {
  41. 0% {
  42. opacity: 1;
  43. }
  44. 100% {
  45. opacity: 0;
  46. }
  47. }