From 8f7bd419935adfcd53c471a0202083464800619e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 9 Apr 2018 09:00:23 -0700 Subject: Ship v4.1.0 (#26218) * update docs path from docs/4.0/ to docs/4.1/ * bump version to 4.1.0 * Update redirects to work for 4.1 docs move * Update docs version switcher to include latest and link to 4.0 docs * re-run dist * Update package-lock.json * Update docs-navbar.html --- docs/4.0/examples/grid/grid.css | 27 -------- docs/4.0/examples/grid/index.html | 135 -------------------------------------- 2 files changed, 162 deletions(-) delete mode 100644 docs/4.0/examples/grid/grid.css delete mode 100644 docs/4.0/examples/grid/index.html (limited to 'docs/4.0/examples/grid') diff --git a/docs/4.0/examples/grid/grid.css b/docs/4.0/examples/grid/grid.css deleted file mode 100644 index 78f5dfda6..000000000 --- a/docs/4.0/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/4.0/examples/grid/index.html b/docs/4.0/examples/grid/index.html deleted file mode 100644 index 0be50f816..000000000 --- a/docs/4.0/examples/grid/index.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - Grid Template for Bootstrap - - - - - - - - - -
- -

Bootstrap grid examples

-

Basic grid layouts to get you familiar with building within the Bootstrap grid system.

- -

Five grid tiers

-

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.

- -
-
.col-4
-
.col-4
-
.col-4
-
- -
-
.col-sm-4
-
.col-sm-4
-
.col-sm-4
-
- -
-
.col-md-4
-
.col-md-4
-
.col-md-4
-
- -
-
.col-lg-4
-
.col-lg-4
-
.col-lg-4
-
- -
-
.col-xl-4
-
.col-xl-4
-
.col-xl-4
-
- -

Three equal columns

-

Get three equal-width columns starting at desktops and scaling to large desktops. On mobile devices, tablets and below, the columns will automatically stack.

-
-
.col-md-4
-
.col-md-4
-
.col-md-4
-
- -

Three unequal columns

-

Get three columns starting at desktops and scaling to large desktops 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.

-
-
.col-md-3
-
.col-md-6
-
.col-md-3
-
- -

Two columns

-

Get two columns starting at desktops and scaling to large desktops.

-
-
.col-md-8
-
.col-md-4
-
- -

Full width, single column

-

No grid classes are necessary for full-width elements.

- -
- -

Two columns with two nested columns

-

Per the documentation, nesting is easy—just put a row of columns within an existing column. This gives you two columns starting at desktops and scaling to large desktops, with another two (equal widths) within the larger column.

-

At mobile device sizes, tablets and down, these columns and their nested columns will stack.

-
-
- .col-md-8 -
-
.col-md-6
-
.col-md-6
-
-
-
.col-md-4
-
- -
- -

Mixed: mobile and desktop

-

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.

-

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.

-
-
.col-12 .col-md-8
-
.col-6 .col-md-4
-
-
-
.col-6 .col-md-4
-
.col-6 .col-md-4
-
.col-6 .col-md-4
-
-
-
.col-6
-
.col-6
-
- -
- -

Mixed: mobile, tablet, and desktop

-

-
-
.col-12 .col-sm-6 .col-lg-8
-
.col-6 .col-lg-4
-
-
-
.col-6 .col-sm-4
-
.col-6 .col-sm-4
-
.col-6 .col-sm-4
-
- -
- - -- cgit v1.2.3