mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 16:47:58 -05:00
22 lines
439 B
SCSS
22 lines
439 B
SCSS
|
//
|
||
|
// Grid system
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
// Fixed (940px)
|
||
|
@include grid-core($gridColumnWidth, $gridGutterWidth);
|
||
|
|
||
|
// Fluid (940px)
|
||
|
@include 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;
|
||
|
}
|