aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/grid
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/grid')
-rw-r--r--docs/examples/grid/grid.css27
-rw-r--r--docs/examples/grid/index.html173
2 files changed, 0 insertions, 200 deletions
diff --git a/docs/examples/grid/grid.css b/docs/examples/grid/grid.css
deleted file mode 100644
index 5f7e1af66..000000000
--- a/docs/examples/grid/grid.css
+++ /dev/null
@@ -1,27 +0,0 @@
-body {
- padding-top: 2rem;
- padding-bottom: 2rem;
-}
-
-h3 {
- margin-top: 2rem;
-}
-
-.row {
- margin-bottom: 1rem;
-}
-.row .row {
- margin-top: 1rem;
- margin-bottom: 0;
-}
-[class*="col-"] {
- padding-top: 1rem;
- padding-bottom: 1rem;
- background-color: rgba(86,61,124,.15);
- border: 1px solid rgba(86,61,124,.2);
-}
-
-hr {
- margin-top: 2rem;
- margin-bottom: 2rem;
-}
diff --git a/docs/examples/grid/index.html b/docs/examples/grid/index.html
deleted file mode 100644
index 783eee35d..000000000
--- a/docs/examples/grid/index.html
+++ /dev/null
@@ -1,173 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="">
- <meta name="author" content="">
- <link rel="icon" href="../../favicon.ico">
-
- <title>Grid Template for Bootstrap</title>
-
- <!-- Bootstrap core CSS -->
- <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
-
- <!-- Custom styles for this template -->
- <link href="grid.css" rel="stylesheet">
- </head>
-
- <body>
- <div class="container">
-
- <h1>Bootstrap grid examples</h1>
- <p class="lead">Basic grid layouts to get you familiar with building within the Bootstrap grid system.</p>
-
- <h3>Five grid tiers</h3>
- <p>There are five tiers to the Bootstrap grid system, one for each range of devices we support. Each tier starts at a minimum viewport size and automatically applies to the larger devices unless overridden.</p>
-
- <div class="row">
- <div class="col-4">.col-4</div>
- <div class="col-4">.col-4</div>
- <div class="col-4">.col-4</div>
- </div>
-
- <div class="row">
- <div class="col-sm-4">.col-sm-4</div>
- <div class="col-sm-4">.col-sm-4</div>
- <div class="col-sm-4">.col-sm-4</div>
- </div>
-
- <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>
-
- <div class="row">
- <div class="col-lg-4">.col-lg-4</div>
- <div class="col-lg-4">.col-lg-4</div>
- <div class="col-lg-4">.col-lg-4</div>
- </div>
-
- <div class="row">
- <div class="col-xl-4">.col-xl-4</div>
- <div class="col-xl-4">.col-xl-4</div>
- <div class="col-xl-4">.col-xl-4</div>
- </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 column. 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 v4 grid system has five tiers of classes: xs (extra small), sm (small), md (medium), lg (large), and xl (extra large). 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-12 col-md-8">.col-12 .col-md-8</div>
- <div class="col-6 col-md-4">.col-6 .col-md-4</div>
- </div>
- <div class="row">
- <div class="col-6 col-md-4">.col-6 .col-md-4</div>
- <div class="col-6 col-md-4">.col-6 .col-md-4</div>
- <div class="col-6 col-md-4">.col-6 .col-md-4</div>
- </div>
- <div class="row">
- <div class="col-6">.col-6</div>
- <div class="col-6">.col-6</div>
- </div>
-
- <hr>
-
- <h3>Mixed: mobile, tablet, and desktop</h3>
- <p></p>
- <div class="row">
- <div class="col-12 col-sm-6 col-lg-8">.col-12 .col-sm-6 .col-lg-8</div>
- <div class="col-6 col-lg-4">.col-6 .col-lg-4</div>
- </div>
- <div class="row">
- <div class="col-6 col-sm-4">.col-6 .col-sm-4</div>
- <div class="col-6 col-sm-4">.col-6 .col-sm-4</div>
- <div class="col-6 col-sm-4">.col-6 .col-sm-4</div>
- </div>
-
- <hr>
-
- <h3>Column clearing</h3>
- <p><a href="../../layout/grid/#example-responsive-column-resets">Clear floats</a> at specific breakpoints to prevent awkward wrapping with uneven content.</p>
- <div class="row">
- <div class="col-6 col-sm-3">
- .col-6 .col-sm-3
- <br>
- Resize your viewport or check it out on your phone for an example.
- </div>
- <div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
-
- <!-- Add the extra clearfix for only the required viewport -->
- <div class="clearfix d-sm-none"></div>
-
- <div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
- <div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
- </div>
-
- <hr>
-
- <h3>Offset, push, and pull resets</h3>
- <p>Reset offsets, pushes, and pulls at specific breakpoints.</p>
- <div class="row">
- <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
- <div class="col-sm-5 offset-sm-2 col-md-6 offset-md-0">.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0</div>
- </div>
- <div class="row">
- <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
- <div class="col-sm-6 col-md-5 offset-md-2 col-lg-6 offset-lg-0">.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 .offset-lg-0</div>
- </div>
-
- </div> <!-- /container -->
-
- <!-- Bootstrap core JavaScript
- ================================================== -->
- <!-- Placed at the end of the document so the pages load faster -->
- <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
- <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
- </body>
-</html>