Last active
July 18, 2019 21:11
-
-
Save giovanniantonaccio/bed3dd78ba2cb6bc9618785a939acca1 to your computer and use it in GitHub Desktop.
Basic CSS snippet
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; | |
} | |
body { | |
background: #ececf0; | |
font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif"; | |
text-rendering: optimizeLegibility !important; | |
-webkit-font-smoothing: antialiased !important; | |
} | |
input, | |
button { | |
outline: none; | |
} | |
.content { | |
max-width: 1170px; | |
margin: 0 auto; | |
padding: 0 30px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment