2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Grid system
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
2012-01-30 03:39:44 -05:00
|
|
|
// Fixed (940px)
|
2012-02-22 02:16:06 -05:00
|
|
|
#grid > .core(@gridColumnWidth, @gridGutterWidth);
|
2012-01-29 16:06:57 -05:00
|
|
|
|
2012-01-30 03:39:44 -05:00
|
|
|
// Fluid (940px)
|
2012-07-29 19:51:24 -04:00
|
|
|
#grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth);
|
|
|
|
|
|
|
|
// Reset utility classes due to specificity
|
|
|
|
[class*="span"].hide,
|
|
|
|
.row-fluid [class*="span"].hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
[class*="span"].pull-right,
|
|
|
|
.row-fluid [class*="span"].pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|