Skip to content

Instantly share code, notes, and snippets.

View cadoo's full-sized avatar
🤔

Cadoo cadoo

🤔
View GitHub Profile
@cadoo
cadoo / gist:5008367
Created February 21, 2013 21:22
Font size in ems or rems
// Font size in ems or rems
@mixin fs($px, $context: 16, $unit: em) {
font-size: ($px/$context)+$unit;
}