Sha256: 8f0d1e626dcfb2a4a6be0e7e62d548146cb51d52d7d5df36b4eb137c18b835a3
Contents?: true
Size: 1.38 KB
Versions: 17
Compression:
Stored size: 1.38 KB
Contents
@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> // // Scoped by a presentational class: // <pre class="source-code sass"> // body.blueprint // +blueprint(true) // </pre> // // Scoped by semantic selectors: // <pre class="source-code sass"> // body#page-1, body#page-2, body.a-special-page-type // +blueprint(true) // </pre> // // #### Deprecated: // You use to be able to pass the body selector as the first argument when used as a top-level mixin // <pre class="source-code sass"> // +blueprint("body#page-1, body#page-2, body.a-special-page-type") // </pre> @mixin blueprint($body_selector: body) { //@doc off @if not ($body_selector == "body" or $body_selector == true) { @warn "[DEPRECATED] To specify a the selector \"#{$body_selector}\" to +blueprint, pass true as the first argument and mix it into #{$body_selector}."; } //@doc on @include blueprint-typography($body_selector); @include blueprint-utilities; @include blueprint-grid; @include blueprint-debug; @include blueprint-interaction; @include blueprint-form; }
Version data entries
17 entries across 17 versions & 2 rubygems