Added support for semifluid layouts

This commit is contained in:
Arnold Daniels
2012-07-17 12:44:55 +02:00
parent e51b5aea19
commit 83bccad651
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
//
// Layouts
// Fixed-width and fluid (with sidebar) layouts
// --------------------------------------------
// Fluid container for small screens, fixed for big screens
.container-semifluid {
.container-fixed();
padding-left: @gridGutterWidth;
padding-right: @gridGutterWidth;
max-width: @gridRowWidth;
}

View File

@@ -0,0 +1,7 @@
// RESPONSIVE CLASSES
// ------------------
// Semi-fluid container can grow up to size for big desktops
.container-semifluid {
max-width: 1170px;
}