Created
July 19, 2013 21:30
-
-
Save mdeltito/6042494 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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