Skip to content

xdite/bootstrap-rails

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitter Bootstrap for Rails 3

Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.

anjlab-bootstrap-rails project integrates Bootstrap CSS (with SASS flavour) and JS toolkits for Rails 3 projects

Rails 3.1

Include Bootstrap in Gemfile;

gem 'simple_form'
gem 'bootstrap-rails', :require => 'bootstrap-rails',
                              :git => 'git://github.com/xdite/bootstrap-rails.git'

and run bundle install.

Stylesheets

Add necessary stylesheet file to app/assets/stylesheets/application.css

*= require bootstrap

You can override boostrapr variables:

// Create app/assets/stylesheets/bootstrap.scss
// CSS Reset
@import "reset.scss";

// Core variables and mixins
@import "variables.scss"; // Modify this for custom colors, font-sizes, etc

$linkColor: red; // Make all links red

@import "mixins.scss";

// Grid system and page structure
@import "scaffolding.scss";

// Styled patterns and elements
@import "type.scss";
@import "forms.scss";
@import "tables.scss";
@import "patterns.scss";

Javascripts

Add necessary javascript(s) files to app/assets/javascripts/application.js

// Include all twitter's javascripts
//= require bootstrap

// Or peek any of them yourself
//= require bootstrap-alerts
//= require bootstrap-dropdown
//= require bootstrap-modal
//= require bootstrap-twipsy
//= require bootstrap-popover
//= require bootstrap-scrollspy
//= require bootstrap-tabs

Thanks

Thanks Twitter for Bootstrap http://twitter.github.com/bootstrap

Inspired by Seyhun Akyürek and his twitter-bootstrap-rails gem

License

Copyright (c) 2011 AnjLab

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Twitter Bootstrap CSS (with SASS flavour) and JS toolkits for Rails 3 projects

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%