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
|
|
|
|
2010-01-23 02:16:25 +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 use to be able to 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")
|
2009-11-21 21:19:18 +00:00
|
|
|
=blueprint(!body_selector = "body")
|
2010-01-23 09:10:29 +00:00
|
|
|
//@doc off
|
2009-11-21 21:19:18 +00:00
|
|
|
@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}."
|
2010-01-23 09:10:29 +00:00
|
|
|
//@doc on
|
2009-11-21 21:19:18 +00:00
|
|
|
+blueprint-typography(!body_selector)
|
|
|
|
+blueprint-utilities
|
|
|
|
+blueprint-grid
|
|
|
|
+blueprint-debug
|
|
|
|
+blueprint-interaction
|
|
|
|
+blueprint-form
|