2012-09-01 17:42:07 +01:00
|
|
|
//
|
|
|
|
// Responsive: Tablet to desktop
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-06-04 11:44:14 +01:00
|
|
|
|
|
|
|
@media (min-width: 768px) and (max-width: 979px) {
|
|
|
|
|
|
|
|
// Fixed grid
|
2012-09-01 17:42:07 +01:00
|
|
|
@include grid-core($gridColumnWidth768, $gridGutterWidth768);
|
2012-06-04 11:44:14 +01:00
|
|
|
|
|
|
|
// Fluid grid
|
2012-09-01 17:42:07 +01:00
|
|
|
@include grid-fluid($fluidGridColumnWidth768, $fluidGridGutterWidth768);
|
2012-06-04 11:44:14 +01:00
|
|
|
|
|
|
|
// Input grid
|
2012-09-01 17:42:07 +01:00
|
|
|
@include grid-input($gridColumnWidth768, $gridGutterWidth768);
|
2012-06-04 11:44:14 +01:00
|
|
|
|
|
|
|
// No need to reset .thumbnails here since it's the same $gridGutterWidth
|
2012-09-01 17:42:07 +01:00
|
|
|
|
2012-11-01 08:48:46 -04:00
|
|
|
}
|