styles.css 953 B

1234567891011121314151617181920212223242526272829303132
  1. * {
  2. -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
  3. user-select: none;
  4. -webkit-touch-callout: none;
  5. -webkit-user-select: none;
  6. -moz-user-select: none;
  7. -ms-user-select: none;
  8. }
  9. body, html {
  10. overflow: hidden;
  11. margin: 0;
  12. padding: 0;
  13. -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
  14. -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
  15. -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
  16. -webkit-tap-highlight-color: transparent;
  17. -khtml-user-select: none;
  18. -moz-user-select: none;
  19. -ms-user-select: none;
  20. user-select: none;
  21. background-color: #000000;
  22. color: #fff;
  23. height: 100%;
  24. background: #000000;
  25. text-align: center;
  26. }
  27. #gameArea {
  28. position: fixed;
  29. }