aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-25 10:07:57 -0800
committerMark Otto <[email protected]>2012-01-25 10:07:57 -0800
commite93c536df1d1bbe7ff9d746bd5c48966bc552680 (patch)
tree45747c112267cca676a0a682c4d5e673129c05c1 /examples
parent9553b1e3e9457a48b6da3724c906a36f935aa526 (diff)
parent2193866bf0a62a9f900d7231bd4e7fd13b69d6f3 (diff)
downloadbootstrap-e93c536df1d1bbe7ff9d746bd5c48966bc552680.tar.xz
bootstrap-e93c536df1d1bbe7ff9d746bd5c48966bc552680.zip
Merge pull request #1196 from OpenGrid/2.0-wip
Fixed span sum to 10 to display properly. Grid has 12 columns.
Diffstat (limited to 'examples')
-rw-r--r--examples/container-app.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/container-app.html b/examples/container-app.html
index 788efcbf3..79764356b 100644
--- a/examples/container-app.html
+++ b/examples/container-app.html
@@ -49,12 +49,12 @@
}
/* Styles you shouldn't keep as they are for displaying this base example only */
- .content .span10,
- .content .span4 {
+ .content .span7,
+ .content .span3 {
min-height: 500px;
}
/* Give a quick and non-cross-browser friendly divider */
- .content .span4 {
+ .content .span3 {
margin-left: 0;
padding-left: 19px;
border-left: 1px solid #eee;
@@ -100,10 +100,10 @@
<h1>Page name <small>Supporting text or tagline</small></h1>
</div>
<div class="row">
- <div class="span10">
+ <div class="span7">
<h2>Main content</h2>
</div>
- <div class="span4">
+ <div class="span3">
<h3>Secondary content</h3>
</div>
</div>