I am pretty new to LESS, but I think I have the right idea. However, I can't get the LESS to compile. I've downloaded 3 compilers now (Crunch, Simpless,Winless).
Crunch I get an error of
Compiler Errors variable @navbar-default-bg is undefined (Line: 15)
WinLESS - I get a "sucess" but see no CSS generated.
Simpless - just doesn't build or error. Nothing happens.
Here is what I'm doing. I have the Cerulean bootstrap template http://bootswatch.com/cerulean/. You can download the bootswatch.less & variables.less I am making ZERO modifications to them. From my understanding of how this works (& best practices) I import my CSS and less files into one less file, which then compiles the LESS and move the CSS into one CSS I reference in my asp.net page. I've called this file "IMSLess.less" which looks like this....
@import "bootstrap.min.css"; // xxxxxxxxxx
@import "variables.less"; // xxxxxxxxxx
@import "bootswatch.less"; // xxxxxxxxxx
Import of the bootstrap.min.css template, followed by the 2 UNEDITED less files. Like I said i'm pretty new at this, so I could have this set up incorrectly, which could be causing my error, but hopefully someone can help!
Thank you Josh