Skip to content

Instantly share code, notes, and snippets.

@davidDuymelinck
Last active January 4, 2016 08:19
Show Gist options
  • Save davidDuymelinck/8594255 to your computer and use it in GitHub Desktop.
Save davidDuymelinck/8594255 to your computer and use it in GitHub Desktop.
@small: ~"(max-width: 300px)";
@medium: ~"(max-width: 500px)";
// from responsive.less
@font-size-base: 16px;
.font-size(@size) {
@remValue: (unit(@size) / unit(@font-size-base));
@pxValue: unit(@size);
font-size: ~"@{pxValue}px";
font-size: ~"@{remValue}rem";
}
.r1 {
.font-size(18px);
@media @medium { .font-size(16px); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment