From 6b9f70797d812f5a3a90035e4e8ccc2b7cfd0f66 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 6 Mar 2012 21:12:43 -0800 Subject: adding well sizes --- docs/assets/css/bootstrap.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index ef60ecf47..9854e974c 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1783,6 +1783,18 @@ table .span24 { border-color: #ddd; border-color: rgba(0, 0, 0, 0.15); } +.well-large { + padding: 24px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.well-small { + padding: 9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} .fade { -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; -- cgit v1.2.3 From 305374ab1a49a1bdfbab0e52a2be218fc42f3cc0 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 10 Mar 2012 11:23:05 -0800 Subject: clear up nav variables --- docs/assets/css/bootstrap.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 9854e974c..3a79af206 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -310,8 +310,9 @@ h4, h5, h6 { margin: 0; - font-weight: bold; - color: #333333; + font-family: ''; + font-weight: normal; + color: ''; text-rendering: optimizelegibility; } h1 small, -- cgit v1.2.3 From f4e879a93612e8ec121985f075812f63c0d4f355 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 10 Mar 2012 11:27:07 -0800 Subject: fix the font-family var by using inherit instead of empty string, fix font-weight in docs for jumbotron --- docs/assets/css/bootstrap.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 3a79af206..de85e2082 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -310,9 +310,9 @@ h4, h5, h6 { margin: 0; - font-family: ''; + font-family: inherit; font-weight: normal; - color: ''; + color: inherit; text-rendering: optimizelegibility; } h1 small, -- cgit v1.2.3 From 5d961eaeb385373786dd1b4cb877247bdb6d5475 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 10 Mar 2012 11:29:57 -0800 Subject: rebold headings --- docs/assets/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index de85e2082..5980f0675 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -311,7 +311,7 @@ h5, h6 { margin: 0; font-family: inherit; - font-weight: normal; + font-weight: bold; color: inherit; text-rendering: optimizelegibility; } -- cgit v1.2.3