From b9105b98f9ee5f15d5b18bccf277344683d4a6db Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 20 Jul 2012 22:06:47 -0700 Subject: move from downloads.html to customize.html to better match purpose of page, fix up customize page layout to match other docs, link style refinement to jumbotrons --- docs/assets/css/docs.css | 63 ++-- docs/base-css.html | 2 +- docs/components.html | 34 +-- docs/customize.html | 476 +++++++++++++++++++++++++++++++ docs/download.html | 462 ------------------------------ docs/extend.html | 4 +- docs/getting-started.html | 2 +- docs/index.html | 4 +- docs/javascript.html | 2 +- docs/scaffolding.html | 2 +- docs/templates/layout.mustache | 4 +- docs/templates/pages/components.mustache | 32 +-- docs/templates/pages/customize.mustache | 361 +++++++++++++++++++++++ docs/templates/pages/download.mustache | 347 ---------------------- docs/templates/pages/index.mustache | 2 +- docs/upgrading.html | 2 +- 16 files changed, 905 insertions(+), 894 deletions(-) create mode 100644 docs/customize.html delete mode 100644 docs/download.html create mode 100644 docs/templates/pages/customize.mustache delete mode 100644 docs/templates/pages/download.mustache (limited to 'docs') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index f16cb7442e..e4dd2e966d 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -118,19 +118,41 @@ hr.soften { line-height: 30px; margin-bottom: 30px; } -.jumbotron .btn-large { - font-size: 18px; - font-weight: normal; - padding: 13px 24px; - margin-right: 10px; + +/* Link styles (used on .masthead-links as well) */ +.jumbotron a { + color: #fff; + color: rgba(255,255,255,.5); + -webkit-transition: all .2s ease-in-out; + -moz-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; +} +.jumbotron a:hover { + color: #fff; + text-shadow: 0 0 10px rgba(255,255,255,.25); +} + +/* Download button */ +.masthead .btn { + padding: 14px 24px; + font-size: 24px; + font-weight: 200; + color: #fff; /* redeclare to override the `.jumbotron a` */ + border: 0; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; + -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); + -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); + box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); } -.jumbotron .btn-large small { - font-size: 14px; +.masthead .btn:active { + -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); + -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); + box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); } + /* Pattern overlay ------------------------- */ .jumbotron .container { @@ -167,22 +189,6 @@ hr.soften { line-height: 1.25; } -/* Drop borders on buttons, improve shadows */ -.masthead .btn { - font-size: 24px; - padding: 14px 24px; - font-weight: 200; - border: 0; - -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); - -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); - box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); -} -.masthead .btn:active { - -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); - -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); - box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1); -} - /* Textual links in masthead */ .masthead-links { margin: 0; @@ -193,17 +199,6 @@ hr.soften { padding: 0 10px; color: rgba(255,255,255,.25); } -.masthead-links a { - color: #fff; - color: rgba(255,255,255,.5); - -webkit-transition: all .2s ease-in-out; - -moz-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} -.masthead-links a:hover { - color: #fff; - text-shadow: 0 0 10px rgba(255,255,255,.25); -} /* Social proof buttons from GitHub & Twitter */ .bs-docs-social { diff --git a/docs/base-css.html b/docs/base-css.html index a23008dd1a..8713a1b258 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -61,7 +61,7 @@ Javascript
  • - Extend + Customize
  • diff --git a/docs/components.html b/docs/components.html index 7a25db4dd0..11a23efb61 100644 --- a/docs/components.html +++ b/docs/components.html @@ -61,7 +61,7 @@ Javascript
  • - Extend + Customize
  • @@ -113,7 +113,7 @@

    Example

    -

    An isolated (without dropdown toggle) dropdown menu example, designed to be used with the dropdown javascript plugin.

    +

    Toggleable, contextual menu for displaying lists of links. Made interactive with the dropdown javascript plugin.

    diff --git a/docs/getting-started.html b/docs/getting-started.html index 39dd81ff9a..d2d261fd1e 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -61,7 +61,7 @@ Javascript
  • - Extend + Customize
  • diff --git a/docs/index.html b/docs/index.html index 4acc040abb..92e9075c9d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -61,7 +61,7 @@ Javascript
  • - Extend + Customize
  • @@ -75,7 +75,7 @@

    Sleek, intuitive, and powerful front-end framework for faster and easier web development.

    Download Bootstrap

    diff --git a/docs/javascript.html b/docs/javascript.html index 42c8a6f7e9..70355957c6 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -61,7 +61,7 @@ Javascript
  • - Extend + Customize
  • diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 1aca819f91..e43b4db30f 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -61,7 +61,7 @@ Javascript
  • - Extend + Customize
  • diff --git a/docs/templates/layout.mustache b/docs/templates/layout.mustache index 3366179deb..879e939a14 100644 --- a/docs/templates/layout.mustache +++ b/docs/templates/layout.mustache @@ -72,8 +72,8 @@
  • {{_i}}Javascript{{/i}}
  • -
  • - {{_i}}Extend{{/i}} +
  • + {{_i}}Customize{{/i}}
  • diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache index c21969d657..9b1e605210 100644 --- a/docs/templates/pages/components.mustache +++ b/docs/templates/pages/components.mustache @@ -42,7 +42,7 @@

    {{_i}}Example{{/i}}

    -

    {{_i}}An isolated (without dropdown toggle) dropdown menu example, designed to be used with the dropdown javascript plugin.{{/i}}

    +

    {{_i}}Toggleable, contextual menu for displaying lists of links. Made interactive with the dropdown javascript plugin.{{/i}}

    -- cgit v1.2.3