compass/frameworks/blueprint/stylesheets/_blueprint.sass

32 lines
1.1 KiB
Sass
Raw Normal View History

@import blueprint/colors.sass
@import blueprint/grid.sass
@import blueprint/typography.sass
@import blueprint/utilities.sass
@import blueprint/form.sass
@import blueprint/interaction.sass
@import blueprint/debug.sass
@import blueprint/print.sass
@import blueprint/ie.sass
// 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)
// Deprecated:
// You can pass the body selector as the first argument when used as a top-level mixin
// +blueprint("body#page-1, body#page-2, body.a-special-page-type")
=blueprint(!body_selector = "body")
@if not (!body_selector == "body" or !body_selector == true)
@debug "[DEPRECATED] To specify a the selector \"#{!body_selector}\" to +blueprint, pass true as the first argument and mix it into #{!body_selector}."
+blueprint-typography(!body_selector)
+blueprint-utilities
+blueprint-grid
+blueprint-debug
+blueprint-interaction
+blueprint-form