Skip to content

Instantly share code, notes, and snippets.

@avilaj
Last active December 17, 2015 23:49
Show Gist options
  • Save avilaj/5691958 to your computer and use it in GitHub Desktop.
Save avilaj/5691958 to your computer and use it in GitHub Desktop.
Stylus rems converter with fallback I haven't tested it very much. License MIT
// License MIT
// Author: Jorge Avila <jorge.e.avila@gmail.com>
// Example:
// body
// -rems('margin', 10 20 30 40)
basefont = 16px
-rems(property, sizes)
rems = new array()
pixs = new array()
for prop, i in sizes
pixs[i] = prop*basefont
rems[i] = prop*1rem
{property}: pixs
{property}: rems
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment