mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
28 lines
580 B
SCSS
28 lines
580 B
SCSS
//
|
|
// Responsive: Large desktop and up
|
|
// --------------------------------------------------
|
|
|
|
|
|
@media (min-width: 1200px) {
|
|
|
|
// Fixed grid
|
|
@include grid-core($gridColumnWidth1200, $gridGutterWidth1200);
|
|
|
|
// Fluid grid
|
|
@include grid-fluid($fluidGridColumnWidth1200, $fluidGridGutterWidth1200);
|
|
|
|
// Input grid
|
|
@include grid-input($gridColumnWidth1200, $gridGutterWidth1200);
|
|
|
|
// Thumbnails
|
|
.thumbnails {
|
|
margin-left: -$gridGutterWidth1200;
|
|
}
|
|
.thumbnails > li {
|
|
margin-left: $gridGutterWidth1200;
|
|
}
|
|
.row-fluid .thumbnails {
|
|
margin-left: 0;
|
|
}
|
|
|
|
}
|