app.scss 838 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* http://www.eaglefonts.com/fg-virgil-ttf-131249.htm */
  2. @font-face {
  3. font-family: "Virgil";
  4. src: url("/FG_Virgil.woff2");
  5. font-display: swap;
  6. }
  7. /* https://github.com/microsoft/cascadia-code */
  8. @font-face {
  9. font-family: "Cascadia";
  10. src: url("/Cascadia.woff2");
  11. font-display: swap;
  12. }
  13. .visually-hidden {
  14. position: absolute !important;
  15. height: 1px;
  16. width: 1px;
  17. overflow: hidden;
  18. clip: rect(1px, 1px, 1px, 1px);
  19. white-space: nowrap; /* added line */
  20. }
  21. .LoadingMessage {
  22. position: absolute;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. left: 0;
  27. z-index: 999;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. pointer-events: none;
  32. }
  33. .LoadingMessage span {
  34. background-color: var(--button-gray-1);
  35. border-radius: 5px;
  36. padding: 0.8em 1.2em;
  37. color: var(--popup-text-color);
  38. font-size: 1.3em;
  39. }