We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Create a _base.sass partial to initialize your stylesheets with common variables and the framework utilities you plan to use:
_base.sass
@import compass/reset.sass @import compass/utilities.sass @import blueprint/screen.sass !font_color = #333 !layout_grid_columns = 24 !layout_grid_width = 30px !layout_grid_margin = 10px // etc.
The _base.sass file is also a great place to keep your own custom mixins, so they’re available to any stylesheet that includes it.
Then you can include this file in all other stylesheets:
@import base.sass #wrapper +container // etc.