Created
September 22, 2018 11:13
-
-
Save akash-joshi/a0245f0a35c85726ce22eb5b5204b29b to your computer and use it in GitHub Desktop.
Minimum Viable CSS (boilerplate)
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
* { | |
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