diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 35eb7b83cb..0a713d626c 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -95,9 +95,9 @@ hr.soften { background: -ms-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* IE10+ */ background: linear-gradient(45deg, #020031 0%,#6d3353 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ - -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); - -moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); - box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); + -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15), inset 0 -3px 7px rgba(0,0,0,.15); + -moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15), inset 0 -3px 7px rgba(0,0,0,.15); + box-shadow: inset 0 -1px 0 rgba(0,0,0,.15), inset 0 -3px 7px rgba(0,0,0,.15); } .jumbotron h1 { @@ -209,7 +209,7 @@ hr.soften { font-size: 60px; } .subhead p { - margin-bottom: 10px; + margin-bottom: 20px; } .subhead .navbar { display: none; @@ -915,5 +915,3 @@ form.bs-docs-example { } } - - diff --git a/docs/base-css.html b/docs/base-css.html index fc04ea4c20..2897453978 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -45,6 +45,9 @@
  • Home
  • +
  • + Get started +
  • Scaffolding
  • diff --git a/docs/components.html b/docs/components.html index ca8cfe2ddc..a48037a2d6 100644 --- a/docs/components.html +++ b/docs/components.html @@ -45,6 +45,9 @@
  • Home
  • +
  • + Get started +
  • Scaffolding
  • diff --git a/docs/download.html b/docs/download.html index 2573b45c95..9c637ca2c4 100644 --- a/docs/download.html +++ b/docs/download.html @@ -45,6 +45,9 @@
  • Home
  • +
  • + Get started +
  • Scaffolding
  • diff --git a/docs/examples.html b/docs/examples.html index 4dd06b14ac..1b16f378c9 100644 --- a/docs/examples.html +++ b/docs/examples.html @@ -45,6 +45,9 @@
  • Home
  • +
  • + Get started +
  • Scaffolding
  • diff --git a/docs/extend.html b/docs/extend.html index 3ea7953fdc..8f8f548beb 100644 --- a/docs/extend.html +++ b/docs/extend.html @@ -45,6 +45,9 @@
  • Home
  • +
  • + Get started +
  • Scaffolding
  • diff --git a/docs/getting-started.html b/docs/getting-started.html index c0e99542e9..eb6358d868 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -45,6 +45,9 @@
  • Home
  • +
  • + Get started +
  • Scaffolding
  • @@ -66,155 +69,179 @@ - -
    -

    Getting started

    -

    Overview of the project, it's contents, and how to get started with a simple template.

    -
    +

    Getting started

    +

    Overview of the project, it's contents, and how to get started with a simple template.

    +
    -
    -
    - + + +
    + +
    + + + + +
    + +

    Before downloading, be sure to have a code editor (we recommend Sublime Text 2) and some working knowledge of HTML and CSS. We won't walk through the source files here, but they are available for download. We'll focus on getting started with our the compiled Bootstrap files.

    + +
    +
    +

    Download compiled

    +

    Fastest way to get started: get the compiled and minified versions of our CSS, JS, and images. No docs or original source files.

    + Download Bootstrap +
    +
    +

    Download source

    +

    Get the original files for all CSS and Javasript, along with a local copy of the docs by downloading the latest version directly from GitHub.

    + Download Bootstrap source +
    +
    +
    + + + + +
    + +

    Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:

    +
    +  bootstrap/
    +  ├── css/
    +  │   ├── bootstrap.css
    +  │   ├── bootstrap.min.css
    +  ├── js/
    +  │   ├── bootstrap.js
    +  │   ├── bootstrap.min.js
    +  ├── img/
    +  │   ├── glyphicons-halflings.png
    +  │   ├── glyphicons-halflings-white.png
    +  └── README.md
    +
    +

    This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). The image files are compressed using ImageOptim, a Mac app for compressing PNGs.

    +
    + + + + +
    + +

    Bootstrap comes equipped with HTML, CSS, and JS for all sorts of things, but they can be summarized with a handful of categories visible at the top of the Bootstrap documentation.

    + +

    Scaffolding

    +

    Global styles for the body to reset type and background, link styles, grid system, and two simple layouts.

    + +

    Base CSS

    +

    Styles for common HTML elements like typography, code, tables, forms, and buttons. Also includes Glyphicons, a great little icon set.

    + +

    Components

    +

    Basic styles for common interface components like tabs and pills, navbar, alerts, page headers, and more.

    + +

    Javascript plugins

    +

    Similar to Components, these Javascript plugins are interactive components for things like tooltips, popovers, modals, and more.

    + +
    + +

    List of components

    +

    Together, the Components and Javascript plugins sections provide the following interface elements:

    +
      +
    • Button groups
    • +
    • Button dropdowns
    • +
    • Navigational tabs, pills, and lists
    • +
    • Navbar
    • +
    • Labels
    • +
    • Badges
    • +
    • Page headers and hero unit
    • +
    • Thumbnails
    • +
    • Alerts
    • +
    • Progress bars
    • +
    • Modals
    • +
    • Dropdowns
    • +
    • Tooltips
    • +
    • Popovers
    • +
    • Accordion
    • +
    • Carousel
    • +
    • Typeahead
    • +
    +

    In future guides, we may walk through these components individually in more detail. Until then, look for each of these in the documentation for information on how to utilize and customize them.

    +
    + + + + +
    + +

    With a brief intro into the contents out of the way, we can focus putting Bootstrap to use. To do that, we'll utilize a basic HTML template that includes everything we mentioned in the File structure.

    +

    Now, here's a look at a typical HTML file:

    +
    +    <html>
    +      <head>
    +        <title>Bootstrap 101 Template</title>
    +      </head>
    +      <body>
    +        <h1>Hello, world!</h1>
    +      </body>
    +    </html>
    +    
    +

    To make this a Bootstrapped template, just include the appropriate CSS and JS files:

    +
    +    <html>
    +      <head>
    +        <title>Bootstrap 101 Template</title>
    +        <!-- Bootstrap -->
    +        <link href="css/bootstrap.min.css" rel="stylesheet">
    +        <script src="js/bootstrap.min.js"></script>
    +      </head>
    +      <body>
    +        <h1>Hello, world!</h1>
    +      </body>
    +    </html>
    +    
    +

    And you're set! With those two files added, you can begin to develop any site or application with Bootstrap.

    + +
    + +

    What next?

    +

    Head to the docs for information, examples, and code snippets, or take the next leap and customize Bootstrap for any upcoming project.

    + Visit the Bootstrap docs + Customize Bootstrap +
    + + + +
    -
    - -
    - -

    Before getting started, you need the following:

    -
      -
    • An unzipped copy of the latest version of Bootstrap (which includes all CSS, JavaScript, and images).
    • -
    • An editor of your choice for writing code (I recommend Sublime Text 2).
    • -
    • Some working knowledge of HTML and CSS.
    • -
    -

    When ready, proceed to the next section, File structure.

    -
    - - - -
    - -

    Once unzipped, the structure of Bootstrap’s files looks like this:

    -
      -
    • bootstrap/ -
        -
      • css/ -
          -
        • bootstrap.css
        • -
        • bootstrap.min.css
        • -
        -
      • -
      • js/ -
          -
        • bootstrap.js
        • -
        • bootstrap.min.js
        • -
        -
      • -
      • img/ -
          -
        • glyphicons-halflings.png
        • -
        • glyphicons-halflings-white.png
        • -
        -
      • -
      • README.md
      • -
      -
    • -
    -

    This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). The image files are compressed using ImageOptim, a Mac app for compressing PNGs.

    -
    - - - -
    - -

    Bootstrap comes equipped with CSS for all sorts of things, but they can be summarized with a handful of categories visible at the top of the Bootstrap documentation:

    -
      -
    • Scaffolding: Global styles for the body to reset type and background, link styles, grid system, and two simple layouts.
    • -
    • Base CSS: Styles for common HTML elements like typography, code, tables, forms, and buttons. Also includes Glyphicons, a great little icon set.
    • -
    • Components: Basic styles for common interface components like tabs and pills, navbar, page headers, and more.
    • -
    • Javascript plugins: Similar to the Components section, these Javascript plugins are interactive components for things like tooltips, popovers, modals, and more.
    • -
    -

    Together, the Components and Javascript plugins sections provide the following interface elements:

    -
      -
    • Button groups
    • -
    • Button dropdowns
    • -
    • Navigational tabs, pills, and lists
    • -
    • Navbar
    • -
    • Labels
    • -
    • Badges
    • -
    • Page headers and hero unit
    • -
    • Thumbnails
    • -
    • Alerts
    • -
    • Progress bars
    • -
    • Modals
    • -
    • Dropdowns
    • -
    • Tooltips
    • -
    • Popovers
    • -
    • Accordion
    • -
    • Carousel
    • -
    • Typeahead
    • -
    -

    In future guides, we may walk through these components individually in more detail. Until then, look for each of these in the documentation for information on how to utilize and customize them.

    -
    - - - -
    - -

    Now that we’ve got the basic information on Bootstrap out of the way, we can focus on getting started. To do that, we’ll utilize a basic HTML template that includes everything we’ve mentioned in the File structure.

    -

    As previously mentioned, we won’t cover the basics of writing HTML and CSS here. Instead, we’ll leapfrog through various points in web development complexity to give you the broadest and most complete overview.

    -

    Now, here’s a look at a typical HTML file:

    -
    -  <html>
    -    <head>
    -      <title>Bootstrap 101 Template</title>
    -    </head>
    -    <body>
    -      <h1>Hello, world!</h1>
    -    </body>
    -  </html>
    -  
    -

    To make this a Bootstrapped template, just include the appropriate CSS and JS files:

    -
    -  <html>
    -    <head>
    -      <title>Bootstrap 101 Template</title>
    -      <!-- Bootstrap -->
    -      <link href="css/bootstrap.min.css" rel="stylesheet">
    -      <script src="js/bootstrap.min.js"></script>
    -    </head>
    -    <body>
    -      <h1>Hello, world!</h1>
    -    </body>
    -  </html>
    -  
    -

    And you’re set. With those two files added, you can begin to write Bootstrap-friendly HTML, CSS, and JS to build any site or application you like. Head to the Bootstrap docs for information, examples, and even code snippets for the Bootstrap grid system, base HTML styles, components, and even responsive features.

    -
    - - - -
    +
    diff --git a/docs/index.html b/docs/index.html index d059aaa3e7..4acc040abb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -45,6 +45,9 @@
  • Home
  • +
  • + Get started +
  • Scaffolding
  • @@ -72,7 +75,6 @@

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

    Download Bootstrap

    -
    -

    {{_i}}Getting started{{/i}}

    -

    {{_i}}Overview of the project, it's contents, and how to get started with a simple template.{{/i}}

    -
    +

    {{_i}}Getting started{{/i}}

    +

    {{_i}}Overview of the project, it's contents, and how to get started with a simple template.{{/i}}

    +
    -
    - -
    -
    - -

    {{_i}}Before getting started, you need the following:{{/i}}

    -
    +
    +
    -
    - -

    {{_i}}Once unzipped, the structure of Bootstrap’s files looks like this:{{/i}}

    -
      -
    • bootstrap/ -
        -
      • css/ -
          -
        • bootstrap.css
        • -
        • bootstrap.min.css
        • -
        -
      • -
      • js/ -
          -
        • bootstrap.js
        • -
        • bootstrap.min.js
        • -
        -
      • -
      • img/ -
          -
        • glyphicons-halflings.png
        • -
        • glyphicons-halflings-white.png
        • -
        -
      • -
      • README.md
      • -
      -
    • -
    -

    {{_i}}This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). The image files are compressed using ImageOptim, a Mac app for compressing PNGs.{{/i}}

    -
    + +
    + +

    {{_i}}Before downloading, be sure to have a code editor (we recommend Sublime Text 2) and some working knowledge of HTML and CSS. We won't walk through the source files here, but they are available for download. We'll focus on getting started with our the compiled Bootstrap files.{{/i}}

    + +
    +
    +

    Download compiled

    +

    Fastest way to get started: get the compiled and minified versions of our CSS, JS, and images. No docs or original source files.

    + Download Bootstrap +
    +
    +

    Download source

    +

    Get the original files for all CSS and Javasript, along with a local copy of the docs by downloading the latest version directly from GitHub.

    + Download Bootstrap source +
    +
    +
    -
    - -

    {{_i}}Bootstrap comes equipped with CSS for all sorts of things, but they can be summarized with a handful of categories visible at the top of the Bootstrap documentation:{{/i}}

    -
      -
    • Scaffolding: Global styles for the body to reset type and background, link styles, grid system, and two simple layouts.
    • -
    • Base CSS: Styles for common HTML elements like typography, code, tables, forms, and buttons. Also includes Glyphicons, a great little icon set.
    • -
    • Components: Basic styles for common interface components like tabs and pills, navbar, page headers, and more.
    • -
    • Javascript plugins: Similar to the Components section, these Javascript plugins are interactive components for things like tooltips, popovers, modals, and more.
    • -
    -

    Together, the Components and Javascript plugins sections provide the following interface elements:

    -
      -
    • Button groups
    • -
    • Button dropdowns
    • -
    • Navigational tabs, pills, and lists
    • -
    • Navbar
    • -
    • Labels
    • -
    • Badges
    • -
    • Page headers and hero unit
    • -
    • Thumbnails
    • -
    • Alerts
    • -
    • Progress bars
    • -
    • Modals
    • -
    • Dropdowns
    • -
    • Tooltips
    • -
    • Popovers
    • -
    • Accordion
    • -
    • Carousel
    • -
    • Typeahead
    • -
    -

    {{_i}}In future guides, we may walk through these components individually in more detail. Until then, look for each of these in the documentation for information on how to utilize and customize them.{{/i}}

    -
    + +
    + +

    {{_i}}Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:{{/i}}

    +
    +  bootstrap/
    +  ├── css/
    +  │   ├── bootstrap.css
    +  │   ├── bootstrap.min.css
    +  ├── js/
    +  │   ├── bootstrap.js
    +  │   ├── bootstrap.min.js
    +  ├── img/
    +  │   ├── glyphicons-halflings.png
    +  │   ├── glyphicons-halflings-white.png
    +  └── README.md
    +
    +

    {{_i}}This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). The image files are compressed using ImageOptim, a Mac app for compressing PNGs.{{/i}}

    +
    -
    - -

    {{_i}}Now that we’ve got the basic information on Bootstrap out of the way, we can focus on getting started. To do that, we’ll utilize a basic HTML template that includes everything we’ve mentioned in the File structure.{{/i}}

    -

    {{_i}}As previously mentioned, we won’t cover the basics of writing HTML and CSS here. Instead, we’ll leapfrog through various points in web development complexity to give you the broadest and most complete overview.{{/i}}

    -

    {{_i}}Now, here’s a look at a typical HTML file:{{/i}}

    -
    -  <html>
    -    <head>
    -      <title>Bootstrap 101 Template</title>
    -    </head>
    -    <body>
    -      <h1>Hello, world!</h1>
    -    </body>
    -  </html>
    -  
    -

    {{_i}}To make this a Bootstrapped template, just include the appropriate CSS and JS files:{{/i}}

    -
    -  <html>
    -    <head>
    -      <title>Bootstrap 101 Template</title>
    -      <!-- Bootstrap -->
    -      <link href="css/bootstrap.min.css" rel="stylesheet">
    -      <script src="js/bootstrap.min.js"></script>
    -    </head>
    -    <body>
    -      <h1>Hello, world!</h1>
    -    </body>
    -  </html>
    -  
    -

    {{_i}}And you’re set. With those two files added, you can begin to write Bootstrap-friendly HTML, CSS, and JS to build any site or application you like. Head to the Bootstrap docs for information, examples, and even code snippets for the Bootstrap grid system, base HTML styles, components, and even responsive features.{{/i}}

    -
    + +
    + +

    {{_i}}Bootstrap comes equipped with HTML, CSS, and JS for all sorts of things, but they can be summarized with a handful of categories visible at the top of the Bootstrap documentation.{{/i}}

    + +

    Scaffolding

    +

    Global styles for the body to reset type and background, link styles, grid system, and two simple layouts.

    + +

    Base CSS

    +

    Styles for common HTML elements like typography, code, tables, forms, and buttons. Also includes Glyphicons, a great little icon set.

    + +

    Components

    +

    Basic styles for common interface components like tabs and pills, navbar, alerts, page headers, and more.

    + +

    Javascript plugins

    +

    Similar to Components, these Javascript plugins are interactive components for things like tooltips, popovers, modals, and more.

    + +
    + +

    List of components

    +

    Together, the Components and Javascript plugins sections provide the following interface elements:

    +
      +
    • Button groups
    • +
    • Button dropdowns
    • +
    • Navigational tabs, pills, and lists
    • +
    • Navbar
    • +
    • Labels
    • +
    • Badges
    • +
    • Page headers and hero unit
    • +
    • Thumbnails
    • +
    • Alerts
    • +
    • Progress bars
    • +
    • Modals
    • +
    • Dropdowns
    • +
    • Tooltips
    • +
    • Popovers
    • +
    • Accordion
    • +
    • Carousel
    • +
    • Typeahead
    • +
    +

    {{_i}}In future guides, we may walk through these components individually in more detail. Until then, look for each of these in the documentation for information on how to utilize and customize them.{{/i}}

    +
    -
    -
    \ No newline at end of file + +
    + +

    {{_i}}With a brief intro into the contents out of the way, we can focus putting Bootstrap to use. To do that, we'll utilize a basic HTML template that includes everything we mentioned in the File structure.{{/i}}

    +

    {{_i}}Now, here's a look at a typical HTML file:{{/i}}

    +
    +    <html>
    +      <head>
    +        <title>Bootstrap 101 Template</title>
    +      </head>
    +      <body>
    +        <h1>Hello, world!</h1>
    +      </body>
    +    </html>
    +    
    +

    {{_i}}To make this a Bootstrapped template, just include the appropriate CSS and JS files:{{/i}}

    +
    +    <html>
    +      <head>
    +        <title>Bootstrap 101 Template</title>
    +        <!-- Bootstrap -->
    +        <link href="css/bootstrap.min.css" rel="stylesheet">
    +        <script src="js/bootstrap.min.js"></script>
    +      </head>
    +      <body>
    +        <h1>Hello, world!</h1>
    +      </body>
    +    </html>
    +    
    +

    {{_i}}And you're set! With those two files added, you can begin to develop any site or application with Bootstrap.{{/i}}

    + +
    + +

    What next?

    +

    Head to the docs for information, examples, and code snippets, or take the next leap and customize Bootstrap for any upcoming project.

    + Visit the Bootstrap docs + Customize Bootstrap +
    + + + +
    {{! /span9 }} + {{! row}} + +{{! /container }} diff --git a/docs/templates/pages/index.mustache b/docs/templates/pages/index.mustache index 0243079596..6919f8e212 100644 --- a/docs/templates/pages/index.mustache +++ b/docs/templates/pages/index.mustache @@ -4,7 +4,6 @@

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

    {{_i}}Download Bootstrap{{/i}}