1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

Initial commit

This commit is contained in:
Michael Crosby 2013-06-08 15:12:14 -09:00
commit bec8f53386
218 changed files with 55344 additions and 0 deletions

View file

@ -0,0 +1,28 @@
//
// 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;
}
}