Created
February 28, 2013 14:01
-
-
Save jensgro/5056932 to your computer and use it in GitHub Desktop.
central stylesheet imports all needed partials and has a variabel to be a stylesheet for modern browsers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is the central stylesheet. | |
// This variable is important to distinguish between legacy browsers and the rest. | |
// It has importance in conjunction with the legacy-mixin. | |
$isoldIE: false; | |
@import "compass"; | |
// import all mixins | |
@import "mixins/jg-mixins", | |
"mixins/legacy-mixins"; | |
// import all seperate files | |
@import "partials/basics", | |
"partials/before-after", | |
"partials/before-after-legacy", | |
"partials/box-shadow", | |
"partials/menue", | |
"partials/slanted", | |
"partials/boxmodel", | |
"partials/colors", | |
"sprites"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment