2011-11-26 06:34:55 +01:00
|
|
|
//
|
|
|
|
// Scaffolding
|
|
|
|
// Basic and global styles for generating a grid system, structural layout, and page templates
|
|
|
|
// -------------------------------------------------------------------------------------------
|
2011-05-04 03:09:25 +02:00
|
|
|
|
2011-08-17 07:58:01 +02:00
|
|
|
|
|
|
|
// STRUCTURAL LAYOUT
|
|
|
|
// -----------------
|
2011-05-04 03:09:25 +02:00
|
|
|
|
|
|
|
body {
|
2011-08-22 02:06:37 +02:00
|
|
|
margin: 0;
|
2011-10-04 09:20:38 +02:00
|
|
|
font-family: @baseFontFamily;
|
|
|
|
font-size: @baseFontSize;
|
|
|
|
line-height: @baseLineHeight;
|
2012-01-05 19:01:42 +01:00
|
|
|
color: @gray;
|
2011-11-17 10:28:42 +01:00
|
|
|
background-color: @white;
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Container (centered, fixed-width layouts)
|
2011-08-26 07:44:23 +02:00
|
|
|
.container {
|
2012-01-26 00:03:44 +01:00
|
|
|
.container-fixed();
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
|
2011-10-10 06:13:26 +02:00
|
|
|
.fluid-container {
|
2011-09-11 00:29:38 +02:00
|
|
|
position: relative;
|
2012-01-22 22:32:16 +01:00
|
|
|
min-width: @siteWidth;
|
|
|
|
padding-left: @gridGutterWidth;
|
|
|
|
padding-right: @gridGutterWidth;
|
2011-05-04 03:09:25 +02:00
|
|
|
.clearfix();
|
2011-10-10 06:13:26 +02:00
|
|
|
}
|
2012-01-07 10:59:53 +01:00
|
|
|
|
2011-10-10 06:13:26 +02:00
|
|
|
// Sidebars (left and right options)
|
2012-01-07 10:59:53 +01:00
|
|
|
.fluid-sidebar {
|
2012-01-07 12:53:20 +01:00
|
|
|
width: @fluidSidebarWidth;
|
2012-01-07 10:59:53 +01:00
|
|
|
margin: 0 20px 18px;
|
2011-10-10 06:13:26 +02:00
|
|
|
}
|
2012-01-22 22:32:16 +01:00
|
|
|
.sidebar-left { padding-left: @fluidSidebarWidth + @gridGutterWidth * 2; }
|
|
|
|
.sidebar-right { padding-right: @fluidSidebarWidth + @gridGutterWidth * 2; }
|
2012-01-07 10:59:53 +01:00
|
|
|
|
|
|
|
// Float the sidebars accordingly
|
2012-01-08 22:21:44 +01:00
|
|
|
.sidebar-left .fluid-sidebar {
|
|
|
|
float: left;
|
2012-01-22 22:32:16 +01:00
|
|
|
margin-left: (@fluidSidebarWidth + @gridGutterWidth) * -1;
|
2012-01-08 22:21:44 +01:00
|
|
|
}
|
|
|
|
.sidebar-right .fluid-sidebar {
|
|
|
|
float: right;
|
2012-01-22 22:32:16 +01:00
|
|
|
margin-right: (@fluidSidebarWidth + @gridGutterWidth) * -1;
|
2012-01-08 22:21:44 +01:00
|
|
|
}
|
2012-01-07 10:59:53 +01:00
|
|
|
|
2011-10-10 06:13:26 +02:00
|
|
|
// The main content area
|
|
|
|
.fluid-content {
|
2012-01-07 10:59:53 +01:00
|
|
|
float: left;
|
|
|
|
width: 100%;
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
|
|
|
|
2011-09-03 08:01:38 +02:00
|
|
|
|
2011-08-17 07:58:01 +02:00
|
|
|
// BASE STYLES
|
|
|
|
// -----------
|
2011-05-04 03:09:25 +02:00
|
|
|
|
|
|
|
// Links
|
|
|
|
a {
|
2011-06-28 01:47:12 +02:00
|
|
|
color: @linkColor;
|
2011-05-04 03:09:25 +02:00
|
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
2011-06-28 01:47:12 +02:00
|
|
|
color: @linkColorHover;
|
2011-05-04 03:09:25 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2011-09-03 08:01:38 +02:00
|
|
|
|
2011-09-11 06:05:23 +02:00
|
|
|
|
|
|
|
// GRID SYSTEM
|
|
|
|
// -----------
|
2011-09-13 05:07:26 +02:00
|
|
|
// To customize the grid system, bring up the variables.less file and change the column count, size, and gutter there
|
2011-09-11 06:05:23 +02:00
|
|
|
.row {
|
2012-01-23 20:35:39 +01:00
|
|
|
margin-left: @gridGutterWidth * -1;
|
2011-09-11 06:05:23 +02:00
|
|
|
.clearfix();
|
2011-09-12 03:44:25 +02:00
|
|
|
}
|
2011-09-11 06:05:23 +02:00
|
|
|
|
2012-01-23 05:12:26 +01:00
|
|
|
// Find all .span# classes within .row and give them the necessary properties for grid columns
|
|
|
|
// (supported by all browsers back to IE7)
|
2011-09-12 03:44:25 +02:00
|
|
|
// Credit to @dhg for the idea
|
|
|
|
[class*="span"] {
|
|
|
|
.gridColumn();
|
|
|
|
}
|
2011-09-11 06:05:23 +02:00
|
|
|
|
2011-09-12 03:44:25 +02:00
|
|
|
// Default columns
|
|
|
|
.span1 { .columns(1); }
|
|
|
|
.span2 { .columns(2); }
|
|
|
|
.span3 { .columns(3); }
|
|
|
|
.span4 { .columns(4); }
|
|
|
|
.span5 { .columns(5); }
|
|
|
|
.span6 { .columns(6); }
|
|
|
|
.span7 { .columns(7); }
|
|
|
|
.span8 { .columns(8); }
|
|
|
|
.span9 { .columns(9); }
|
|
|
|
.span10 { .columns(10); }
|
|
|
|
.span11 { .columns(11); }
|
|
|
|
.span12 { .columns(12); }
|
|
|
|
|
|
|
|
// Offset column options
|
|
|
|
.offset1 { .offset(1); }
|
|
|
|
.offset2 { .offset(2); }
|
|
|
|
.offset3 { .offset(3); }
|
|
|
|
.offset4 { .offset(4); }
|
|
|
|
.offset5 { .offset(5); }
|
|
|
|
.offset6 { .offset(6); }
|
|
|
|
.offset7 { .offset(7); }
|
|
|
|
.offset8 { .offset(8); }
|
|
|
|
.offset9 { .offset(9); }
|
|
|
|
.offset10 { .offset(10); }
|
|
|
|
.offset11 { .offset(11); }
|