compass/frameworks/blueprint/stylesheets/_blueprint.scss

38 lines
920 B
SCSS
Raw Normal View History

2010-04-11 09:24:24 +00:00
@import "blueprint/colors";
@import "blueprint/grid";
@import "blueprint/typography";
@import "blueprint/utilities";
@import "blueprint/form";
@import "blueprint/interaction";
@import "blueprint/debug";
@import "blueprint/print";
@import "blueprint/ie";
// ### Usage examples:
//
// As a top-level mixin, apply to any page that includes the stylesheet:
// <pre class="source-code sass">
// +blueprint
// </pre>
2010-04-11 09:24:24 +00:00
//
// Scoped by a presentational class:
// <pre class="source-code sass">
// body.blueprint
// +blueprint(true)
// </pre>
2010-04-11 09:24:24 +00:00
//
// Scoped by semantic selectors:
// <pre class="source-code sass">
// body#page-1, body#page-2, body.a-special-page-type
// +blueprint(true)
// </pre>
2010-04-11 09:24:24 +00:00
@mixin blueprint($nested: false) {
@include blueprint-typography($nested);
2010-04-11 09:24:24 +00:00
@include blueprint-utilities;
@include blueprint-grid;
@include blueprint-debug;
@include blueprint-interaction;
2010-04-16 05:23:14 +00:00
@include blueprint-form;
}