2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +03:00

Added in mini layout docs; cleaned up layout markup and added the css for it;

This commit is contained in:
Mark Otto
2011-04-28 11:46:32 -07:00
parent 8c2e128698
commit eb3389303d
4 changed files with 120 additions and 27 deletions
+16 -1
View File
@@ -41,12 +41,27 @@ body {
.box-shadow(inset 0 1px 0 #fff);
}
// Containers
// Container (centered, fixed-width layouts)
div.container {
width: 940px;
margin: 0 auto;
}
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
div.container-fluid {
padding: 20px;
.clearfix();
div.sidebar {
float: left;
width: 220px;
}
div.content {
min-width: 700px;
max-width: 1180px;
margin-left: 240px;
}
}
/* Base Styles
-------------------------------------------------- */