You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
429 B
22 lines
429 B
//
|
|
// Grid system
|
|
// --------------------------------------------------
|
|
|
|
|
|
// Fixed (940px)
|
|
#grid > .core(@gridColumnWidth, @gridGutterWidth);
|
|
|
|
// Fluid (940px)
|
|
#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;
|
|
}
|