Created
April 16, 2014 21:04
-
-
Save ColemanCollins/10932889 to your computer and use it in GitHub Desktop.
Quick blank slate reset for node-webkit apps
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
* | |
{ | |
padding: 0; | |
margin: 0; | |
cursor: default; | |
-webkit-tap-highlight-color: rgba(0,0,0, 0); | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
-webkit-user-select: none; | |
user-select: none; | |
-webkit-user-drag: none; | |
&:focus | |
{ | |
outline: 0; | |
border: 0; | |
} | |
} | |
html, body | |
{ | |
min-height: 100%; | |
height: 100%; | |
width: 100%; | |
overflow-x: hidden; | |
overflow-y: auto; | |
} | |
a{ | |
outline: none; | |
border: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment