//////////////////////// // Base Partials // // These files will be shared across all three of your output // CSS files. Generally included here are only Compass Extension // imports and imports for variables, functions, mixins, and extendables. //////////////////////// //////////////////////// // Compass Imports //////////////////////// @import 'compass'; //////////////////////// // Compass Extensions //////////////////////// @import 'susy'; @import 'breakpoint'; //////////////////////// // Private Imports //////////////////////// @import 'variables'; @import 'functions'; @import 'mixins'; @import 'extendables'; //////////////////////// // Cheat at CSS // // Applies a natural box layout modeul to all elements. // From http://paulirish.com/2012/box-sizing-border-box-ftw/ //////////////////////// * { @include box-sizing('border-box'); }