1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-24 12:40:58 +00:00
bootstrap/lib/scaffolding.less

118 lines
2.2 KiB
Plaintext
Raw Normal View History

/*
* Scaffolding
* 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
// GRID SYSTEM
// -----------
2011-05-03 18:09:25 -07:00
.row {
2011-05-03 18:09:25 -07:00
.clearfix();
margin-left: -20px;
2011-08-23 20:16:39 -07:00
// Default columns
.span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10,
.span11,
.span12,
.span13,
.span14,
.span15,
.span16 {
display: inline;
2011-08-23 20:16:39 -07:00
float: left;
margin-left: 20px;
}
2011-08-16 22:58:01 -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); }
.span13 { .columns(13); }
.span14 { .columns(14); }
.span15 { .columns(15); }
.span16 { .columns(16); }
2011-08-16 22:58:01 -07: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); }
.offset9 { .offset(8); }
.offset10 { .offset(10); }
.offset11 { .offset(11); }
.offset12 { .offset(12); }
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
html, body {
background-color: #fff;
}
body {
margin: 0;
#font > .sans-serif(normal,@basefont,@baseline);
2011-05-03 18:09:25 -07:00
color: @gray;
text-rendering: optimizeLegibility;
}
// Container (centered, fixed-width layouts)
2011-08-25 22:44:23 -07:00
.container {
2011-05-03 18:09:25 -07:00
width: 940px;
margin: 0 auto;
}
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
2011-08-25 22:44:23 -07:00
.container-fluid {
padding: 0 20px;
2011-05-03 18:09:25 -07:00
.clearfix();
2011-08-25 22:44:23 -07:00
.sidebar {
2011-05-03 18:09:25 -07:00
float: left;
width: 220px;
}
2011-08-25 22:44:23 -07:00
.content {
2011-05-03 18:09:25 -07:00
min-width: 700px;
max-width: 1180px;
margin-left: 240px;
}
}
2011-08-16 22:58:01 -07:00
// BASE STYLES
// -----------
2011-05-03 18:09:25 -07:00
// Links
a {
color: @linkColor;
2011-05-03 18:09:25 -07:00
text-decoration: none;
line-height: inherit;
font-weight: inherit;
2011-05-03 18:09:25 -07:00
&:hover {
color: @linkColorHover;
2011-05-03 18:09:25 -07:00
text-decoration: underline;
}
}