Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building with Bootstrap

Building with Bootstrap

A quick tour of some of the features of Twitter Bootstrap.

Bryce "BonzoESC" Kerley

June 04, 2012
Tweet

More Decks by Bryce "BonzoESC" Kerley

Other Decks in Programming

Transcript

  1. CSS Frameworks Blueprint 960 BlueTrip 52 Gridless Perkins Less Framework

    4 Gravity HTML5 Boilerplate G5 Baseline SproutCore Lime Cartagen inuitCSS YUI Emastics YAML OOCSS Elastic CSS Golden Grid Sparkl Atatonic Lovely CSS 52Framework Markercss Tripoli SenCSS 1kb jQuery UI Elements Hartija Formy LogicCSS Monday, June 4, 12
  2. Monday, June 4, 12 Built for and by nerds: Like

    you, we love building awesome products on the web.
  3. Monday, June 4, 12 Styleguide docs: Designed first and foremost

    as a styleguide document, for best practices and examples
  4. Static Site Framework Dear Design Miami Friends, I’m sorry I

    didn’t make a version of Charleston that does this. I got caught up in some of the details and needed to start over. Please accept my apology, Bryce Kerley Monday, June 4, 12
  5. Let’s Just Use Rails •Bootstrap rocks for big applications •Frighteningly

    nice forms •Useful app components •Version that uses SASS Monday, June 4, 12
  6. Use Rails git init git add -A git commit -m

    “initial” Monday, June 4, 12
  7. Use Rails rails g scaffold species name:string rails g scaffold

    pet name:string species:references git add app db test config/routes.rb git commit -m “scaffolds” Monday, June 4, 12 Just some stuff so I have pages to test with
  8. A Bit About Assets Rails 3.1 has an Asset Pipeline

    http://bit.ly/LinwkR Monday, June 4, 12
  9. A Bit About Assets Rails 3.1 has an Asset Pipeline

    http://bit.ly/LinwkR CSS and JavaScript for big apps get big Monday, June 4, 12
  10. A Bit About Assets Rails 3.1 has an Asset Pipeline

    http://bit.ly/LinwkR CSS and JavaScript for big apps get big Image management gets complicated Monday, June 4, 12
  11. Use Rails In app/assets/stylesheets/application.css.scss Remove the big comment block @import

    "bootstrap" @import "scaffolds" @import "pets" @import "species" Monday, June 4, 12