Sha256: 0ce1d5854b487e63465f97c5d91e91a3b9bb412c00ed7f5da219936ac289418f

Contents?: true

Size: 1.44 KB

Versions: 10

Compression:

Stored size: 1.44 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:
body.bp
  +blueprint-typography
  +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
  +blueprint-scaffolding
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

10 entries across 10 versions & 1 rubygems

Version Path
chriseppstein-compass-0.7.0 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.0 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.1 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.2 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.3 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.4 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.5 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.6 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.7 frameworks/blueprint/templates/project/screen.sass
chriseppstein-compass-0.8.8 frameworks/blueprint/templates/project/screen.sass