2011-06-30 09:15:37 +02:00
|
|
|
/*
|
|
|
|
* Scaffolding
|
2011-06-28 23:24:02 +02:00
|
|
|
* Basic and global styles for generating a grid system, structural layout, and page templates
|
2011-08-17 07:58:01 +02:00
|
|
|
* ------------------------------------------------------------------------------------------- */
|
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-10-28 08:45:48 +02:00
|
|
|
background-color: @white;
|
2011-08-22 02:06:37 +02:00
|
|
|
margin: 0;
|
2011-06-29 00:11:41 +02:00
|
|
|
#font > .sans-serif(normal,@basefont,@baseline);
|
2011-09-11 06:05:23 +02:00
|
|
|
color: @grayDark;
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Container (centered, fixed-width layouts)
|
2011-08-26 07:44:23 +02:00
|
|
|
.container {
|
2011-09-03 07:08:38 +02:00
|
|
|
.fixed-container();
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
|
2011-08-26 07:44:23 +02:00
|
|
|
.container-fluid {
|
2011-09-11 00:29:38 +02:00
|
|
|
position: relative;
|
2011-09-16 23:07:18 +02:00
|
|
|
min-width: 940px;
|
2011-09-03 06:00:01 +02:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
2011-05-04 03:09:25 +02:00
|
|
|
.clearfix();
|
2011-09-02 18:45:03 +02:00
|
|
|
> .sidebar {
|
2011-10-20 08:50:41 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 20px;
|
2011-05-04 03:09:25 +02:00
|
|
|
width: 220px;
|
|
|
|
}
|
2011-09-02 18:52:33 +02:00
|
|
|
// TODO in v2: rename this and .popover .content to be more specific
|
2011-09-02 18:45:03 +02:00
|
|
|
> .content {
|
2011-09-16 23:07:18 +02:00
|
|
|
margin-left: 240px;
|
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;
|
|
|
|
line-height: inherit;
|
2011-08-21 08:45:01 +02:00
|
|
|
font-weight: inherit;
|
2011-05-04 03:09:25 +02:00
|
|
|
&: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
|
|
|
|
|
|
|
// Quick floats
|
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
2011-09-11 06:05:23 +02:00
|
|
|
|
2011-09-16 23:07:18 +02:00
|
|
|
// Toggling content
|
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
.clearfix();
|
2011-10-08 08:53:32 +02:00
|
|
|
margin-left: -@gridGutterWidth;
|
2011-09-12 03:44:25 +02:00
|
|
|
}
|
2011-09-11 06:05:23 +02:00
|
|
|
|
2011-09-12 03:44:25 +02: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
|
2011-10-04 07:14:50 +02:00
|
|
|
.row > [class*="span"] {
|
2011-09-12 03:44:25 +02:00
|
|
|
.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); }
|
|
|
|
.span13 { .columns(13); }
|
|
|
|
.span14 { .columns(14); }
|
|
|
|
.span15 { .columns(15); }
|
|
|
|
.span16 { .columns(16); }
|
|
|
|
|
|
|
|
// For optional 24-column grid
|
|
|
|
.span17 { .columns(17); }
|
|
|
|
.span18 { .columns(18); }
|
|
|
|
.span19 { .columns(19); }
|
|
|
|
.span20 { .columns(20); }
|
|
|
|
.span21 { .columns(21); }
|
|
|
|
.span22 { .columns(22); }
|
|
|
|
.span23 { .columns(23); }
|
|
|
|
.span24 { .columns(24); }
|
|
|
|
|
|
|
|
// Offset column options
|
2011-10-04 07:14:50 +02:00
|
|
|
.row {
|
|
|
|
& > .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); }
|
|
|
|
& > .offset12 { .offset(12); }
|
|
|
|
}
|
2011-09-12 03:44:25 +02:00
|
|
|
|
|
|
|
// Unique column sizes for 16-column grid
|
|
|
|
.span-one-third { width: 300px; }
|
|
|
|
.span-two-thirds { width: 620px; }
|
|
|
|
.offset-one-third { margin-left: 340px; }
|
2011-09-16 20:24:07 +02:00
|
|
|
.offset-two-thirds { margin-left: 660px; }
|