diff options
| author | Mark Otto <[email protected]> | 2012-01-25 10:48:08 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-25 10:48:08 -0800 |
| commit | 4a3ad1aa891f65547bd2e3e6de8862e3b26f47c9 (patch) | |
| tree | 09b91452168924f36079337e077f34e63d4e5465 /bootstrap-responsive.css | |
| parent | 324ebb59900fd69411aec323a85953aec8c55bb6 (diff) | |
| download | bootstrap-4a3ad1aa891f65547bd2e3e6de8862e3b26f47c9.tar.xz bootstrap-4a3ad1aa891f65547bd2e3e6de8862e3b26f47c9.zip | |
update responsive to use latest grid mixins
Diffstat (limited to 'bootstrap-responsive.css')
| -rw-r--r-- | bootstrap-responsive.css | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/bootstrap-responsive.css b/bootstrap-responsive.css index 4a924da68..9f50081d3 100644 --- a/bootstrap-responsive.css +++ b/bootstrap-responsive.css @@ -150,40 +150,40 @@ width: 748px; } .offset1 { - margin-left: 64px; + margin-left: 84px; } .offset2 { - margin-left: 128px; + margin-left: 148px; } .offset3 { - margin-left: 192px; + margin-left: 212px; } .offset4 { - margin-left: 256px; + margin-left: 276px; } .offset5 { - margin-left: 320px; + margin-left: 340px; } .offset6 { - margin-left: 384px; + margin-left: 404px; } .offset7 { - margin-left: 448px; + margin-left: 468px; } .offset8 { - margin-left: 512px; + margin-left: 532px; } .offset9 { - margin-left: 576px; + margin-left: 596px; } .offset10 { - margin-left: 640px; + margin-left: 660px; } .offset11 { - margin-left: 704px; + margin-left: 724px; } .offset12 { - margin-left: 768px; + margin-left: 788px; } } /* @@ -196,11 +196,11 @@ @siteWidth: 1170px; // Bring grid mixins to recalculate widths - .columns(@columnSpan: 1) { - width: (@gridColumnWidth * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)); + .columns(@columns: 1) { + width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1)); } - .offset(@columnOffset: 1) { - margin-left: (@gridColumnWidth * @columnOffset) + (@gridGutterWidth * (@columnOffset - 1)) + @gridGutterWidth; + .offset(@columns: 1) { + margin-left: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1)) + (@gridGutterWidth * 2); } .container { |
