main.css 795 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. }
  13. a:hover {
  14. text-decoration: underline;
  15. }
  16. button {
  17. cursor: pointer;
  18. text-transform: uppercase;
  19. }
  20. canvas {
  21. display: block;
  22. }
  23. #info {
  24. position: absolute;
  25. top: 0px;
  26. width: 100%;
  27. padding: 10px;
  28. box-sizing: border-box;
  29. text-align: center;
  30. -moz-user-select: none;
  31. -webkit-user-select: none;
  32. -ms-user-select: none;
  33. user-select: none;
  34. pointer-events: none;
  35. z-index: 1; /* TODO Solve this in HTML */
  36. }
  37. a, button, input, select {
  38. pointer-events: auto;
  39. }
  40. .dg.ac {
  41. -moz-user-select: none;
  42. -webkit-user-select: none;
  43. -ms-user-select: none;
  44. user-select: none;
  45. z-index: 2 !important; /* TODO Solve this in HTML */
  46. }