gems.compass-0.12.2.frameworks.blueprint.stylesheets._blueprint.scss Maven / Gradle / Ivy
@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:
//
// +blueprint
//
//
// Scoped by a presentational class:
//
// body.blueprint
// +blueprint(true)
//
//
// Scoped by semantic selectors:
//
// body#page-1, body#page-2, body.a-special-page-type
// +blueprint(true)
//
@mixin blueprint($nested: false) {
@include blueprint-typography($nested);
@include blueprint-utilities;
@include blueprint-grid;
@include blueprint-debug;
@include blueprint-interaction;
@include blueprint-form;
}