main.css 525 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. z-index: 1; /* TODO Solve this in HTML */
  31. }
  32. .dg.ac {
  33. z-index: 2 !important; /* TODO Solve this in HTML */
  34. }