Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to import/include in Closure Stylesheet?

Tags:

css

Reading this page http://code.google.com/p/closure-stylesheets/, I can't seem to find any documentation explaining how to include or import another .gss files. Is this possible?

like image 744
Tower Avatar asked Nov 21 '11 09:11

Tower


1 Answers

I've never used .gss nor have I tested the following, but just looking at the documentation on the page seems to imply to me that including multiple ones would just be:

java -jar closure-stylesheets.jar --pretty-print first.gss
java -jar closure-stylesheets.jar --pretty-print second.gss

Though it also appears to be simpler to use the minification technique noted on the page:

java -jar closure-stylesheets.jar first.gss second.gss third.gss

Try either or both those techniques on your site and see if it solves your question.

like image 74
ScottS Avatar answered Nov 15 '22 08:11

ScottS