Skip to content

Instantly share code, notes, and snippets.

@matallo
Last active August 29, 2015 14:12
Show Gist options
  • Save matallo/a56f8110c8187784fa96 to your computer and use it in GitHub Desktop.
Save matallo/a56f8110c8187784fa96 to your computer and use it in GitHub Desktop.
// Base
// --------------------------------------------------
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html,
body { height: 100%; }
body {
background-color: $body-background;
text-rendering: optimizeLegibility;
-webkit-text-rendering: optimizeLegibility;
color: $text-color;
font-weight: $font-weight-base;
font-size: $font-size-base;
line-height: $line-height-base;
font-family: $font-family-base;
}
a {
text-decoration: none;
color: $principal-color;
&:hover {
text-decoration: underline;
}
}
strong {
font-weight: 700;
}
em {
font-style: italic;
}
abbr {
border-bottom: 1px dotted #ddd;
}
button {
margin: 0;
outline: none;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment