main.css 719 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. z-index: 1; /* TODO Solve this in HTML */
  35. }
  36. .dg.ac {
  37. -moz-user-select: none;
  38. -webkit-user-select: none;
  39. -ms-user-select: none;
  40. user-select: none;
  41. z-index: 2 !important; /* TODO Solve this in HTML */
  42. }