gulp-px2rem-converter
Version:
Gulp plugin. Converts all properties in pixels to rem, also converts all media in pixels in em
50 lines (44 loc) • 532 B
CSS
html{
font-size: 20px;
}
:root{
font-size: 18px;
}
div{
width: 20px;
height: 30px;
top: 1px;
bottom: 2px;
right: 3px;
left: 3px;
}
@media(min-width:1280px){
div{
width: 20px;
height: 30px;
top: 1px;
bottom: 2px;
right: 3px;
left: 3px;
}
}
@media(max-width:1280px){
div{
width: 20px;
height: 30px;
top: 1px;
bottom: 2px;
right: 3px;
left: 3px;
}
}
@media(max-width:720px) and (min-width:1280px){
div{
width: 20px;
height: 30px;
top: 1px;
bottom: 2px;
right: 3px;
left: 3px;
}
}