aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-09-02 23:01:38 -0700
committerMark Otto <[email protected]>2011-09-02 23:01:38 -0700
commit4dbd2334bd8156b7621e11c19a411db1308821d8 (patch)
treef809ca77c3d0b1371ee10506d07d8e091f66dde1 /lib
parent6d118411e1d456553baf5d09aea15ff13f7b8ef4 (diff)
downloadbootstrap-4dbd2334bd8156b7621e11c19a411db1308821d8.tar.xz
bootstrap-4dbd2334bd8156b7621e11c19a411db1308821d8.zip
updated hero example, added fluid example, resolved issue with tabs and fluid nav
Diffstat (limited to 'lib')
-rw-r--r--lib/patterns.less8
-rw-r--r--lib/scaffolding.less9
2 files changed, 16 insertions, 1 deletions
diff --git a/lib/patterns.less b/lib/patterns.less
index 57e682da8..eccda9359 100644
--- a/lib/patterns.less
+++ b/lib/patterns.less
@@ -46,6 +46,12 @@
}
}
+ // Plain text in topbar
+ p {
+ margin: 0;
+ line-height: 40px;
+ }
+
// Search Form
form {
float: left;
@@ -312,6 +318,7 @@ a.menu:after,
// Basic Tabs
.tabs {
+ float: left;
width: 100%;
border-bottom: 1px solid #ddd;
> li {
@@ -385,7 +392,6 @@ a.menu:after,
.hero-unit {
background-color: #f5f5f5;
- margin-top: 60px;
margin-bottom: 30px;
padding: 60px;
.border-radius(6px);
diff --git a/lib/scaffolding.less b/lib/scaffolding.less
index 5f4734b99..845c4d355 100644
--- a/lib/scaffolding.less
+++ b/lib/scaffolding.less
@@ -101,6 +101,7 @@ body {
display: block;
}
+
// BASE STYLES
// -----------
@@ -115,3 +116,11 @@ a {
text-decoration: underline;
}
}
+
+// Quick floats
+.pull-right {
+ float: right;
+}
+.pull-left {
+ float: left;
+}