diff --git a/sass/_grid.scss b/sass/_grid.scss index 7e90e23..037c871 100644 --- a/sass/_grid.scss +++ b/sass/_grid.scss @@ -1,7 +1,7 @@ @if $import-grid == true{ //------------------------------------------------------------------- // Grid system responsive code is in _general.scss -// A hack for the grid system is located in _iehacks.scss +// A hack (for old IEs) for the grid system is located in _iehacks.scss //------------------------------------------------------------------- .row { @@ -15,47 +15,43 @@ column { margin: auto 1%; } +.c12 { + width: 98%; +} +.c11 { + width: 89.66%; +} .c10 { - width: 98%; + width: 81.33%; } - .c9 { - width: 88%; + width: 73%; } - .c8 { - width: 78%; + width: 64.66%; } - .c7 { - width: 68%; + width: 56.33%; } - .c6 { - width: 58%; + width: 48%; } - .c5 { - width: 48% + width: 39.66% } - .c4 { - width: 38%; + width: 31.33%; } - .c3 { - width: 28%; + width: 23%; } - .c2 { - width: 18%; + width: 14.66%; } - .c1 { - width: 8%; + width: 6.33%; } - //------------------------------------------------------------------- // End @if }