not really known
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.

52 lines
1.1 KiB

  1. body {
  2. background-color: #000000;
  3. font-family: sans-serif;
  4. overflow: hidden;
  5. }
  6. canvas {
  7. position: absolute;
  8. background: #000;
  9. cursor: default;
  10. }
  11. canvas.pixelated {
  12. image-rendering: -moz-crisp-edges;
  13. image-rendering: -webkit-optimize-contrast;
  14. image-rendering: pixelated;
  15. -ms-interpolation-mode: nearest-neighbor;
  16. }
  17. div#sqHeader {
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. padding: 10px;
  23. border-bottom: 6px double gray;
  24. }
  25. div#sqFooter {
  26. position: absolute;
  27. left: 0;
  28. right: 0;
  29. bottom: 0;
  30. padding: 10px;
  31. border-top: 6px double gray;
  32. }
  33. div#sqSpinner {
  34. position: absolute;
  35. margin: auto; top: 0; left: 0; bottom: 0; right: 0;
  36. width: 100px;
  37. height: 100px;
  38. border-radius: 50px;
  39. background: rgba(0, 0, 0, 0.3);
  40. box-shadow: 0 0 5px 5px #F90;
  41. display: none;
  42. transform: rotate(30deg);
  43. }
  44. div#sqSpinner > div {
  45. position: absolute;
  46. top: 45px;
  47. left: 5px;
  48. width: 90px;
  49. height: 10px;
  50. border-radius: 5px;
  51. box-shadow: 0 0 5px 5px #F90;
  52. }