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.

43 lines
798B

  1. .video {
  2. width: 90% !important;
  3. //height: 90%;
  4. display: block;
  5. margin: 0 auto;
  6. }
  7. .mat-mdc-dialog-content {
  8. max-height: unset;
  9. }
  10. .loader {
  11. width: fit-content;
  12. color: orange;
  13. font-family: monospace;
  14. font-size: 30px;
  15. clip-path: inset(0 3ch 0 0);
  16. animation: l4 1s steps(4) infinite;
  17. }
  18. .loader:before {
  19. content: "Loading...";
  20. }
  21. @keyframes l4 {
  22. to {
  23. clip-path: inset(0 -1ch 0 0);
  24. }
  25. }
  26. .circle-loader {
  27. width: 50px;
  28. aspect-ratio: 1;
  29. border-radius: 50%;
  30. background:
  31. radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px no-repeat,
  32. conic-gradient(#0000 30%, #ffa516);
  33. -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  34. animation: l13 1s infinite linear;
  35. }
  36. @keyframes l13 {
  37. 100% {
  38. transform: rotate(1turn);
  39. }
  40. }