0.0.1 • Published 10 years ago

px_to_rem v0.0.1

Weekly downloads
5
License
-
Repository
github
Last release
10 years ago

Installation

  $ npm install px_to_rem 

Px_to_REM

Utility for converting font-size css styles using px units to rem

Usage

  var px_to_rem = require('px_to_rem');
  var css = "h1 { \n font-size: 12px;\n }";
  
  var output = px_to_rem.convert(css);
  
  console.log(output);

Command Line Tool

Also included is a command line tool that takes a css file as an argument (cwd = base folder of plugin)

  $ ./px_to_rem style.css