Skip to content

Instantly share code, notes, and snippets.

@epicmonkeez
Created March 13, 2012 19:21
Show Gist options
  • Save epicmonkeez/2030904 to your computer and use it in GitHub Desktop.
Save epicmonkeez/2030904 to your computer and use it in GitHub Desktop.
LESS: Type control mixin
// type
.font-size(@font-size: 16){
@rem: (@font-size / 10);
font-size: @font-size * 1px;
font-size: ~"@{rem}rem"; }
.sans-serif {
font-family : "Helvetica Neue", Helvetica, Arial, sans-serif; }
.serif {
font-family : "Cambria, Georgia, Times, "Times New Roman; }
.monospace {
font-family : "Monaco", Courier New, monospace; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment