gulp-px2rem-converter
Version:
Gulp plugin. Converts all properties in pixels to rem, also converts all media in pixels in em
40 lines (35 loc) • 545 B
text/less
html{
font-size: 20px;
}
div{
width: 1rem;
height: 1.5rem;
top: 0.05rem;
bottom: 0.1rem;
right: 0.15rem;
left: 0.15rem;
@media(max-width:36rem) and (min-width:64em){
width: 1rem;
height: 1.5rem;
top: 0.05rem;
bottom: 0.1rem;
right: 0.15rem;
left: 0.15rem;
}
@media(min-width:64em){
width: 1rem;
height: 1.5rem;
top: 0.05rem;
bottom: 0.1rem;
right: 0.15rem;
left: 0.15rem;
}
@media(max-width:64em){
width: 1rem;
height: 1.5rem;
top: 0.05rem;
bottom: 0.1rem;
right: 0.15rem;
left: 0.15rem;
}
}