Skip to content

Instantly share code, notes, and snippets.

@joshuasoehn
Last active February 11, 2016 17:32
Show Gist options
  • Save joshuasoehn/9087f8eb7dd97314b086 to your computer and use it in GitHub Desktop.
Save joshuasoehn/9087f8eb7dd97314b086 to your computer and use it in GitHub Desktop.
CSS stuff I always need
* {
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
}
//typography basics
html {
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-font-feature-settings: "liga=1, dlig=1";
-ms-font-feature-settings: "liga", "dlig";
-webkit-font-feature-settings: "liga", "dlig";
-o-font-feature-settings: "liga", "dlig";
font-feature-settings: "liga", "dlig";
}
// nicer animations
cubic-bezier(0.5, 0.1, 0, 1.2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment