aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/equal-height-columns/equal-height-columns.css
diff options
context:
space:
mode:
authorJames Friend <[email protected]>2014-08-28 09:32:08 +0800
committerJames Friend <[email protected]>2014-08-28 09:32:08 +0800
commit9aeaf19b1dca68ee71e916ae415a0c270a47d301 (patch)
treebc8385acb8ec7a46bba03ff2ef7e4283cd9f1146 /docs/examples/equal-height-columns/equal-height-columns.css
parente7991a9a1e2f474c8f1d8a2e0ed113816f1c5e82 (diff)
parent35f09315ed543a0479719afa2143240952c215db (diff)
downloadbootstrap-9aeaf19b1dca68ee71e916ae415a0c270a47d301.tar.xz
bootstrap-9aeaf19b1dca68ee71e916ae415a0c270a47d301.zip
Merge remote-tracking branch 'upstream/master' into node-requirable
Conflicts: Gruntfile.js
Diffstat (limited to 'docs/examples/equal-height-columns/equal-height-columns.css')
-rw-r--r--docs/examples/equal-height-columns/equal-height-columns.css80
1 files changed, 0 insertions, 80 deletions
diff --git a/docs/examples/equal-height-columns/equal-height-columns.css b/docs/examples/equal-height-columns/equal-height-columns.css
deleted file mode 100644
index 050467719..000000000
--- a/docs/examples/equal-height-columns/equal-height-columns.css
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Row with equal height columns
- * --------------------------------------------------
- */
-.row-eq-height {
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
-}
-
-/*
- * Styles copied from the Grid example to make grid rows & columns visible.
- */
-.container {
- padding-right: 15px;
- padding-left: 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;
- background-color: rgba(86,61,124,.15);
- border: 1px solid #ddd;
- border: 1px solid rgba(86,61,124,.2);
-}
-
-/*
- * Callout styles copied from Bootstrap's main docs.
- */
-/* Common styles for all types */
-.bs-callout {
- padding: 20px;
- margin: 20px 0;
- border-left: 3px solid #eee;
-}
-.bs-callout h4 {
- margin-top: 0;
- margin-bottom: 5px;
-}
-.bs-callout p:last-child {
- margin-bottom: 0;
-}
-.bs-callout code {
- background-color: #fff;
- border-radius: 3px;
-}
-/* Variations */
-.bs-callout-danger {
- background-color: #fdf7f7;
- border-color: #d9534f;
-}
-.bs-callout-danger h4 {
- color: #d9534f;
-}
-.bs-callout-warning {
- background-color: #fcf8f2;
- border-color: #f0ad4e;
-}
-.bs-callout-warning h4 {
- color: #f0ad4e;
-}
-.bs-callout-info {
- background-color: #f4f8fa;
- border-color: #5bc0de;
-}
-.bs-callout-info h4 {
- color: #5bc0de;
-}