ludovicchabant / PieCrust

A simple PHP website engine and static file generator.
http://bolt80.com/piecrust
Other
239 stars 43 forks source link

Feature Request: Combine CSS #125

Closed ed-lea closed 11 years ago

ed-lea commented 11 years ago

PieCurst may do this already, but if not, I was wondering whether it's possible to combine all css files into one with bake?

for example

css/
    layout.css
    style.css
    typography.css

to convert to

_counter
    css
        site.css
ludovicchabant commented 11 years ago

Nope it doesn't really do it at the moment, but you could just use LessCSS or Sass or Compass (for which PieCrust has out-of-the-box support) and that would pretty much let you have one final CSS file for several input files (and also let you write CSS rules in a much nicer syntax!).

ed-lea commented 11 years ago

ok, thanks! I'll give it a go.