2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Grid system
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
2012-08-28 13:33:06 -07:00
|
|
|
// Set the container width, and override it for fixed navbars in media queries
|
2012-11-30 12:42:37 -08:00
|
|
|
.container {
|
2012-11-30 16:18:40 -08:00
|
|
|
.container-fixed();
|
2012-11-30 12:42:37 -08:00
|
|
|
max-width: 940px;
|
|
|
|
}
|
2012-01-29 13:06:57 -08:00
|
|
|
|
2013-01-15 17:55:14 -08:00
|
|
|
// Mobile-first defaults
|
|
|
|
.row {
|
|
|
|
margin-left: -10px;
|
|
|
|
margin-right: -10px;
|
|
|
|
.clear_float();
|
|
|
|
}
|
|
|
|
[class^="span"] {
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
// Proper box-model (padding doesn't add to width)
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2012-08-28 13:33:06 -07:00
|
|
|
// Fixed (940px)
|
2013-01-15 17:55:14 -08:00
|
|
|
// #grid > .core(@grid-column-width, @grid-gutter-width, @grid-row-width);
|
2012-07-29 16:51:24 -07:00
|
|
|
|
|
|
|
// Reset utility classes due to specificity
|
2012-09-25 22:20:24 -07:00
|
|
|
[class*="span"].pull-right {
|
2012-07-29 16:51:24 -07:00
|
|
|
float: right;
|
|
|
|
}
|