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
|
|
|
}
|
2012-01-29 16:06:57 -05:00
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
// Mobile-first defaults
|
|
|
|
.row {
|
2013-01-17 13:49:10 -05:00
|
|
|
margin-left: @grid-gutter-width / -2;
|
|
|
|
margin-right: @grid-gutter-width / -2;
|
2013-01-15 20:55:14 -05:00
|
|
|
.clear_float();
|
|
|
|
}
|
|
|
|
[class^="span"] {
|
2013-01-16 16:11:45 -05:00
|
|
|
min-height: 1px;
|
2013-01-17 13:49:10 -05:00
|
|
|
padding-left: @grid-gutter-width / 2;
|
|
|
|
padding-right: @grid-gutter-width / 2;
|
2013-01-15 20:55:14 -05:00
|
|
|
// Proper box-model (padding doesn't add to width)
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2013-01-17 03:42:31 -05:00
|
|
|
// Responsive: Tablets and up
|
|
|
|
@media screen and (min-width: 768px) {
|
2013-01-17 03:58:34 -05:00
|
|
|
.container {
|
|
|
|
max-width: 728px;
|
|
|
|
}
|
2013-01-17 13:49:10 -05:00
|
|
|
// Generate the grid columns and offsets
|
2013-01-17 03:42:31 -05:00
|
|
|
[class^="span"] {
|
|
|
|
float: left;
|
|
|
|
}
|
2013-01-17 13:49:10 -05:00
|
|
|
#grid > .core(@grid-column-width, @grid-gutter-width);
|
2013-01-17 03:42:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Responsive: Desktops and up
|
|
|
|
@media screen and (min-width: 992px) {
|
|
|
|
.container {
|
|
|
|
max-width: 940px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Responsive: Large desktops and up
|
|
|
|
@media screen and (min-width: 1200px) {
|
|
|
|
.container {
|
|
|
|
max-width: 1170px;
|
|
|
|
}
|
|
|
|
[class^="span"] {
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 19:51:24 -04:00
|
|
|
// Reset utility classes due to specificity
|
2012-09-26 01:20:24 -04:00
|
|
|
[class*="span"].pull-right {
|
2012-07-29 19:51:24 -04:00
|
|
|
float: right;
|
|
|
|
}
|