2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Grid system
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
2012-01-30 00:39:44 -08:00
|
|
|
// Fixed (940px)
|
2012-02-21 23:16:06 -08:00
|
|
|
#grid > .core(@gridColumnWidth, @gridGutterWidth);
|
2012-01-29 13:06:57 -08:00
|
|
|
|
2012-01-30 00:39:44 -08:00
|
|
|
// Fluid (940px)
|
2012-07-29 16:51:24 -07: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;
|
|
|
|
}
|