Converting from LESS to CSS?

I’m using a new framework Site Link but the problem is it was developed using LESS.

It also included CSS files, so I thought I would be able to simply delete the LESS files and be okay – however, when I did that, I would lose most of my styling.

Read More

Does anyone have a solution on the best way to achieve this? Most of the people i work with have yet to learn LESS so I need a framework we can work on as a team.

Related posts

Leave a Reply

1 comment

  1. From the http://lesscss.org/ home page, it actually comes with a default compiler to go from less to CSS;


    Less comes with a binary, which lets you invoke the compiler from the command-line, as such:

    $ lessc styles.less
    

    This will output the compiled CSS to stdout, you may then redirect it to a file of your choice:

    $ lessc styles.less > styles.css