2011-06-30 00:15:37 -07:00
|
|
|
/*
|
|
|
|
* Scaffolding
|
2011-06-28 14:24:02 -07:00
|
|
|
* Basic and global styles for generating a grid system, structural layout, and page templates
|
2011-08-16 22:58:01 -07:00
|
|
|
* ------------------------------------------------------------------------------------------- */
|
2011-05-03 18:09:25 -07:00
|
|
|
|
2011-08-16 22:58:01 -07:00
|
|
|
|
|
|
|
// STRUCTURAL LAYOUT
|
|
|
|
// -----------------
|
2011-05-03 18:09:25 -07:00
|
|
|
|
|
|
|
body {
|
2011-10-28 18:38:06 -07:00
|
|
|
background-color: @white;
|
2011-08-21 17:06:37 -07:00
|
|
|
margin: 0;
|
2011-10-04 00:20:38 -07:00
|
|
|
font-family: @baseFontFamily;
|
|
|
|
font-size: @baseFontSize;
|
|
|
|
line-height: @baseLineHeight;
|
2011-09-10 21:05:23 -07:00
|
|
|
color: @grayDark;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Container (centered, fixed-width layouts)
|
2011-08-25 22:44:23 -07:00
|
|
|
.container {
|
2011-09-02 22:08:38 -07:00
|
|
|
.fixed-container();
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
|
2011-10-09 21:13:26 -07:00
|
|
|
.fluid-container {
|
2011-09-10 15:29:38 -07:00
|
|
|
position: relative;
|
2011-09-16 14:07:18 -07:00
|
|
|
min-width: 940px;
|
2011-09-02 21:00:01 -07:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
2011-05-03 18:09:25 -07:00
|
|
|
.clearfix();
|
2011-10-09 21:13:26 -07:00
|
|
|
}
|
|
|
|
// Sidebars (left and right options)
|
|
|
|
.fluid-sidebar-left,
|
|
|
|
.fluid-sidebar-right {
|
|
|
|
width: 220px;
|
|
|
|
}
|
|
|
|
.fluid-sidebar-left { float: left; }
|
|
|
|
.fluid-sidebar-right { float: right; }
|
|
|
|
// The main content area
|
|
|
|
.fluid-content {
|
|
|
|
margin-left: 240px;
|
|
|
|
}
|
|
|
|
// Reverse layout for sidebar on right
|
|
|
|
.fluid-container.reverse .fluid-content {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 240px;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
|
2011-09-02 23:01:38 -07:00
|
|
|
|
2011-08-16 22:58:01 -07:00
|
|
|
// BASE STYLES
|
|
|
|
// -----------
|
2011-05-03 18:09:25 -07:00
|
|
|
|
|
|
|
// Links
|
|
|
|
a {
|
2011-06-27 16:47:12 -07:00
|
|
|
color: @linkColor;
|
2011-05-03 18:09:25 -07:00
|
|
|
text-decoration: none;
|
|
|
|
line-height: inherit;
|
2011-08-20 23:45:01 -07:00
|
|
|
font-weight: inherit;
|
2011-05-03 18:09:25 -07:00
|
|
|
&:hover {
|
2011-06-27 16:47:12 -07:00
|
|
|
color: @linkColorHover;
|
2011-05-03 18:09:25 -07:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2011-09-02 23:01:38 -07:00
|
|
|
|
|
|
|
// Quick floats
|
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
2011-09-10 21:05:23 -07:00
|
|
|
|
2011-09-16 14:07:18 -07:00
|
|
|
// Toggling content
|
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2011-09-10 21:05:23 -07:00
|
|
|
|
|
|
|
// GRID SYSTEM
|
|
|
|
// -----------
|
2011-09-12 20:07:26 -07:00
|
|
|
// To customize the grid system, bring up the variables.less file and change the column count, size, and gutter there
|
2011-09-10 21:05:23 -07:00
|
|
|
.row {
|
2011-10-16 23:04:31 -07:00
|
|
|
margin-left: -@gridGutterWidth;
|
2011-09-10 21:05:23 -07:00
|
|
|
.clearfix();
|
2011-09-11 18:44:25 -07:00
|
|
|
}
|
2011-09-10 21:05:23 -07:00
|
|
|
|
2011-09-11 18:44:25 -07: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-10 21:05:23 -07:00
|
|
|
|
2011-09-11 18:44:25 -07: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); }
|