Skip to content

Instantly share code, notes, and snippets.

@ColemanCollins
Created April 16, 2014 21:04
Show Gist options
  • Save ColemanCollins/10932889 to your computer and use it in GitHub Desktop.
Save ColemanCollins/10932889 to your computer and use it in GitHub Desktop.
Quick blank slate reset for node-webkit apps
*
{
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