2009-11-21 21:19:18 +00:00
|
|
|
@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
|
2008-12-08 17:53:28 +00:00
|
|
|
@import blueprint/print.sass
|
|
|
|
@import blueprint/ie.sass
|
2009-11-21 21:19:18 +00:00
|
|
|
|
|
|
|
// 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
|