From 8b9733b288a3daca0da04fe60e0b5a0ae8681362 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 12 Feb 2013 12:25:05 -0800 Subject: nuke what we don't need for jekyll --- docs/components.html | 1954 -------------------------------------------------- 1 file changed, 1954 deletions(-) delete mode 100644 docs/components.html (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html deleted file mode 100644 index e74e6d223..000000000 --- a/docs/components.html +++ /dev/null @@ -1,1954 +0,0 @@ - - - - - Components ยท Bootstrap - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-

Components

-

Dozens of reusable components built to provide navigation, alerts, popovers, and more.

-
-
- - -
- - -
- -
- - - - - - - - - - -
- -

Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.

- -

Single button group

-

Wrap a series of buttons with .btn in .btn-group.

-
-
- - - -
-
-
-<div class="btn-group">
-  <button class="btn">Left</button>
-  <button class="btn">Middle</button>
-  <button class="btn">Right</button>
-</div>
-
- -

Multiple button groups

-

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

-
-
-
- - - - -
-
- - - -
-
- -
-
-
-
-<div class="btn-toolbar">
-  <div class="btn-group">
-    ...
-  </div>
-</div>
-
- -

Vertical button groups

-

Make a set of buttons appear vertically stacked rather than horizontally.

-
-
- - - - -
-
-
-<div class="btn-group btn-group-vertical">
-  ...
-</div>
-
- -

Justified button groups

-

Make a group of buttons stretch at the same size to span the entire width of its parent. This only works with <a> elements as the <button> doesn't pick up these styles.

-
-
- Left - Right - Middle -
-
-
-<div class="btn-group btn-group-justified">
-  ...
-</div>
-
- -
- - - - -
- -

Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup. Requires the Bootstrap dropdown plugin.

- -

Single or split button

-

Turn a button into dropdown toggle, or add a second button to toggle the dropdown while retaining the primary button action.

- -
-<-- Single button -->
-<div class="btn-group">
-  <button type="button" class="btn dropdown-toggle" data-toggle="dropdown">
-    Action
-    <span class="caret"></span>
-  </button>
-  <ul class="dropdown-menu">
-    <!-- dropdown menu links -->
-  </ul>
-</div>
-
-<-- Split button -->
-<div class="btn-group">
-  <button class="btn">Action</button>
-  <button class="btn dropdown-toggle" data-toggle="dropdown">
-    <span class="caret"></span>
-  </button>
-  <ul class="dropdown-menu">
-    <!-- dropdown menu links -->
-  </ul>
-</div>
-
- -

Works with all button sizes

-

Button dropdowns work at any size: .btn-large, .btn-small, or .btn-mini.

-
-
-
- - -
-
- - -
- -
-
- -

Dropup buttons

-

Trigger dropdown menus above elements by adding .dropup to the parent.

-
-
- -
- - - -
-
-
-
-<div class="btn-group dropup">
-  <button class="btn">Dropup</button>
-  <button class="btn dropdown-toggle" data-toggle="dropdown">
-    <span class="caret"></span>
-  </button>
-  <ul class="dropdown-menu">
-    <!-- dropdown menu links -->
-  </ul>
-</div>
-
- -
- - - - - - - - - - - - - - - - - - - -
- -

Provide pagination links for your site or app with the multi-page pagination component, or the simpler pager alternative.

- -

Standard pagination

-

Simple pagination inspired by Rdio, great for apps and search results. The large block is hard to miss, easily scalable, and provides large click areas.

-
- -
-
-<ul class="pagination">
-  <li><a href="#">Prev</a></li>
-  <li><a href="#">1</a></li>
-  <li><a href="#">2</a></li>
-  <li><a href="#">3</a></li>
-  <li><a href="#">4</a></li>
-  <li><a href="#">5</a></li>
-  <li><a href="#">Next</a></li>
-</ul>
-
- -

Disabled and active states

-

Links are customizable for different circumstances. Use .disabled for unclickable links and .active to indicate the current page.

-
- -
-
-<ul class="pagination">
-  <li class="disabled"><a href="#">&laquo;</a></li>
-  <li class="active"><a href="#">1</a></li>
-  ...
-</ul>
-
-

You can optionally swap out active or disabled anchors for spans to remove click functionality while retaining intended styles.

-
-<ul class="pagination">
-  <li class="disabled"><span>&laquo;</span></li>
-  <li class="active"><span>1</span></li>
-  ...
-</ul>
-
- -

Sizes

-

Fancy larger or smaller pagination? Add .pagination-large, .pagination-small, or .pagination-mini for additional sizes.

-
-
- -
-
- -
-
- -
-
- -
-
-
-<ul class="pagination pagination-large">
-  ...
-</ul>
-<ul class="pagination">
-  ...
-</ul>
-<ul class="pagination pagination-small">
-  ...
-</ul>
-<ul class="pagination pagination-mini">
-  ...
-</ul>
-
- -

Pager

-

Quick previous and next links for simple pagination implementations with light markup and styles. It's great for simple sites like blogs or magazines.

- -

Default example

-

By default, the pager centers links.

-
- -
-
-<ul class="pager">
-  <li><a href="#">Previous</a></li>
-  <li><a href="#">Next</a></li>
-</ul>
-
- -

Aligned links

-

Alternatively, you can align each link to the sides:

-
- -
-
-<ul class="pager">
-  <li class="previous">
-    <a href="#">&larr; Older</a>
-  </li>
-  <li class="next">
-    <a href="#">Newer &rarr;</a>
-  </li>
-</ul>
-
- -

Optional disabled state

-

Pager links also use the general .disabled utility class from the pagination.

-
- -
-
-<ul class="pager">
-  <li class="previous disabled">
-    <a href="#">&larr; Older</a>
-  </li>
-  ...
-</ul>
-
- -
- - - - -
- -

Easily highlight new or unread items by adding a <span class="counter"> to links, Bootstrap navs, and more.

- -
- Inbox 42 -
-
-<a href="#">
-  Inbox
-  <span class="counter">42</span>
-</a>
-
- -

Self collapsing

-

When there are no new or unread items, counters will simply collapse (via CSS's :empty selector) provided no content exists within.

- -

Adapts to active nav states

-

Built-in styles are included for placing counters in active states in pill and list navigations.

- -
-<ul class="nav nav-list">
-  <li class="active">
-    <a href="#">Home</a>
-  </li>
-  <li><a href="#">...</a></li>
-  <li><a href="#">...</a></li>
-</ul>
-
- -
- - - - -
- - -

Jumbotron

-

A lightweight, flexible component to showcase key content on your site. It works well on marketing and content-heavy sites.

-
-
-

Hello, world!

-

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

-

Learn more

-
-
-
-<div class="jumbotron">
-  <h1>Heading</h1>
-  <p>Tagline</p>
-  <p>
-    <a class="btn btn-primary btn-large">
-      Learn more
-    </a>
-  </p>
-</div>
-
- -

Page header

-

A simple shell for an h1 to appropriately space out and segment sections of content on a page. It can utilize the h1's default small, element as well most other components (with additional styles).

-
- -
-
-<div class="page-header">
-  <h1>Example page header <small>Subtext for header</small></h1>
-</div>
-
- -
- - - - -
- -

Extend Bootstrap's grid system with the thumbnail component to easily display grids of images, videos, text, and more.

- -

Default thumbnails

-

By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.

-
-
-
- - - -
-
- - - -
-
- - - -
-
- - - -
-
-
-
-<div class="row">
-  <div class="span3">
-    <a href="#" class="thumbnail">
-      <img src="holder.js/260x180" alt="">
-    </a>
-  </div>
-  ...
-</div>
-
- -

Custom content thumbnails

-

With a bit of extra markup, it's possible to add any kind of HTML content like headings, paragraphs, or buttons into thumbnails.

-
-
-
-
- -
-

Thumbnail label

-

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

-

Action Action

-
-
-
-
-
- -
-

Thumbnail label

-

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

-

Action Action

-
-
-
-
-
- -
-

Thumbnail label

-

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

-

Action Action

-
-
-
-
-
-
-<div class="row">
-  <div class="span4">
-    <div class="thumbnail">
-      <img data-src="holder.js/300x200" alt="">
-      <h3>Thumbnail label</h3>
-      <p>Thumbnail caption...</p>
-    </div>
-  </div>
-  ...
-</div>
-
- -
- - - - - -
- -

Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages. For inline dismissal, use the alerts jQuery plugin.

- -

Default alert

-

Wrap any text and an optional dismiss button in .alert for a basic warning alert message. To ensure proper behavior across all devices, be sure to use <button> element with the data-dismiss="alert" data attribute.

-
-
- - Warning! Best check yo self, you're not looking too good. -
-
-
-<div class="alert">
-  <button type="button" class="close" data-dismiss="alert">&times;</button>
-  <strong>Warning!</strong> Best check yo self, you're not looking too good.
-</div>
-
- -

Block alerts

-

For longer messages, increase the padding on the top and bottom of the alert wrapper by adding .alert-block.

-
-
- -

Warning!

-

Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

-
-
-
-<div class="alert alert-block">
-  <button type="button" class="close" data-dismiss="alert">&times;</button>
-  <h4>Warning!</h4>
-  Best check yo self, you're not...
-</div>
-
- -

Contextual alternatives

-

Add optional classes to change an alert's connotation.

-
-
- - Oh snap! Change a few things up and try submitting again. -
-
- - Well done! You successfully read this important alert message. -
-
- - Heads up! This alert needs your attention, but it's not super important. -
-
-
-<div class="alert alert-error">... </div>
-<div class="alert alert-success">...</div>
-<div class="alert alert-info">...</div>
-
-
- - - - - -
- -

Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars.

- -

Progress bars use CSS3 transitions and animations to achieve some of their effects. These features are not supported in IE8-9 or older versions of Firefox. Internet Explorer 10 and below, as well as Opera 12, do not support animations.

- -

Basic

-

Default progress bar with a vertical gradient.

-
-
-
-
-
-
-<div class="progress">
-  <div class="progress-bar" style="width: 60%;"></div>
-</div>
-
- -

Additional colors

-

Progress bars use some of the same button and alert classes for consistent styles.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<div class="progress">
-  <div class="progress-bar progress-bar-info" style="width: 20%"></div>
-</div>
-<div class="progress">
-  <div class="progress-bar progress-bar-success" style="width: 40%"></div>
-</div>
-<div class="progress">
-  <div class="progress-bar progress-bar-warning" style="width: 60%"></div>
-</div>
-<div class="progress">
-  <div class="progress-bar progress-bar-danger" style="width: 80%"></div>
-</div>
-
- -

Striped

-

Uses a gradient to create a striped effect. Not available in IE8.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<div class="progress progress-striped">
-  <div class="progress-bar progress-bar-info" style="width: 20%"></div>
-</div>
-<div class="progress progress-striped">
-  <div class="progress-bar progress-bar-success" style="width: 40%"></div>
-</div>
-<div class="progress progress-striped">
-  <div class="progress-bar progress-bar-warning" style="width: 60%"></div>
-</div>
-<div class="progress progress-striped">
-  <div class="progress-bar progress-bar-danger" style="width: 80%"></div>
-</div>
-
- -

Animated

-

Add .active to .progress-striped to animate the stripes right to left. Not available in all versions of IE.

-
-
-
-
-
-
-<div class="progress progress-striped active">
-  <div class="progress-bar" style="width: 40%;"></div>
-</div>
-
- -

Stacked

-

Place multiple bars into the same .progress to stack them.

-
-
-
-
-
-
-
-
-<div class="progress">
-  <div class="progress-bar progress-bar-success" style="width: 35%;"></div>
-  <div class="progress-bar progress-bar-warning" style="width: 20%;"></div>
-  <div class="progress-bar progress-bar-danger" style="width: 10%;"></div>
-</div>
-
- -
- - - - - -
- -

Abstract object styles for building various types of components (like blog comments, Tweets, etc) that feature a left- or right-aligned image alongside textual content.

- -

Default example

-

The default media allow to float a media object (images, video, audio) to the left or right of a content block.

-
-
- - - -
-

Media heading

- Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. -
-
-
- - - -
-

Media heading

- Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. -
- - - -
-

Media heading

- Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. -
-
-
-
-
-
-<div class="media">
-  <a class="pull-left" href="#">
-    <img class="media-object" data-src="holder.js/64x64">
-  </a>
-  <div class="media-body">
-    <h4 class="media-heading">Media heading</h4>
-    ...
-
-    <!-- Nested media object -->
-    <div class="media">
-      ...
-    </div>
-  </div>
-</div>
-
- -

Media list

-

With a bit of extra markup, you can use media inside list (useful for comment threads or articles lists).

-
-
    -
  • - - - -
    -

    Media heading

    -

    Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.

    - -
    - - - -
    -

    Nested media heading

    - Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. - -
    - - - -
    -

    Nested media heading

    - Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. -
    -
    -
    -
    - -
    - - - -
    -

    Nested media heading

    - Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. -
    -
    -
    -
  • -
  • - - - -
    -

    Media heading

    - Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. -
    -
  • -
-
-
-<ul class="media-list">
-  <li class="media">
-    <a class="pull-left" href="#">
-      <img class="media-object" data-src="holder.js/64x64">
-    </a>
-    <div class="media-body">
-      <h4 class="media-heading">Media heading</h4>
-      ...
-
-      <!-- Nested media object -->
-      <div class="media">
-        ...
-     </div>
-    </div>
-  </li>
-</ul>
-
- -
- - - - - - -
- - -

Wells

-

Use the well as a simple effect on an element to give it an inset effect.

-
-
- Look, I'm in a well! -
-
-
-<div class="well">
-  ...
-</div>
-
-

Optional classes

-

Control padding and rounded corners with two optional modifier classes.

-
-
- Look, I'm in a well! -
-
-
-<div class="well well-large">
-  ...
-</div>
-
-
-
- Look, I'm in a well! -
-
-
-<div class="well well-small">
-  ...
-</div>
-
- -

Close icon

-

Use the generic close icon for dismissing content like modals and alerts.

-
-

-
-
<button class="close">&times;</button>
-

iOS devices require an href="#" for click events if you would rather use an anchor.

-
<a class="close" href="#">&times;</a>
- -

Helper classes

-

Simple, focused classes for small display or behavior tweaks.

- -

.pull-left

-

Float an element left

-
-class="pull-left"
-
-
-.pull-left {
-  float: left;
-}
-
- -

.pull-right

-

Float an element right

-
-class="pull-right"
-
-
-.pull-right {
-  float: right;
-}
-
- -

.muted

-

Change an element's color to #999

-
-class="muted"
-
-
-.muted {
-  color: #999;
-}
-
- -

.clearfix

-

Clear the float on any element. Utilizes the micro clearfix as popularized by Nicolas Gallagher.

-
-class="clearfix"
-
-
-.clearfix {
-  &:before,
-  &:after {
-    content: " ";
-    display: table;
-  }
-  &:after {
-    clear: both;
-  }
-}
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- cgit v1.2.3 From e45f12ad427fddc9d9859fe86423bd49795d4f43 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 12 Feb 2013 12:44:41 -0800 Subject: rearrange jekyll and docs --- docs/components.html | 1824 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1824 insertions(+) create mode 100644 docs/components.html (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html new file mode 100644 index 000000000..62a47d7c6 --- /dev/null +++ b/docs/components.html @@ -0,0 +1,1824 @@ +--- +layout: default +title: Components +--- + + + +
+
+

Components

+

Dozens of reusable components built to provide navigation, alerts, popovers, and more.

+
+
+ + +
+ + +
+ +
+ + + + + + + + + + +
+ +

Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.

+ +

Single button group

+

Wrap a series of buttons with .btn in .btn-group.

+
+
+ + + +
+
+
+<div class="btn-group">
+  <button class="btn">Left</button>
+  <button class="btn">Middle</button>
+  <button class="btn">Right</button>
+</div>
+
+ +

Multiple button groups

+

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

+
+
+
+ + + + +
+
+ + + +
+
+ +
+
+
+
+<div class="btn-toolbar">
+  <div class="btn-group">
+    ...
+  </div>
+</div>
+
+ +

Vertical button groups

+

Make a set of buttons appear vertically stacked rather than horizontally.

+
+
+ + + + +
+
+
+<div class="btn-group btn-group-vertical">
+  ...
+</div>
+
+ +

Justified button groups

+

Make a group of buttons stretch at the same size to span the entire width of its parent. This only works with <a> elements as the <button> doesn't pick up these styles.

+
+
+ Left + Right + Middle +
+
+
+<div class="btn-group btn-group-justified">
+  ...
+</div>
+
+ +
+ + + + +
+ +

Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup. Requires the Bootstrap dropdown plugin.

+ +

Single or split button

+

Turn a button into dropdown toggle, or add a second button to toggle the dropdown while retaining the primary button action.

+ +
+<-- Single button -->
+<div class="btn-group">
+  <button type="button" class="btn dropdown-toggle" data-toggle="dropdown">
+    Action
+    <span class="caret"></span>
+  </button>
+  <ul class="dropdown-menu">
+    <!-- dropdown menu links -->
+  </ul>
+</div>
+
+<-- Split button -->
+<div class="btn-group">
+  <button class="btn">Action</button>
+  <button class="btn dropdown-toggle" data-toggle="dropdown">
+    <span class="caret"></span>
+  </button>
+  <ul class="dropdown-menu">
+    <!-- dropdown menu links -->
+  </ul>
+</div>
+
+ +

Works with all button sizes

+

Button dropdowns work at any size: .btn-large, .btn-small, or .btn-mini.

+
+
+
+ + +
+
+ + +
+ +
+
+ +

Dropup buttons

+

Trigger dropdown menus above elements by adding .dropup to the parent.

+
+
+ +
+ + + +
+
+
+
+<div class="btn-group dropup">
+  <button class="btn">Dropup</button>
+  <button class="btn dropdown-toggle" data-toggle="dropdown">
+    <span class="caret"></span>
+  </button>
+  <ul class="dropdown-menu">
+    <!-- dropdown menu links -->
+  </ul>
+</div>
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +

Provide pagination links for your site or app with the multi-page pagination component, or the simpler pager alternative.

+ +

Standard pagination

+

Simple pagination inspired by Rdio, great for apps and search results. The large block is hard to miss, easily scalable, and provides large click areas.

+
+ +
+
+<ul class="pagination">
+  <li><a href="#">Prev</a></li>
+  <li><a href="#">1</a></li>
+  <li><a href="#">2</a></li>
+  <li><a href="#">3</a></li>
+  <li><a href="#">4</a></li>
+  <li><a href="#">5</a></li>
+  <li><a href="#">Next</a></li>
+</ul>
+
+ +

Disabled and active states

+

Links are customizable for different circumstances. Use .disabled for unclickable links and .active to indicate the current page.

+
+ +
+
+<ul class="pagination">
+  <li class="disabled"><a href="#">&laquo;</a></li>
+  <li class="active"><a href="#">1</a></li>
+  ...
+</ul>
+
+

You can optionally swap out active or disabled anchors for spans to remove click functionality while retaining intended styles.

+
+<ul class="pagination">
+  <li class="disabled"><span>&laquo;</span></li>
+  <li class="active"><span>1</span></li>
+  ...
+</ul>
+
+ +

Sizes

+

Fancy larger or smaller pagination? Add .pagination-large, .pagination-small, or .pagination-mini for additional sizes.

+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+<ul class="pagination pagination-large">
+  ...
+</ul>
+<ul class="pagination">
+  ...
+</ul>
+<ul class="pagination pagination-small">
+  ...
+</ul>
+<ul class="pagination pagination-mini">
+  ...
+</ul>
+
+ +

Pager

+

Quick previous and next links for simple pagination implementations with light markup and styles. It's great for simple sites like blogs or magazines.

+ +

Default example

+

By default, the pager centers links.

+
+ +
+
+<ul class="pager">
+  <li><a href="#">Previous</a></li>
+  <li><a href="#">Next</a></li>
+</ul>
+
+ +

Aligned links

+

Alternatively, you can align each link to the sides:

+
+ +
+
+<ul class="pager">
+  <li class="previous">
+    <a href="#">&larr; Older</a>
+  </li>
+  <li class="next">
+    <a href="#">Newer &rarr;</a>
+  </li>
+</ul>
+
+ +

Optional disabled state

+

Pager links also use the general .disabled utility class from the pagination.

+
+ +
+
+<ul class="pager">
+  <li class="previous disabled">
+    <a href="#">&larr; Older</a>
+  </li>
+  ...
+</ul>
+
+ +
+ + + + +
+ +

Easily highlight new or unread items by adding a <span class="counter"> to links, Bootstrap navs, and more.

+ +
+ Inbox 42 +
+
+<a href="#">
+  Inbox
+  <span class="counter">42</span>
+</a>
+
+ +

Self collapsing

+

When there are no new or unread items, counters will simply collapse (via CSS's :empty selector) provided no content exists within.

+ +

Adapts to active nav states

+

Built-in styles are included for placing counters in active states in pill and list navigations.

+ +
+<ul class="nav nav-list">
+  <li class="active">
+    <a href="#">Home</a>
+  </li>
+  <li><a href="#">...</a></li>
+  <li><a href="#">...</a></li>
+</ul>
+
+ +
+ + + + +
+ + +

Jumbotron

+

A lightweight, flexible component to showcase key content on your site. It works well on marketing and content-heavy sites.

+
+
+

Hello, world!

+

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

+

Learn more

+
+
+
+<div class="jumbotron">
+  <h1>Heading</h1>
+  <p>Tagline</p>
+  <p>
+    <a class="btn btn-primary btn-large">
+      Learn more
+    </a>
+  </p>
+</div>
+
+ +

Page header

+

A simple shell for an h1 to appropriately space out and segment sections of content on a page. It can utilize the h1's default small, element as well most other components (with additional styles).

+
+ +
+
+<div class="page-header">
+  <h1>Example page header <small>Subtext for header</small></h1>
+</div>
+
+ +
+ + + + +
+ +

Extend Bootstrap's grid system with the thumbnail component to easily display grids of images, videos, text, and more.

+ +

Default thumbnails

+

By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.

+
+
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+<div class="row">
+  <div class="span3">
+    <a href="#" class="thumbnail">
+      <img src="holder.js/260x180" alt="">
+    </a>
+  </div>
+  ...
+</div>
+
+ +

Custom content thumbnails

+

With a bit of extra markup, it's possible to add any kind of HTML content like headings, paragraphs, or buttons into thumbnails.

+
+
+
+
+ +
+

Thumbnail label

+

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

+

Action Action

+
+
+
+
+
+ +
+

Thumbnail label

+

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

+

Action Action

+
+
+
+
+
+ +
+

Thumbnail label

+

Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

+

Action Action

+
+
+
+
+
+
+<div class="row">
+  <div class="span4">
+    <div class="thumbnail">
+      <img data-src="holder.js/300x200" alt="">
+      <h3>Thumbnail label</h3>
+      <p>Thumbnail caption...</p>
+    </div>
+  </div>
+  ...
+</div>
+
+ +
+ + + + + +
+ +

Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages. For inline dismissal, use the alerts jQuery plugin.

+ +

Default alert

+

Wrap any text and an optional dismiss button in .alert for a basic warning alert message. To ensure proper behavior across all devices, be sure to use <button> element with the data-dismiss="alert" data attribute.

+
+
+ + Warning! Best check yo self, you're not looking too good. +
+
+
+<div class="alert">
+  <button type="button" class="close" data-dismiss="alert">&times;</button>
+  <strong>Warning!</strong> Best check yo self, you're not looking too good.
+</div>
+
+ +

Block alerts

+

For longer messages, increase the padding on the top and bottom of the alert wrapper by adding .alert-block.

+
+
+ +

Warning!

+

Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

+
+
+
+<div class="alert alert-block">
+  <button type="button" class="close" data-dismiss="alert">&times;</button>
+  <h4>Warning!</h4>
+  Best check yo self, you're not...
+</div>
+
+ +

Contextual alternatives

+

Add optional classes to change an alert's connotation.

+
+
+ + Oh snap! Change a few things up and try submitting again. +
+
+ + Well done! You successfully read this important alert message. +
+
+ + Heads up! This alert needs your attention, but it's not super important. +
+
+
+<div class="alert alert-error">... </div>
+<div class="alert alert-success">...</div>
+<div class="alert alert-info">...</div>
+
+
+ + + + + +
+ +

Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars.

+ +

Progress bars use CSS3 transitions and animations to achieve some of their effects. These features are not supported in IE8-9 or older versions of Firefox. Internet Explorer 10 and below, as well as Opera 12, do not support animations.

+ +

Basic

+

Default progress bar with a vertical gradient.

+
+
+
+
+
+
+<div class="progress">
+  <div class="progress-bar" style="width: 60%;"></div>
+</div>
+
+ +

Additional colors

+

Progress bars use some of the same button and alert classes for consistent styles.

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div class="progress">
+  <div class="progress-bar progress-bar-info" style="width: 20%"></div>
+</div>
+<div class="progress">
+  <div class="progress-bar progress-bar-success" style="width: 40%"></div>
+</div>
+<div class="progress">
+  <div class="progress-bar progress-bar-warning" style="width: 60%"></div>
+</div>
+<div class="progress">
+  <div class="progress-bar progress-bar-danger" style="width: 80%"></div>
+</div>
+
+ +

Striped

+

Uses a gradient to create a striped effect. Not available in IE8.

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div class="progress progress-striped">
+  <div class="progress-bar progress-bar-info" style="width: 20%"></div>
+</div>
+<div class="progress progress-striped">
+  <div class="progress-bar progress-bar-success" style="width: 40%"></div>
+</div>
+<div class="progress progress-striped">
+  <div class="progress-bar progress-bar-warning" style="width: 60%"></div>
+</div>
+<div class="progress progress-striped">
+  <div class="progress-bar progress-bar-danger" style="width: 80%"></div>
+</div>
+
+ +

Animated

+

Add .active to .progress-striped to animate the stripes right to left. Not available in all versions of IE.

+
+
+
+
+
+
+<div class="progress progress-striped active">
+  <div class="progress-bar" style="width: 40%;"></div>
+</div>
+
+ +

Stacked

+

Place multiple bars into the same .progress to stack them.

+
+
+
+
+
+
+
+
+<div class="progress">
+  <div class="progress-bar progress-bar-success" style="width: 35%;"></div>
+  <div class="progress-bar progress-bar-warning" style="width: 20%;"></div>
+  <div class="progress-bar progress-bar-danger" style="width: 10%;"></div>
+</div>
+
+ +
+ + + + + +
+ +

Abstract object styles for building various types of components (like blog comments, Tweets, etc) that feature a left- or right-aligned image alongside textual content.

+ +

Default example

+

The default media allow to float a media object (images, video, audio) to the left or right of a content block.

+
+
+ + + +
+

Media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. +
+
+
+ + + +
+

Media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. +
+ + + +
+

Media heading

+ Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus. +
+
+
+
+
+
+<div class="media">
+  <a class="pull-left" href="#">
+    <img class="media-object" data-src="holder.js/64x64">
+  </a>
+  <div class="media-body">
+    <h4 class="media-heading">Media heading</h4>
+    ...
+
+    <!-- Nested media object -->
+    <div class="media">
+      ...
+    </div>
+  </div>
+</div>
+
+ +

Media list

+

With a bit of extra markup, you can use media inside list (useful for comment threads or articles lists).

+
+
    +
  • + + + +
    +

    Media heading

    +

    Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.

    + +
    + + + +
    +

    Nested media heading

    + Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. + +
    + + + +
    +

    Nested media heading

    + Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. +
    +
    +
    +
    + +
    + + + +
    +

    Nested media heading

    + Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. +
    +
    +
    +
  • +
  • + + + +
    +

    Media heading

    + Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. +
    +
  • +
+
+
+<ul class="media-list">
+  <li class="media">
+    <a class="pull-left" href="#">
+      <img class="media-object" data-src="holder.js/64x64">
+    </a>
+    <div class="media-body">
+      <h4 class="media-heading">Media heading</h4>
+      ...
+
+      <!-- Nested media object -->
+      <div class="media">
+        ...
+     </div>
+    </div>
+  </li>
+</ul>
+
+ +
+ + + + + + +
+ + +

Wells

+

Use the well as a simple effect on an element to give it an inset effect.

+
+
+ Look, I'm in a well! +
+
+
+<div class="well">
+  ...
+</div>
+
+

Optional classes

+

Control padding and rounded corners with two optional modifier classes.

+
+
+ Look, I'm in a well! +
+
+
+<div class="well well-large">
+  ...
+</div>
+
+
+
+ Look, I'm in a well! +
+
+
+<div class="well well-small">
+  ...
+</div>
+
+ +

Close icon

+

Use the generic close icon for dismissing content like modals and alerts.

+
+

+
+
<button class="close">&times;</button>
+

iOS devices require an href="#" for click events if you would rather use an anchor.

+
<a class="close" href="#">&times;</a>
+ +

Helper classes

+

Simple, focused classes for small display or behavior tweaks.

+ +

.pull-left

+

Float an element left

+
+class="pull-left"
+
+
+.pull-left {
+  float: left;
+}
+
+ +

.pull-right

+

Float an element right

+
+class="pull-right"
+
+
+.pull-right {
+  float: right;
+}
+
+ +

.muted

+

Change an element's color to #999

+
+class="muted"
+
+
+.muted {
+  color: #999;
+}
+
+ +

.clearfix

+

Clear the float on any element. Utilizes the micro clearfix as popularized by Nicolas Gallagher.

+
+class="clearfix"
+
+
+.clearfix {
+  &:before,
+  &:after {
+    content: " ";
+    display: table;
+  }
+  &:after {
+    clear: both;
+  }
+}
+
+ +
+ + + +
+
+ +
-- cgit v1.2.3 From 37becbab8cf5c125df758a61ac4429eb8693d673 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 14 Feb 2013 21:42:33 -0800 Subject: convert components code examples to pygments --- docs/components.html | 1032 +++++++++++++++++++++++++------------------------- 1 file changed, 510 insertions(+), 522 deletions(-) (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html index 62a47d7c6..0aea4113e 100644 --- a/docs/components.html +++ b/docs/components.html @@ -62,26 +62,26 @@ title: Components -
-<div class="dropdown">
-  <!-- Link or button to toggle dropdown -->
-  <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
-    <li><a tabindex="-1" href="#">Action</a></li>
-    <li><a tabindex="-1" href="#">Another action</a></li>
-    <li><a tabindex="-1" href="#">Something else here</a></li>
-    <li class="divider"></li>
-    <li><a tabindex="-1" href="#">Separated link</a></li>
-  </ul>
-</div>
-
+{% highlight html linenos %} + +{% endhighlight %}

Aligning the menus

Add .pull-right to a .dropdown-menu to right align the dropdown menu.

-
-<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dLabel">
+{% highlight html linenos %}
+
+ +{% endhighlight %}

Disabled menu options

Add .disabled to a <li> in the dropdown to disable the link.

@@ -94,13 +94,13 @@ title: Components -
-<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
-  <li><a tabindex="-1" href="#">Regular link</a></li>
-  <li class="disabled"><a tabindex="-1" href="#">Disabled link</a></li>
-  <li><a tabindex="-1" href="#">Another link</a></li>
-</ul>
-
+{% highlight html linenos %} + +{% endhighlight %} @@ -118,46 +118,46 @@ title: Components

Wrap a series of buttons with .btn in .btn-group.

- - - + + +
-
-<div class="btn-group">
-  <button class="btn">Left</button>
-  <button class="btn">Middle</button>
-  <button class="btn">Right</button>
-</div>
-
+{% highlight html linenos %} +
+ + + +
+{% endhighlight %}

Multiple button groups

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

- - - - + + + +
- - - + + +
- +
-
-<div class="btn-toolbar">
-  <div class="btn-group">
-    ...
-  </div>
-</div>
-
+{% highlight html linenos %} +
+
...
+
...
+
...
+
+{% endhighlight %}

Vertical button groups

Make a set of buttons appear vertically stacked rather than horizontally.

@@ -169,11 +169,11 @@ title: Components -
-<div class="btn-group btn-group-vertical">
+{% highlight html linenos %}
+
... -</div> -
+ +{% endhighlight %}

Justified button groups

Make a group of buttons stretch at the same size to span the entire width of its parent. This only works with <a> elements as the <button> doesn't pick up these styles.

@@ -184,11 +184,11 @@ title: Components Middle -
-<div class="btn-group btn-group-justified">
+{% highlight html linenos %}
+
... -</div> -
+ +{% endhighlight %} @@ -316,36 +316,45 @@ title: Components -
-<-- Single button -->
-<div class="btn-group">
-  <button type="button" class="btn dropdown-toggle" data-toggle="dropdown">
-    Action
-    <span class="caret"></span>
-  </button>
-  <ul class="dropdown-menu">
-    <!-- dropdown menu links -->
-  </ul>
-</div>
-
-<-- Split button -->
-<div class="btn-group">
-  <button class="btn">Action</button>
-  <button class="btn dropdown-toggle" data-toggle="dropdown">
-    <span class="caret"></span>
-  </button>
-  <ul class="dropdown-menu">
-    <!-- dropdown menu links -->
-  </ul>
-</div>
-
+{% highlight html linenos %} + + + + + +{% endhighlight %}

Works with all button sizes

Button dropdowns work at any size: .btn-large, .btn-small, or .btn-mini.

- +
- +
- +
+{% highlight html linenos %} + +
+ + +
+ + +
+ + +
+ + +
+ + +
+{% endhighlight %}

Dropup buttons

Trigger dropdown menus above elements by adding .dropup to the parent.

@@ -405,17 +449,17 @@ title: Components -
-<div class="btn-group dropup">
-  <button class="btn">Dropup</button>
-  <button class="btn dropdown-toggle" data-toggle="dropdown">
-    <span class="caret"></span>
-  </button>
-  <ul class="dropdown-menu">
-    <!-- dropdown menu links -->
-  </ul>
-</div>
-
+{% highlight html linenos %} +
+ + + +
+{% endhighlight %} @@ -439,15 +483,13 @@ title: Components
  • Messages
  • -
    -<ul class="nav nav-tabs">
    -  <li class="active">
    -    <a href="#">Home</a>
    -  </li>
    -  <li><a href="#">...</a></li>
    -  <li><a href="#">...</a></li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %}

    List

    Swap the tabs class for .nav-list.

    @@ -458,15 +500,13 @@ title: Components
  • Messages
  • -
    -<ul class="nav nav-list">
    -  <li class="active">
    -    <a href="#">Home</a>
    -  </li>
    -  <li><a href="#">...</a></li>
    -  <li><a href="#">...</a></li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %}

    Pills

    Take that same HTML, but use .nav-pills instead:

    @@ -477,15 +517,13 @@ title: Components
  • Messages
  • -
    -<ul class="nav nav-pills">
    -  <li class="active">
    -    <a href="#">Home</a>
    -  </li>
    -  <li><a href="#">...</a></li>
    -  <li><a href="#">...</a></li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %}

    Pills are also vertically stackable. Just add .nav-stacked.

    -
    -<ul class="nav nav-pills nav-stacked">
    +{% highlight html linenos %}
    +
    + +{% endhighlight %}

    Options

    @@ -517,15 +555,14 @@ title: Components
  • Messages
  • -
    -<ul class="nav nav-tabs nav-justified">
    +{% highlight html linenos %}
    +
    +
    + +{% endhighlight %}

    Disabled state

    For any nav component (tabs, pills, or list), add .disabled for gray links and no hover effects. Links will remain clickable, however, unless you remove the href attribute. Alternatively, you could implement custom JavaScript to prevent those clicks.

    @@ -536,13 +573,14 @@ title: Components
  • Disabled link
  • -
    -<ul class="nav nav-pills">
    +{% highlight html linenos %}
    +
    + +{% endhighlight %} +

    Component alignment

    To align nav links, use the .pull-left or .pull-right utility classes. Both classes will add a CSS float in the specified direction.

    @@ -560,7 +598,9 @@ title: Components
  • Home
  • Help
  • Home
  • Help
  • - - - + + -
    -<div class="navbar">
    -  <div class="container">
    -
    -    <!-- .btn-navbar is used as the toggle for collapsed navbar content -->
    -    <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
    -      <span class="icon-bar"></span>
    -      <span class="icon-bar"></span>
    -      <span class="icon-bar"></span>
    -    </a>
    -
    -    <!-- Be sure to leave the brand out there if you want it shown -->
    -    <a class="brand" href="#">Project name</a>
    -
    -    <!-- Everything you want hidden at 940px or less, place within here -->
    -    <div class="nav-collapse collapse">
    -      <!-- .nav, .navbar-search, .navbar-form, etc -->
    -    </div>
    -
    -  </div>
    -</div>
    -
    +{% highlight html linenos %} + +{% endhighlight %} +
    Heads up! The responsive navbar requires the collapse plugin and responsive Bootstrap CSS file.
    -
    - -

    Inverted variation

    Modify the look of the navbar by adding .navbar-inverse.

    @@ -957,11 +967,11 @@ title: Components
    -
    -<div class="navbar navbar-inverse">
    +{% highlight html linenos %}
    +
    + +{% endhighlight %} @@ -989,13 +999,14 @@ title: Components
  • Data
  • -
    -<ul class="breadcrumb">
    -  <li><a href="#">Home</a></li>
    -  <li><a href="#">Library</a></li>
    -  <li class="active">Data</li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %} + @@ -1022,17 +1033,17 @@ title: Components
  • »
  • -
    -<ul class="pagination">
    -  <li><a href="#">Prev</a></li>
    -  <li><a href="#">1</a></li>
    -  <li><a href="#">2</a></li>
    -  <li><a href="#">3</a></li>
    -  <li><a href="#">4</a></li>
    -  <li><a href="#">5</a></li>
    -  <li><a href="#">Next</a></li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %}

    Disabled and active states

    Links are customizable for different circumstances. Use .disabled for unclickable links and .active to indicate the current page.

    @@ -1047,21 +1058,22 @@ title: Components
  • »
  • -
    -<ul class="pagination">
    -  <li class="disabled"><a href="#">&laquo;</a></li>
    -  <li class="active"><a href="#">1</a></li>
    +{% highlight html linenos %}
    +
      +
    • «
    • +
    • 1
    • ... -</ul> -
    -

    You can optionally swap out active or disabled anchors for spans to remove click functionality while retaining intended styles.

    -
    -<ul class="pagination">
    -  <li class="disabled"><span>&laquo;</span></li>
    -  <li class="active"><span>1</span></li>
    +
    +{% endhighlight %}
    +          

    You can optionally swap out active or disabled anchors for <span> to remove click functionality while retaining intended styles.

    +{% highlight html linenos %} +
      +
    • «
    • +
    • 1
    • ... -</ul> -
    + +{% endhighlight %} +

    Sizes

    Fancy larger or smaller pagination? Add .pagination-large, .pagination-small, or .pagination-mini for additional sizes.

    @@ -1111,20 +1123,13 @@ title: Components -
    -<ul class="pagination pagination-large">
    -  ...
    -</ul>
    -<ul class="pagination">
    -  ...
    -</ul>
    -<ul class="pagination pagination-small">
    -  ...
    -</ul>
    -<ul class="pagination pagination-mini">
    -  ...
    -</ul>
    -
    +{% highlight html linenos %} +
      ...
    +
      ...
    +
      ...
    +
      ...
    +{% endhighlight %} +

    Pager

    Quick previous and next links for simple pagination implementations with light markup and styles. It's great for simple sites like blogs or magazines.

    @@ -1137,12 +1142,12 @@ title: Components
  • Next
  • -
    -<ul class="pager">
    -  <li><a href="#">Previous</a></li>
    -  <li><a href="#">Next</a></li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %}

    Aligned links

    Alternatively, you can align each link to the sides:

    @@ -1152,16 +1157,13 @@ title: Components -
    -<ul class="pager">
    -  <li class="previous">
    -    <a href="#">&larr; Older</a>
    -  </li>
    -  <li class="next">
    -    <a href="#">Newer &rarr;</a>
    -  </li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %} +

    Optional disabled state

    Pager links also use the general .disabled utility class from the pagination.

    @@ -1171,14 +1173,13 @@ title: Components -
    -<ul class="pager">
    -  <li class="previous disabled">
    -    <a href="#">&larr; Older</a>
    -  </li>
    -  ...
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %} + @@ -1195,12 +1196,9 @@ title: Components -
    -<a href="#">
    -  Inbox
    -  <span class="counter">42</span>
    -</a>
    -
    +{% highlight html linenos %} +Inbox 42 +{% endhighlight %}

    Self collapsing

    When there are no new or unread items, counters will simply collapse (via CSS's :empty selector) provided no content exists within.

    @@ -1230,15 +1228,17 @@ title: Components -
    -<ul class="nav nav-list">
    -  <li class="active">
    -    <a href="#">Home</a>
    -  </li>
    -  <li><a href="#">...</a></li>
    -  <li><a href="#">...</a></li>
    -</ul>
    -
    +{% highlight html linenos %} + +{% endhighlight %} @@ -1260,17 +1260,13 @@ title: Components

    Learn more

    -
    -<div class="jumbotron">
    -  <h1>Heading</h1>
    -  <p>Tagline</p>
    -  <p>
    -    <a class="btn btn-primary btn-large">
    -      Learn more
    -    </a>
    -  </p>
    -</div>
    -
    +{% highlight html linenos %} +
    +

    Hello, world!

    +

    ...

    +

    Learn more

    +
    +{% endhighlight %}

    Page header

    A simple shell for an h1 to appropriately space out and segment sections of content on a page. It can utilize the h1's default small, element as well most other components (with additional styles).

    @@ -1279,11 +1275,11 @@ title: Components

    Example page header Subtext for header

    -
    -<div class="page-header">
    -  <h1>Example page header <small>Subtext for header</small></h1>
    -</div>
    -
    +{% highlight html linenos %} + +{% endhighlight %} @@ -1323,16 +1319,16 @@ title: Components -
    -<div class="row">
    -  <div class="span3">
    -    <a href="#" class="thumbnail">
    -      <img src="holder.js/260x180" alt="">
    -    </a>
    -  </div>
    +{% highlight html linenos %}
    +
    +
    + + + +
    ... -</div> -
    + +{% endhighlight %}

    Custom content thumbnails

    With a bit of extra markup, it's possible to add any kind of HTML content like headings, paragraphs, or buttons into thumbnails.

    @@ -1370,18 +1366,22 @@ title: Components -
    -<div class="row">
    -  <div class="span4">
    -    <div class="thumbnail">
    -      <img data-src="holder.js/300x200" alt="">
    -      <h3>Thumbnail label</h3>
    -      <p>Thumbnail caption...</p>
    -    </div>
    -  </div>
    +{% highlight html linenos %}
    +
    +
    +
    + +
    +

    Thumbnail label

    +

    ...

    +

    Action Action

    +
    +
    +
    ... -</div> -
    + +{% endhighlight %} + @@ -1404,12 +1404,12 @@ title: Components Warning! Best check yo self, you're not looking too good. -
    -<div class="alert">
    -  <button type="button" class="close" data-dismiss="alert">&times;</button>
    -  <strong>Warning!</strong> Best check yo self, you're not looking too good.
    -</div>
    -
    +{% highlight html linenos %} +
    + + Warning! Best check yo self, you're not looking too good. +
    +{% endhighlight %}

    Block alerts

    For longer messages, increase the padding on the top and bottom of the alert wrapper by adding .alert-block.

    @@ -1420,13 +1420,13 @@ title: Components

    Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

    -
    -<div class="alert alert-block">
    -  <button type="button" class="close" data-dismiss="alert">&times;</button>
    -  <h4>Warning!</h4>
    -  Best check yo self, you're not...
    -</div>
    -
    +{% highlight html linenos %} +
    + +

    Warning!

    +

    ...

    +
    +{% endhighlight %}

    Contextual alternatives

    Add optional classes to change an alert's connotation.

    @@ -1444,11 +1444,11 @@ title: Components Heads up! This alert needs your attention, but it's not super important. -
    -<div class="alert alert-error">... </div>
    -<div class="alert alert-success">...</div>
    -<div class="alert alert-info">...</div>
    -
    +{% highlight html linenos %} +
    ...
    +
    ...
    +
    ...
    +{% endhighlight %} @@ -1471,11 +1471,11 @@ title: Components
    -
    -<div class="progress">
    -  <div class="progress-bar" style="width: 60%;"></div>
    -</div>
    -
    +{% highlight html linenos %} +
    +
    +
    +{% endhighlight %}

    Additional colors

    Progress bars use some of the same button and alert classes for consistent styles.

    @@ -1493,20 +1493,20 @@ title: Components
    -
    -<div class="progress">
    -  <div class="progress-bar progress-bar-info" style="width: 20%"></div>
    -</div>
    -<div class="progress">
    -  <div class="progress-bar progress-bar-success" style="width: 40%"></div>
    -</div>
    -<div class="progress">
    -  <div class="progress-bar progress-bar-warning" style="width: 60%"></div>
    -</div>
    -<div class="progress">
    -  <div class="progress-bar progress-bar-danger" style="width: 80%"></div>
    -</div>
    -
    +{% highlight html linenos %} +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +{% endhighlight %}

    Striped

    Uses a gradient to create a striped effect. Not available in IE8.

    @@ -1524,20 +1524,20 @@ title: Components
    -
    -<div class="progress progress-striped">
    -  <div class="progress-bar progress-bar-info" style="width: 20%"></div>
    -</div>
    -<div class="progress progress-striped">
    -  <div class="progress-bar progress-bar-success" style="width: 40%"></div>
    -</div>
    -<div class="progress progress-striped">
    -  <div class="progress-bar progress-bar-warning" style="width: 60%"></div>
    -</div>
    -<div class="progress progress-striped">
    -  <div class="progress-bar progress-bar-danger" style="width: 80%"></div>
    -</div>
    -
    +{% highlight html linenos %} +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +{% endhighlight %}

    Animated

    Add .active to .progress-striped to animate the stripes right to left. Not available in all versions of IE.

    @@ -1546,11 +1546,11 @@ title: Components
    -
    -<div class="progress progress-striped active">
    -  <div class="progress-bar" style="width: 40%;"></div>
    -</div>
    -
    +{% highlight html linenos %} +
    +
    +
    +{% endhighlight %}

    Stacked

    Place multiple bars into the same .progress to stack them.

    @@ -1561,13 +1561,13 @@ title: Components
    -
    -<div class="progress">
    -  <div class="progress-bar progress-bar-success" style="width: 35%;"></div>
    -  <div class="progress-bar progress-bar-warning" style="width: 20%;"></div>
    -  <div class="progress-bar progress-bar-danger" style="width: 10%;"></div>
    -</div>
    -
    +{% highlight html linenos %} +
    +
    +
    +
    +
    +{% endhighlight %} @@ -1613,22 +1613,17 @@ title: Components -
    -<div class="media">
    -  <a class="pull-left" href="#">
    -    <img class="media-object" data-src="holder.js/64x64">
    -  </a>
    -  <div class="media-body">
    -    <h4 class="media-heading">Media heading</h4>
    +{% highlight html linenos %}
    +
    + + + +
    +

    Media heading

    ... - - <!-- Nested media object --> - <div class="media"> - ... - </div> - </div> -</div> -
    + + +{% endhighlight %}

    Media list

    With a bit of extra markup, you can use media inside list (useful for comment threads or articles lists).

    @@ -1684,24 +1679,19 @@ title: Components -
    -<ul class="media-list">
    -  <li class="media">
    -    <a class="pull-left" href="#">
    -      <img class="media-object" data-src="holder.js/64x64">
    -    </a>
    -    <div class="media-body">
    -      <h4 class="media-heading">Media heading</h4>
    +{% highlight html linenos %}
    +
      +
    • + + + +
      +

      Media heading

      ... - - <!-- Nested media object --> - <div class="media"> - ... - </div> - </div> - </li> -</ul> -
    + + + +{% endhighlight %} @@ -1723,11 +1713,9 @@ title: Components Look, I'm in a well! -
    -<div class="well">
    -  ...
    -</div>
    -
    +{% highlight html linenos %} +
    ...
    +{% endhighlight %}

    Optional classes

    Control padding and rounded corners with two optional modifier classes.

    @@ -1735,73 +1723,72 @@ title: Components Look, I'm in a well!
    -
    -<div class="well well-large">
    -  ...
    -</div>
    -
    +{% highlight html linenos %} +
    ...
    +{% endhighlight %} +
    Look, I'm in a well!
    -
    -<div class="well well-small">
    -  ...
    -</div>
    -
    +{% highlight html linenos %} +
    ...
    +{% endhighlight %} +

    Close icon

    Use the generic close icon for dismissing content like modals and alerts.

    -
    <button class="close">&times;</button>
    -

    iOS devices require an href="#" for click events if you would rather use an anchor.

    -
    <a class="close" href="#">&times;</a>
    +{% highlight html linenos %} + +{% endhighlight %}

    Helper classes

    Simple, focused classes for small display or behavior tweaks.

    .pull-left

    Float an element left

    -
    -class="pull-left"
    -
    -
    +{% highlight html linenos %}
    +
    ...
    +{% endhighlight %} +{% highlight css linenos %} .pull-left { float: left; } -
    +{% endhighlight %}

    .pull-right

    Float an element right

    -
    -class="pull-right"
    -
    -
    +{% highlight html linenos %}
    +
    ...
    +{% endhighlight %} +{% highlight css linenos %} .pull-right { float: right; } -
    +{% endhighlight %}

    .muted

    Change an element's color to #999

    -
    -class="muted"
    -
    -
    +{% highlight html linenos %}
    +

    ...

    +{% endhighlight %} +{% highlight css linenos %} .muted { color: #999; } -
    +{% endhighlight %} +

    .clearfix

    Clear the float on any element. Utilizes the micro clearfix as popularized by Nicolas Gallagher.

    -
    -class="clearfix"
    -
    -
    +{% highlight html linenos %}
    +
    ...
    +{% endhighlight %} +{% highlight css linenos %} .clearfix { &:before, &:after { @@ -1812,7 +1799,8 @@ class="clearfix" clear: both; } } -
    +{% endhighlight %} + -- cgit v1.2.3