Skip to content

Instantly share code, notes, and snippets.

@laurakalbag
Created December 17, 2012 17:17
Show Gist options
  • Save laurakalbag/4319999 to your computer and use it in GitHub Desktop.
Save laurakalbag/4319999 to your computer and use it in GitHub Desktop.
Example of repetitive units in CSS replaced with variables in Sass and arithmetic for calculations with those variables
$unit = 10px;
h1, h2, h3 {
margin-bottom: $unit;
}
p {
margin-bottom: $unit;
}
aside {
margin-bottom: $unit*2; /* 20px */
}
footer {
margin-top: $unit*4; /* 40px */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment