Commit c15aa367 authored by Mark Otto's avatar Mark Otto

switch to max-width on containers

parent 125c3859
......@@ -654,17 +654,17 @@ pre code {
}
@media (min-width: 48em) {
.container {
width: 45rem;
max-width: 45rem;
}
}
@media (min-width: 62em) {
.container {
width: 60rem;
max-width: 60rem;
}
}
@media (min-width: 75em) {
.container {
width: 72.25rem;
max-width: 72.25rem;
}
}
.container-fluid {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -654,17 +654,17 @@ pre code {
}
@media (min-width: 48em) {
.container {
width: 45rem;
max-width: 45rem;
}
}
@media (min-width: 62em) {
.container {
width: 60rem;
max-width: 60rem;
}
}
@media (min-width: 75em) {
.container {
width: 72.25rem;
max-width: 72.25rem;
}
}
.container-fluid {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
h4 {
margin-top: 25px;
body {
padding-top: 2rem;
padding-bottom: 2rem;
}
h3 {
margin-top: 2rem;
}
.row {
margin-bottom: 20px;
margin-bottom: 1rem;
}
.row .row {
margin-top: 10px;
margin-top: 1rem;
margin-bottom: 0;
}
[class*="col-"] {
padding-top: 15px;
padding-bottom: 15px;
background-color: #eee;
padding-top: 1rem;
padding-bottom: 1rem;
background-color: rgba(86,61,124,.15);
border: 1px solid #ddd;
border: 1px solid rgba(86,61,124,.2);
}
hr {
margin-top: 40px;
margin-bottom: 40px;
margin-top: 2rem;
margin-bottom: 2rem;
}
......@@ -11,13 +11,13 @@
.make-container();
@media (min-width: @screen-sm-min) {
width: @container-sm;
max-width: @container-sm;
}
@media (min-width: @screen-md-min) {
width: @container-md;
max-width: @container-md;
}
@media (min-width: @screen-lg-min) {
width: @container-lg;
max-width: @container-lg;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment