diff options
| author | Mark Otto <[email protected]> | 2013-08-17 17:31:58 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-17 17:31:58 -0700 |
| commit | ba20e512ce53e7cc771ba06d492a01d48db6cc97 (patch) | |
| tree | 30cebcbb796725c7dc06c9125714d83adbf585c3 /examples/grid | |
| parent | 2af9cf10ce2e93fe0ac07651d405abc484e4c608 (diff) | |
| parent | e29c23afab2577e05cfaa41f64a20f1ca87222fc (diff) | |
| download | bootstrap-ba20e512ce53e7cc771ba06d492a01d48db6cc97.tar.xz bootstrap-ba20e512ce53e7cc771ba06d492a01d48db6cc97.zip | |
Merge branch '3.0.0-wip' into bs3_theme
Conflicts:
dist/css/bootstrap.min.css
Diffstat (limited to 'examples/grid')
| -rw-r--r-- | examples/grid/grid.css | 28 | ||||
| -rw-r--r-- | examples/grid/index.html | 114 |
2 files changed, 142 insertions, 0 deletions
diff --git a/examples/grid/grid.css b/examples/grid/grid.css new file mode 100644 index 000000000..963b128e3 --- /dev/null +++ b/examples/grid/grid.css @@ -0,0 +1,28 @@ +.container { + padding-left: 15px; + padding-right: 15px; +} + +h4 { + margin-top: 25px; +} +.row { + margin-bottom: 20px; +} +.row .row { + margin-top: 10px; + margin-bottom: 0; +} +[class*="col-"] { + padding-top: 15px; + padding-bottom: 15px; + background-color: #eee; + border: 1px solid #ddd; + background-color: rgba(86,61,124,.15); + border: 1px solid rgba(86,61,124,.2); +} + +hr { + margin-top: 40px; + margin-bottom: 40px; +}
\ No newline at end of file diff --git a/examples/grid/index.html b/examples/grid/index.html new file mode 100644 index 000000000..3cef51e8d --- /dev/null +++ b/examples/grid/index.html @@ -0,0 +1,114 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="description" content=""> + <meta name="author" content=""> + <link rel="shortcut icon" href="../../assets/ico/favicon.png"> + + <title>Grid Template for Bootstrap</title> + + <!-- Bootstrap core CSS --> + <link href="../../dist/css/bootstrap.css" rel="stylesheet"> + + <!-- Custom styles for this template --> + <link href="grid.css" rel="stylesheet"> + </head> + + <body> + <div class="container"> + + <div class="page-header"> + <h1>Bootstrap grid examples</h1> + <p class="lead">Basic grid layouts to get you familiar with building within the Bootstrap grid system.</p> + </div> + + <h3>Three equal columns</h3> + <p>Get three equal-width columns <strong>starting at desktops and scaling to large desktops</strong>. On mobile devices, tablets and below, the columns will automatically stack.</p> + <div class="row"> + <div class="col-md-4">.col-md-4</div> + <div class="col-md-4">.col-md-4</div> + <div class="col-md-4">.col-md-4</div> + </div> + + <h3>Three unequal columns</h3> + <p>Get three columns <strong>starting at desktops and scaling to large desktops</strong> of various widths. Remember, grid columns should add up to twelve for a single horizontal block. More than that, and columns start stacking no matter the viewport.</p> + <div class="row"> + <div class="col-md-3">.col-md-3</div> + <div class="col-md-6">.col-md-6</div> + <div class="col-md-3">.col-md-3</div> + </div> + + <h3>Two columns</h3> + <p>Get two columns <strong>starting at desktops and scaling to large desktops</strong>.</p> + <div class="row"> + <div class="col-md-8">.col-md-8</div> + <div class="col-md-4">.col-md-4</div> + </div> + + <h3>Full width, single column</h3> + <p class="text-warning">No grid classes are necessary for full-width elements.</p> + + <hr> + + <h3>Two columns with two nested columns</h3> + <p>Per the documentation, nesting is easy—just put a row of columns within an existing row. This gives you two columns <strong>starting at desktops and scaling to large desktops</strong>, with another two (equal widths) within the larger column.</p> + <p>At mobile device sizes, tablets and down, these columns and their nested columns will stack.</p> + <div class="row"> + <div class="col-md-8"> + .col-md-8 + <div class="row"> + <div class="col-md-6">.col-md-6</div> + <div class="col-md-6">.col-md-6</div> + </div> + </div> + <div class="col-md-4">.col-md-4</div> + </div> + + <hr> + + <h3>Mixed: mobile and desktop</h3> + <p>The Bootstrap 3 grid system has four tiers of classes: xs (phones), sm (tablets), md (desktops), and lg (larger desktops). You can use nearly any combination of these classes to create more dynamic and flexible layouts.</p> + <p>Each tier of classes scales up, meaning if you plan on setting the same widths for xs and sm, you only need to specify xs.</p> + <div class="row"> + <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div> + <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> + </div> + <div class="row"> + <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> + <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> + <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> + </div> + <div class="row"> + <div class="col-xs-6 col-md-6">.col-xs-6 .col-md-6</div> + <div class="col-xs-6 col-md-6">.col-xs-6 .col-md-6</div> + </div> + + <hr> + + <h3>Mixed: mobile, tablet, and desktop</h3> + <p></p> + <div class="row"> + <div class="col-xs-12 col-sm-8 col-lg-8">.col-xs-12 .col-lg-8</div> + <div class="col-xs-6 col-sm-4 col-lg-4">.col-xs-6 .col-lg-4</div> + </div> + <div class="row"> + <div class="col-xs-6 col-sm-4 col-lg-4">.col-xs-6 .col-sm-4 .col-lg-4</div> + <div class="col-xs-6 col-sm-4 col-lg-4">.col-xs-6 .col-sm-4 .col-lg-4</div> + <div class="col-xs-6 col-sm-4 col-lg-4">.col-xs-6 .col-sm-4 .col-lg-4</div> + </div> + <div class="row"> + <div class="col-xs-6 col-sm-6 col-lg-6">.col-xs-6 .col-sm-6 .col-lg-6</div> + <div class="col-xs-6 col-sm-6 col-lg-6">.col-xs-6 .col-sm-6 .col-lg-6</div> + </div> + + </div> <!-- /container --> + + + <!-- Bootstrap core JavaScript + ================================================== --> + <!-- Placed at the end of the document so the pages load faster --> + <script src="../../assets/js/respond.min.js"></script> + </body> +</html> |
