2009-06-21 09:31:25 +00:00
|
|
|
// This import applies a global reset to any page that imports this stylesheet.
|
2009-06-16 19:29:14 +00:00
|
|
|
@import blueprint/reset.sass
|
2009-06-21 09:31:25 +00:00
|
|
|
// To configure blueprint, edit the partials/base.sass file.
|
|
|
|
@import partials/base.sass
|
|
|
|
// Import all the default blueprint modules so that we can access their mixins.
|
|
|
|
@import blueprint
|
|
|
|
// Import the non-default scaffolding module.
|
|
|
|
@import blueprint/modules/scaffolding.sass
|
|
|
|
|
|
|
|
// To generate css equivalent to the blueprint css but with your configuration applied, uncomment:
|
|
|
|
// +blueprint
|
|
|
|
|
|
|
|
//Recommended Blueprint configuration with scoping and semantic layout:
|
2009-08-10 03:23:59 +00:00
|
|
|
+blueprint-scaffolding("body.bp")
|
2009-06-21 09:31:25 +00:00
|
|
|
body.bp
|
2009-07-11 18:08:04 +00:00
|
|
|
+blueprint-typography(true)
|
2009-06-21 09:31:25 +00:00
|
|
|
+blueprint-utilities
|
|
|
|
+blueprint-debug
|
|
|
|
+blueprint-interaction
|
|
|
|
// 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
|
|
|
|
form.bp
|
|
|
|
+blueprint-form
|
2008-08-23 17:00:46 +00:00
|
|
|
|
2009-06-21 09:31:25 +00:00
|
|
|
// Page layout can be done using mixins applied to your semantic classes and IDs:
|
|
|
|
body.three-col
|
|
|
|
#container
|
|
|
|
+container
|
|
|
|
#header, #footer
|
|
|
|
+column(!blueprint_grid_columns)
|
|
|
|
#sidebar
|
|
|
|
// One third of the grid columns, rounding down. With 24 cols, this is 8.
|
|
|
|
!sidebar_columns = floor(!blueprint_grid_columns / 3)
|
|
|
|
+column(!sidebar_columns)
|
|
|
|
#content
|
|
|
|
// Two thirds of the grid columns, rounding up.
|
|
|
|
// With 24 cols, this is 16.
|
|
|
|
!content_columns = ceil(2 * !blueprint_grid_columns / 3)
|
|
|
|
// true means it's the last column in the row
|
|
|
|
+column(!content_columns, true)
|
2009-08-17 01:24:16 +00:00
|
|
|
|
|
|
|
// This is just here to style the welcome page, please delete it.
|
|
|
|
body#welcome
|
|
|
|
#container
|
|
|
|
+container
|
|
|
|
h1
|
|
|
|
+column(24)
|