Sha256: 3e911f684a5ed817622afc1819d2240821d7900b537b2ade17be97b2221cdf56

Contents?: true

Size: 1.46 KB

Versions: 17

Compression:

Stored size: 1.46 KB

Contents

// This import applies a global reset to any page that imports this stylesheet.
@import blueprint/reset.sass
// 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:
+blueprint-typography("body.bp")
+blueprint-scaffolding("body.bp")
body.bp
  +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

// 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)

Version data entries

17 entries across 17 versions & 4 rubygems

Version Path
alphasights-compass-0.8.12 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.10 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.11 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.12 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.13 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.14 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.15 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.16 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.17 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.9 frameworks/blueprint/templates/project/screen.sass
middleman-0.12.0.pre lib/middleman/vendor/gems/gems/compass-0.8.17/frameworks/blueprint/templates/project/screen.sass
middleman-0.10.17 vendor/gems/gems/compass-0.8.17/frameworks/blueprint/templates/project/screen.sass
middleman-0.10.16 vendor/gems/gems/compass-0.8.17/frameworks/blueprint/templates/project/screen.sass
middleman-0.10.15 vendor/gems/gems/compass-0.8.17/frameworks/blueprint/templates/project/screen.sass
middleman-0.10.14 vendor/gems/gems/compass-0.8.17/frameworks/blueprint/templates/project/screen.sass
compass-0.8.17 frameworks/blueprint/templates/project/screen.sass
compass-0.8.16 frameworks/blueprint/templates/project/screen.sass