aboutsummaryrefslogtreecommitdiff
path: root/lib/layouts.less
diff options
context:
space:
mode:
Diffstat (limited to 'lib/layouts.less')
-rw-r--r--lib/layouts.less43
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/layouts.less b/lib/layouts.less
deleted file mode 100644
index 14435c9d1..000000000
--- a/lib/layouts.less
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// Layouts
-// Fixed-width and fluid (with sidebar) layouts
-// --------------------------------------------
-
-
-// Container (centered, fixed-width layouts)
-.container {
- .container-fixed();
-}
-
-// Fluid layouts (left aligned, with sidebar, min- & max-width content)
-.fluid-container {
- position: relative;
- min-width: @siteWidth;
- padding-left: @gridGutterWidth;
- padding-right: @gridGutterWidth;
- .clearfix();
-}
-
-// Sidebars (left and right options)
-.fluid-sidebar {
- width: @fluidSidebarWidth;
- margin: 0 20px 18px;
-}
-.sidebar-left { padding-left: @fluidSidebarWidth + @gridGutterWidth * 2; }
-.sidebar-right { padding-right: @fluidSidebarWidth + @gridGutterWidth * 2; }
-
-// Float the sidebars accordingly
-.sidebar-left .fluid-sidebar {
- float: left;
- margin-left: (@fluidSidebarWidth + @gridGutterWidth) * -1;
-}
-.sidebar-right .fluid-sidebar {
- float: right;
- margin-right: (@fluidSidebarWidth + @gridGutterWidth) * -1;
-}
-
-// The main content area
-.fluid-content {
- float: left;
- width: 100%;
-}