diff options
| author | Mark Otto <[email protected]> | 2013-01-16 14:48:25 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-16 14:48:25 -0800 |
| commit | cf693b56321c457ce35e1ebb72a2a5f3606fc563 (patch) | |
| tree | 5189c3683751ce11321ec0ba6df4471617f9370d /less/bootstrap.less | |
| parent | 13a80f33c80bf8823b1d3addcfdb990ff42409ec (diff) | |
| download | bootstrap-cf693b56321c457ce35e1ebb72a2a5f3606fc563.tar.xz bootstrap-cf693b56321c457ce35e1ebb72a2a5f3606fc563.zip | |
Add in responsive for 1200px+ layout; increase padding for that viewport size
Diffstat (limited to 'less/bootstrap.less')
| -rw-r--r-- | less/bootstrap.less | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/less/bootstrap.less b/less/bootstrap.less index 896a91641..a0a2e868a 100644 --- a/less/bootstrap.less +++ b/less/bootstrap.less @@ -88,8 +88,6 @@ */ .container { max-width: 940px; - margin-left: auto; - margin-right: auto; } .navbar { @@ -126,6 +124,19 @@ } +// Responsive: Large desktops and up +@media screen and (min-width: 1200px) { + + .container { + max-width: 1170px; + } + [class^="span"] { + padding-left: 15px; + padding-right: 15px; + } + +} + /* // Responsive // ------------------------------------------------------------- |
