main.css 765 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. }
  9. a {
  10. color: #ff0;
  11. text-decoration: none;
  12. pointer-events: auto;
  13. }
  14. a:hover {
  15. text-decoration: underline;
  16. }
  17. button {
  18. cursor: pointer;
  19. text-transform: uppercase;
  20. }
  21. canvas {
  22. display: block;
  23. }
  24. #info {
  25. position: absolute;
  26. top: 0px;
  27. width: 100%;
  28. padding: 10px;
  29. box-sizing: border-box;
  30. text-align: center;
  31. -moz-user-select: none;
  32. -webkit-user-select: none;
  33. -ms-user-select: none;
  34. user-select: none;
  35. pointer-events: none;
  36. z-index: 1; /* TODO Solve this in HTML */
  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. }