My original problem was linking multiple stylesheet frameworks. My primary option was Materialize and for reasons, i'd like to integrate Bootstrap on some buttons and other components. After hours of desperate research, i found myself staring at css pre-processors, e.g. LESS and SASS. I found out that you can do dynamic css using these badasses.
Investing a couple more hours deciding which to use, I ended up failing to install both.
So far I managed to download bootstrap sass and integrated it inside my project and compiled it using grunt (follow this instruction). I don't know how to use it and where to start.
I found some cool references here but it was not enough to get me going.
.bootstrap {
@import "/bootstrap.less"
}
I have so my follow up questions to the post:
- should I link the less file on my index.php?
- can I use any editor and compile the less with any less compiler?
- should i link the compiled less or the created css?
- do I even need to use LESS for this?
Note: I'm a total newbie with LESS and SASS. Any information is a ++.