This commit is contained in:
Thomas McDonald 2012-03-28 14:13:39 +01:00
Родитель 96fec83644
Коммит 24eeb3c3b2
3 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -1,6 +1,6 @@
# Bootstrap for SASS
# Bootstrap for Sass
`bootstrap-sass` is an SASS-powered version of [Twitter's Bootstrap](http://github.com/twitter/bootstrap), ready to drop right into your SASS powered applications.
`bootstrap-sass` is an Sass-powered version of [Twitter's Bootstrap](http://github.com/twitter/bootstrap), ready to drop right into your Sass powered applications.
Enjoy.
@ -20,11 +20,11 @@ In your Gemfile:
#### CSS
Import "bootstrap" in your SCSS file of choice to get all of Bootstrap's styles, mixins and variables! Don't use Sprocket's `//= require` directives for SASS files, because they're horrible and will kill your cat.
Import "bootstrap" in your SCSS file of choice to get all of Bootstrap's styles, mixins and variables! Don't use Sprocket's `//= require` directives for Sass files, because they're horrible and will kill your cat.
@import "bootstrap";
Need to configure a variable or two? Simple define the value of the variable you want to change *before* importing Bootstrap. SASS will be awesome and respect your existing definition rather than overwriting it with the Bootstrap defaults. A list of customisable variables can be found in the [Bootstrap documentation](http://twitter.github.com/bootstrap/less.html#variables).
Need to configure a variable or two? Simple define the value of the variable you want to change *before* importing Bootstrap. Sass will be awesome and respect your existing definition rather than overwriting it with the Bootstrap defaults. A list of customisable variables can be found in the [Bootstrap documentation](http://twitter.github.com/bootstrap/less.html#variables).
$primaryButtonBackground: #f00;
@import "bootstrap";

Просмотреть файл

@ -3,7 +3,7 @@ Gem::Specification.new do |s|
s.version = '2.0.1'
s.authors = ["Thomas McDonald"]
s.email = 'tom@conceptcoding.co.uk'
s.summary = "Twitter's Bootstrap, converted to SASS and ready to drop into Rails or Compass"
s.summary = "Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass"
s.homepage = "http://github.com/thomas-mcdonald/bootstrap-sass"
s.add_development_dependency 'compass'

Просмотреть файл

@ -1,4 +1,4 @@
description "Bootstrap for SASS"
description "Bootstrap for Sass"
# Stylesheet importing bootstrap
stylesheet 'styles.scss'