Skip to content

Instantly share code, notes, and snippets.

@dwighthouse
Created December 28, 2013 23:25
Show Gist options
  • Save dwighthouse/8165592 to your computer and use it in GitHub Desktop.
Save dwighthouse/8165592 to your computer and use it in GitHub Desktop.
Personal Reset CSS in SASS/Bourbon context
html, html * {
margin:0;
padding:0;
border:0;
outline:0;
@include box-sizing(border-box);
}
html {
height:100%;
}
body {
position:relative;
min-height:100%;
}
a {
text-decoration:none;
color:inherit;
&: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