style.css 881 B

1234567891011121314151617181920212223242526272829303132
  1. /*Stylesheet*/
  2. * {
  3. -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
  4. }
  5. BODY, HTML {
  6. -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
  7. -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
  8. -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
  9. -webkit-tap-highlight-color: transparent;
  10. margin: 0;
  11. padding: 0;
  12. font-family: Arial, Verdana, sans-serif;
  13. font-size: 12px;
  14. font-weight: normal;
  15. color: #ccc;
  16. background-color: #333333;
  17. }
  18. #canvasHolder {
  19. position: absolute;
  20. }
  21. #canvasHolder canvas {
  22. position: absolute;
  23. width: 100%;
  24. height: 100%;
  25. }
  26. #backgroundCanvas {
  27. background-color: #000000;
  28. }