Skip to content

Instantly share code, notes, and snippets.

@akash-joshi
Created September 22, 2018 11:13
Show Gist options
  • Save akash-joshi/a0245f0a35c85726ce22eb5b5204b29b to your computer and use it in GitHub Desktop.
Save akash-joshi/a0245f0a35c85726ce22eb5b5204b29b to your computer and use it in GitHub Desktop.
Minimum Viable CSS (boilerplate)
* {
margin: 0;
padding: 0;
box-sizing: border-box
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none
}
body {
font: 16px Helvetica, Arial;
height: 100%;
padding: 20 20 20;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment