rem-to-px-cleanup
v1.0.0
Published
Generate a CSS file only with REM units converted into PX
Downloads
207
Readme
Cleanup REM to PX
Create a new stylesheet with only rem values converted.
A Gulp plugin is also available
Default options
var defaultOpts = {
src: null,
dist: null,
format: true,
silent: false,
baseFontSize: 16,
type: 'fs' // 'fs' || 'stream'
}
Example
var Converter = require('rem-to-px-cleanup');
// init Converter
var converter = new Converter({
src: 'example/app.css',
dist: 'example/app-ie.css',
baseFontSize: 14
});
// trigger convertion
converter.convert();
Input (app.css)
.Component {
width: 40rem;
height: 20px;
margin: 0 auto;
}
.Component-child {
padding: 0 2rem;
background-color: blue;
}
.OtherComponent {
display: inline-block;
width: 50%;
margin: 0 auto;
}
@media screen and (max-width: 30rem) {
.Component {
width: 80%;
padding: 1rem;
}
.Component-child {
width: 100%;
padding: 0;
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
width: 1rem;
}
100% {
transform: rotate(360deg);
width: 2rem;
}
}
Output
.Component {
width: 560px;
}
.Component-child {
padding: 0 28px;
}
@media screen and (max-width: 420px) {
.Component {
padding: 14px;
}
}
@keyframes spin {
0% {
width: 14px;
}
100% {
width: 28px;
}
}