Skip to content

Instantly share code, notes, and snippets.

@mdeltito
Created July 19, 2013 21:30
Show Gist options
  • Save mdeltito/6042494 to your computer and use it in GitHub Desktop.
Save mdeltito/6042494 to your computer and use it in GitHub Desktop.
@function em($target-size-in-px, $px-context: $base-font-size){
@return #{$target-size-in-px/$px-context}em;
}
@mixin section-flag($color: $accent-blue) {
background: $color;
position: absolute;
top: 0;
left: 0;
margin: 0;
padding: 0.25em 1em;
color: #fff;
font-family: $proxima-lite;
font-size: em(15px);
// if we wanted a nested element to be 20px:
// font-size: em(20px, 15px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment