main.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. body {
  2. margin: 0;
  3. background-color: #000;
  4. color: #fff;
  5. font-family: Monospace;
  6. font-size: 13px;
  7. line-height: 24px;
  8. overscroll-behavior: none;
  9. }
  10. a {
  11. color: #ff0;
  12. text-decoration: none;
  13. }
  14. a:hover {
  15. text-decoration: underline;
  16. }
  17. button {
  18. cursor: pointer;
  19. text-transform: uppercase;
  20. }
  21. #info {
  22. position: absolute;
  23. top: 0px;
  24. width: 100%;
  25. padding: 10px;
  26. box-sizing: border-box;
  27. text-align: center;
  28. -moz-user-select: none;
  29. -webkit-user-select: none;
  30. -ms-user-select: none;
  31. user-select: none;
  32. pointer-events: none;
  33. z-index: 1; /* TODO Solve this in HTML */
  34. }
  35. a, button, input, select {
  36. pointer-events: auto;
  37. }
  38. .dg.ac {
  39. -moz-user-select: none;
  40. -webkit-user-select: none;
  41. -ms-user-select: none;
  42. user-select: none;
  43. z-index: 2 !important; /* TODO Solve this in HTML */
  44. }
  45. #overlay {
  46. position: absolute;
  47. font-size: 16px;
  48. z-index: 2;
  49. top: 0;
  50. left: 0;
  51. width: 100%;
  52. height: 100%;
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. flex-direction: column;
  57. background: rgba(0,0,0,0.7);
  58. }
  59. #overlay button {
  60. background: transparent;
  61. border: 0;
  62. border: 1px solid rgb(255, 255, 255);
  63. border-radius: 4px;
  64. color: #ffffff;
  65. padding: 12px 18px;
  66. text-transform: uppercase;
  67. cursor: pointer;
  68. }
  69. #notSupported {
  70. width: 50%;
  71. margin: auto;
  72. background-color: #f00;
  73. margin-top: 20px;
  74. padding: 10px;
  75. }