Skip to content

Instantly share code, notes, and snippets.

@alexortiz201
Created March 20, 2014 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexortiz201/9671115 to your computer and use it in GitHub Desktop.
Save alexortiz201/9671115 to your computer and use it in GitHub Desktop.
CSS loader, used to load modular css before concatenating and minifying into one file
/******************************************************
Authored By: Alex Ortiz
last updated: March 5, 2014
This is the cssloader which gets files that will be
concat/min for prod
--------------
Sample CSS
.code-style { layout; (e.g. display, padding, margin, etc)
text;
decoration;
}
--------------
*******************************************************/
/* core css */
@import url("/Assets/css/modules/common.css");
@import url("/Assets/css/modules/deck.css");
@import url("/Assets/css/modules/3rdparty.css");
@import url("/Assets/css/modules/modal.css");
@import url("/Assets/css/modules/conversations.css");
@import url("/Assets/css/modules/reports.css");
@import url("/Assets/css/modules/settings.css");
@import url("/Assets/css/modules/categories.css");
@import url("/Assets/css/modules/organizations.css");
@import url("/Assets/css/modules/tours.css");
@import url("/Assets/css/modules/ie8-and-down.css");
/*@import url("/Assets/css/modules/mediaQueries.css");*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment