2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Grid system
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
2012-08-28 16:33:06 -04:00
|
|
|
// Set the container width, and override it for fixed navbars in media queries
|
2012-11-30 15:42:37 -05:00
|
|
|
.container {
|
2012-11-30 19:18:40 -05:00
|
|
|
.container-fixed();
|
2012-11-30 15:42:37 -05:00
|
|
|
max-width: 940px;
|
|
|
|
}
|
2012-01-29 16:06:57 -05:00
|
|
|
|
2012-08-28 16:33:06 -04:00
|
|
|
// Fixed (940px)
|
2012-11-30 18:43:07 -05:00
|
|
|
#grid > .core(@grid-column-width, @grid-gutter-width, @grid-row-width);
|
2012-07-29 19:51:24 -04:00
|
|
|
|
|
|
|
// Reset utility classes due to specificity
|
2012-09-26 01:20:24 -04:00
|
|
|
[class*="span"].hide {
|
2012-07-29 19:51:24 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2012-09-26 01:20:24 -04:00
|
|
|
[class*="span"].pull-right {
|
2012-07-29 19:51:24 -04:00
|
|
|
float: right;
|
|
|
|
}
|