2011-11-26 00:34:55 -05:00
|
|
|
//
|
|
|
|
// Scaffolding
|
|
|
|
// Basic and global styles for generating a grid system, structural layout, and page templates
|
|
|
|
// -------------------------------------------------------------------------------------------
|
2011-05-03 21:09:25 -04:00
|
|
|
|
2011-08-17 01:58:01 -04:00
|
|
|
|
|
|
|
// STRUCTURAL LAYOUT
|
|
|
|
// -----------------
|
2011-05-03 21:09:25 -04:00
|
|
|
|
|
|
|
body {
|
2011-08-21 20:06:37 -04:00
|
|
|
margin: 0;
|
2011-10-04 03:20:38 -04:00
|
|
|
font-family: @baseFontFamily;
|
|
|
|
font-size: @baseFontSize;
|
|
|
|
line-height: @baseLineHeight;
|
2012-01-05 13:01:42 -05:00
|
|
|
color: @gray;
|
2011-11-17 04:28:42 -05:00
|
|
|
background-color: @white;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Container (centered, fixed-width layouts)
|
2011-08-26 01:44:23 -04:00
|
|
|
.container {
|
2011-09-03 01:08:38 -04:00
|
|
|
.fixed-container();
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
|
2011-10-10 00:13:26 -04:00
|
|
|
.fluid-container {
|
2011-09-10 18:29:38 -04:00
|
|
|
position: relative;
|
2011-09-16 17:07:18 -04:00
|
|
|
min-width: 940px;
|
2011-09-03 00:00:01 -04:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
2011-05-03 21:09:25 -04:00
|
|
|
.clearfix();
|
2011-10-10 00:13:26 -04:00
|
|
|
}
|
2012-01-07 04:59:53 -05:00
|
|
|
|
2011-10-10 00:13:26 -04:00
|
|
|
// Sidebars (left and right options)
|
2012-01-07 04:59:53 -05:00
|
|
|
.fluid-sidebar {
|
2012-01-07 06:53:20 -05:00
|
|
|
width: @fluidSidebarWidth;
|
2012-01-07 04:59:53 -05:00
|
|
|
margin: 0 20px 18px;
|
2011-10-10 00:13:26 -04:00
|
|
|
}
|
2012-01-07 06:53:20 -05:00
|
|
|
.sidebar-left { padding-left: @fluidSidebarWidth + 40; }
|
|
|
|
.sidebar-right { padding-right: @fluidSidebarWidth + 40; }
|
2012-01-07 04:59:53 -05:00
|
|
|
|
|
|
|
// Float the sidebars accordingly
|
2012-01-08 16:21:44 -05:00
|
|
|
.sidebar-left .fluid-sidebar {
|
|
|
|
float: left;
|
|
|
|
margin-left: (@fluidSidebarWidth + 20) * -1;
|
|
|
|
}
|
|
|
|
.sidebar-right .fluid-sidebar {
|
|
|
|
float: right;
|
|
|
|
margin-right: (@fluidSidebarWidth + 20) * -1;
|
|
|
|
}
|
2012-01-07 04:59:53 -05:00
|
|
|
|
2011-10-10 00:13:26 -04:00
|
|
|
// The main content area
|
|
|
|
.fluid-content {
|
2012-01-07 04:59:53 -05:00
|
|
|
float: left;
|
|
|
|
width: 100%;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
2011-09-03 02:01:38 -04:00
|
|
|
|
2011-08-17 01:58:01 -04:00
|
|
|
// BASE STYLES
|
|
|
|
// -----------
|
2011-05-03 21:09:25 -04:00
|
|
|
|
|
|
|
// Links
|
|
|
|
a {
|
2011-11-17 04:28:42 -05:00
|
|
|
font-weight: inherit;
|
|
|
|
line-height: inherit;
|
2011-06-27 19:47:12 -04:00
|
|
|
color: @linkColor;
|
2011-05-03 21:09:25 -04:00
|
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
2011-06-27 19:47:12 -04:00
|
|
|
color: @linkColorHover;
|
2011-05-03 21:09:25 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2011-09-03 02:01:38 -04:00
|
|
|
|
2011-09-11 00:05:23 -04:00
|
|
|
|
|
|
|
// GRID SYSTEM
|
|
|
|
// -----------
|
2011-09-12 23:07:26 -04:00
|
|
|
// To customize the grid system, bring up the variables.less file and change the column count, size, and gutter there
|
2011-09-11 00:05:23 -04:00
|
|
|
.row {
|
2011-10-17 02:04:31 -04:00
|
|
|
margin-left: -@gridGutterWidth;
|
2011-09-11 00:05:23 -04:00
|
|
|
.clearfix();
|
2011-09-11 21:44:25 -04:00
|
|
|
}
|
2011-09-11 00:05:23 -04:00
|
|
|
|
2011-09-11 21:44:25 -04:00
|
|
|
// Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7)
|
|
|
|
// Credit to @dhg for the idea
|
|
|
|
[class*="span"] {
|
|
|
|
.gridColumn();
|
|
|
|
}
|
2011-09-11 00:05:23 -04:00
|
|
|
|
2011-09-11 21:44:25 -04: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); }
|