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

Bootstrap and the future of styling

Bootstrap and the future of styling

@Ana Sampaio and @João Ferreira talked about "Bootstrap and the future of styling" at Microsoft WebCamp: Lisbon 2014

Ana Sampaio

May 20, 2014
Tweet

Other Decks in Design

Transcript

  1. <div class="row"> <div class="col-md-8"><!--Info--></div> <div class="col-md-4"><!--Register--></div> </div> <div class="row"> <div

    class="col-md-4"> <!--Map--> </div> <div class="col-md-8"> <!--Details and Schedule--> </div> </div>
  2. <div class="row"> <div class="col-md-8"><!--Info--></div> <div class="col-md-4"><!--Register--></div> </div> <div class="row"> <div

    class="col-md-4 col-md-push-8"> <!--Map--> </div> <div class="col-md-8 col-md-pull-4"> <!--Details and Schedule--> </div> </div>
  3. //Close button in alerts <button type="button" class="close" data-dismiss="alert"> &times; </button>

    //Close button in modals <button type="button" class="close" data-dismiss="modal"> &times; </button>
  4. //Media queries for an individual componente //envisioned by @jon_neal .widget:media(max-width:

    300px) { font-size: 14px; } .widget:media(max-width: 900px) { font-size: 18px; }