styles.css 719 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. html {
  2. height: 100%;
  3. background-color: #1d292c;
  4. }
  5. body {
  6. margin: 0;
  7. max-height: 100%;
  8. height: 100%;
  9. overflow: hidden;
  10. background-color: #1d292c;
  11. font-family: Helvetica, arial, sans-serif;
  12. position: relative;
  13. width: 100%;
  14. -webkit-tap-highlight-color: transparent;
  15. }
  16. #application-canvas {
  17. display: block;
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. bottom: 0;
  23. }
  24. #application-canvas.fill-mode-NONE {
  25. margin: auto;
  26. }
  27. #application-canvas.fill-mode-KEEP_ASPECT {
  28. width: 100%;
  29. height: auto;
  30. margin: 0;
  31. }
  32. #application-canvas.fill-mode-FILL_WINDOW {
  33. width: 100%;
  34. height: 100%;
  35. margin: 0;
  36. }
  37. canvas:focus {
  38. outline: none;
  39. }