twbs--bootstrap/lib/scaffolding.less

111 lines
2.4 KiB
Plaintext
Raw Normal View History

/*
* Scaffolding
* Basic and global styles for generating a grid system, structural layout, and page templates
2011-08-17 05:58:01 +00:00
* ------------------------------------------------------------------------------------------- */
2011-05-04 01:09:25 +00:00
2011-08-17 05:58:01 +00:00
// GRID SYSTEM
// -----------
2011-05-04 01:09:25 +00:00
.row {
2011-05-04 01:09:25 +00:00
.clearfix();
margin-left: -1 * @gridGutterWidth;
2011-08-24 03:16:39 +00: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"] {
display: inline;
2011-08-24 03:16:39 +00:00
float: left;
margin-left: @gridGutterWidth;
2011-08-24 03:16:39 +00:00
}
2011-08-17 05:58:01 +00: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); }
2011-08-17 05:58:01 +00:00
// 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); }
2011-08-30 04:26:53 +00:00
.offset9 { .offset(9); }
.offset10 { .offset(10); }
.offset11 { .offset(11); }
.offset12 { .offset(12); }
// Unique column sizes for 16-column grid
.span-one-third { width: 300px; }
.span-two-thirds { width: 620px; }
2011-08-30 04:41:32 +00:00
.offset-one-third { margin-left: 340px; }
.offset-two-thirds { margin-left: 660px; }
2011-05-04 01:09:25 +00:00
}
2011-08-17 05:58:01 +00:00
// STRUCTURAL LAYOUT
// -----------------
2011-05-04 01:09:25 +00:00
html, body {
background-color: #fff;
}
body {
margin: 0;
#font > .sans-serif(normal,@basefont,@baseline);
2011-05-04 01:09:25 +00:00
color: @gray;
}
// Container (centered, fixed-width layouts)
2011-08-26 05:44:23 +00:00
.container {
2011-05-04 01:09:25 +00:00
width: 940px;
margin: 0 auto;
}
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
2011-08-26 05:44:23 +00:00
.container-fluid {
padding: 0 20px;
2011-05-04 01:09:25 +00:00
.clearfix();
> .sidebar {
2011-05-04 01:09:25 +00:00
float: left;
width: 220px;
}
// TODO in v2: rename this and .popover .content to be more specific
> .content {
2011-05-04 01:09:25 +00:00
min-width: 700px;
max-width: 1180px;
margin-left: 240px;
}
}
2011-08-17 05:58:01 +00:00
// BASE STYLES
// -----------
2011-05-04 01:09:25 +00:00
// Links
a {
color: @linkColor;
2011-05-04 01:09:25 +00:00
text-decoration: none;
line-height: inherit;
font-weight: inherit;
2011-05-04 01:09:25 +00:00
&:hover {
color: @linkColorHover;
2011-05-04 01:09:25 +00:00
text-decoration: underline;
}
}