Created
August 26, 2013 18:43
-
-
Save dwighthouse/6344986 to your computer and use it in GitHub Desktop.
Use after normalize.css ( http://necolas.github.io/normalize.css/ )
This file contains 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
/* Personal Reset (to be used after normalize.css) */ | |
html, html * | |
{ | |
margin:0; | |
padding:0; | |
border:0; | |
outline:0; | |
-moz-box-sizing:border-box; | |
-webkit-box-sizing:border-box; | |
box-sizing:border-box; | |
} | |
html | |
{ | |
height:100%; | |
} | |
body | |
{ | |
position:relative; | |
min-height:100%; | |
} | |
a | |
{ | |
text-decoration:none; | |
color:inherit; | |
} | |
a:focus | |
{ | |
outline:none; | |
} | |
ul | |
{ | |
list-style:none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment