diff --git a/examples/blueprint_default/src/ie.sass b/examples/blueprint_default/src/ie.sass deleted file mode 100644 index 7af9162b..00000000 --- a/examples/blueprint_default/src/ie.sass +++ /dev/null @@ -1,3 +0,0 @@ -@import blueprint.sass - -+blueprint-ie \ No newline at end of file diff --git a/examples/blueprint_default/src/ie.scss b/examples/blueprint_default/src/ie.scss new file mode 100644 index 00000000..a5a0d158 --- /dev/null +++ b/examples/blueprint_default/src/ie.scss @@ -0,0 +1,3 @@ +@import "blueprint"; + +@include blueprint-ie; diff --git a/examples/blueprint_default/src/print.sass b/examples/blueprint_default/src/print.sass deleted file mode 100644 index 8e5d49d8..00000000 --- a/examples/blueprint_default/src/print.sass +++ /dev/null @@ -1,3 +0,0 @@ -@import blueprint.sass - -+blueprint-print \ No newline at end of file diff --git a/examples/blueprint_default/src/print.scss b/examples/blueprint_default/src/print.scss new file mode 100644 index 00000000..78a5b3db --- /dev/null +++ b/examples/blueprint_default/src/print.scss @@ -0,0 +1,3 @@ +@import "blueprint"; + +@include blueprint-print; diff --git a/examples/blueprint_default/src/screen.sass b/examples/blueprint_default/src/screen.scss similarity index 53% rename from examples/blueprint_default/src/screen.sass rename to examples/blueprint_default/src/screen.scss index 9c336708..b7d6ded1 100644 --- a/examples/blueprint_default/src/screen.sass +++ b/examples/blueprint_default/src/screen.scss @@ -1,8 +1,9 @@ -@import blueprint.sass -@import blueprint/scaffolding.sass -@import compass/reset.sass +@import "blueprint"; +@import "blueprint/scaffolding"; +@import "compass/reset"; + +@include blueprint; -+blueprint // Remove the scaffolding when you're ready to start doing visual design. // Or leave it in if you're happy with how blueprint looks out-of-the-box -+blueprint-scaffolding +@include blueprint-scaffolding; diff --git a/examples/blueprint_plugins/src/buttons.sass b/examples/blueprint_plugins/src/buttons.sass deleted file mode 100644 index 9fdd8578..00000000 --- a/examples/blueprint_plugins/src/buttons.sass +++ /dev/null @@ -1,49 +0,0 @@ -@import compass/utilities/general/float.sass -@import blueprint/buttons.sass - -// - Use the following HTML code to place the buttons on your site: - - - - - Change Password - - - - Cancel - - -a.button - // you can pass "left" or "right" to +anchor-button to float it in that direction - // or you can pass no argument to leave it inline-block (cross browser safe!) within - // the flow of your page. - +anchor-button("left") - // All the button color mixins take 4 optional arguments: - // font color, background color, border color, border highlight color - // the first three default to constants set in blueprint/buttons.sass - // the last one defaults to a shade lighter than the border color. - +button-colors - +button-hover-colors - +button-active-colors - -button - // The +button-button mixin is just like the +anchor-button mixin, but for +// +// +// Change Password +// +// +// +// Cancel +// + +a.button { + // you can pass "left" or "right" to +anchor-button to float it in that direction + // or you can pass no argument to leave it inline-block (cross browser safe!) within + // the flow of your page. + @include anchor-button(left); + // All the button color mixins take 4 optional arguments: + // font color, background color, border color, border highlight color + // the first three default to constants set in blueprint/buttons + // the last one defaults to a shade lighter than the border color. + @include button-colors; + @include button-hover-colors; + @include button-active-colors; } + +button { + // The +button-button mixin is just like the +anchor-button mixin, but for