Created
March 11, 2012 20:24
-
-
Save collingo/2018095 to your computer and use it in GitHub Desktop.
Touch screen webpage CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
/* hides the cursor */ | |
cursor:none !important; | |
/* prevent content selection */ | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
-o-user-select: none; | |
user-select: none; | |
} | |
/* make content highlight colour transparent*/ | |
::selection { /* Safari & Chrome */ | |
background:transparent; | |
} | |
::-moz-selection { /* Firefox */ | |
background:transparent; | |
} | |
/* hide scrollbars */ | |
html { | |
width:100%; | |
height:100%; | |
overflow:hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment