adnantopal / extractcss

:page_facing_up: extractCSS is a JavaScript library and an online tool that lets you extract element ID, class and inline styles from HTML document and output them as CSS stylesheet.
http://extractcss.com
MIT License
284 stars 48 forks source link

less or sass nested rules support #13

Open lgh06 opened 7 years ago

lgh06 commented 7 years ago

how about sth like these ...?

.img_article_page{
  body{
    font-size: 16px;
  }
  a{
    font-size: inherit;
  }
  .titlewrap{
    margin: 0 20px;
    .title{
      font-size: 0.6rem;
      font-weight: 500;
    }
  }
}