1234567891011121314151617181920212223242526272829303132 |
- * {
- -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
- user-select: none;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- }
- body, html {
- overflow: hidden;
- margin: 0;
- padding: 0;
- -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
- -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
- -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
- -webkit-tap-highlight-color: transparent;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-color: #000000;
- color: #fff;
- height: 100%;
- background: #000000;
- text-align: center;
- }
- #gameArea {
- position: fixed;
- }
|