Skip to content

Instantly share code, notes, and snippets.

@giovanniantonaccio
Last active July 18, 2019 21:11
Show Gist options
  • Save giovanniantonaccio/bed3dd78ba2cb6bc9618785a939acca1 to your computer and use it in GitHub Desktop.
Save giovanniantonaccio/bed3dd78ba2cb6bc9618785a939acca1 to your computer and use it in GitHub Desktop.
Basic CSS snippet
* {
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