bootstrap

bootstrap

bootstrap官网
bootstrap中文文档

bootswatch官网

gemfile中加

1
2
3
gem 'therubyracer'
gem 'bootstrap-sass'
gem 'bootswatch-rails'

application.js加

1
//= require bootstrap

改application.css为application.css.scss,内容改为

1
2
3
4
5
6
7
8
9
// 示例:使用bootswatch免费主题: 'Cerulean' bootswatch
// 首先导入变量
@import "bootswatch/cerulean/variables";

// 导入bootstrap
@import "bootstrap";

// 最后导入需要的bootswatch主题
@import "bootswatch/cerulean/bootswatch";

文章目录
|