diff --git a/docs/index.html b/docs/index.html index 891f36c940..b2f9134145 100644 --- a/docs/index.html +++ b/docs/index.html @@ -97,7 +97,7 @@

Compiled CSS

Use this option if you want all the styles of Bootstrap in a compiled and minified stylesheet, but none of the extra power of LESS.

-
<link type="text/css" href="bootstrap-1.0.0.css" media="all" />
+
<link type="text/css" href="bootstrap-1.0.0.css" media="all" />

Interested in running LESS on your project? No problem, read how to use Bootstrap with LESS »

@@ -118,7 +118,7 @@

Example grid markup

As shown here, a basic layout can be created with two "columns," each spanning a number of the 16 foundational columns we defined as part of our grid system. See the examples below for more variations.

-
+
 <div class="row">
   <div class="span6 columns">
     ...
@@ -217,7 +217,7 @@
       
-
+
 <body>
   <div class="container">
     ...
@@ -236,7 +236,7 @@
         
-
+
 <body>
   <div class="container-fluid">
     <div class="sidebar">
@@ -464,7 +464,7 @@
 		
 	
 
-
+
 <table class="common-table">
   ...
 </table>
@@ -501,7 +501,7 @@ -
+
 <table class="common-table zebra-striped">
 ...
 </table>
@@ -538,7 +538,7 @@ -
+
 <script type="text/javascript" src="js/jquery/jquery.tablesorter.min.js"></script>
 <script type="text/javascript">
   $(document).ready(function() {
@@ -908,7 +908,7 @@
   
  • Settings
  • Contact
  • -
    +
     <ul class="tabs">
       <li class="active"><a href="">Home</a></li>
       <li><a href="">Profile</a></li>
    @@ -924,7 +924,7 @@
       
  • Settings
  • Contact
  • -
    +
     <ul class="pills">
       <li class="active"><a href="">Home</a></li>
       <li><a href="">Profile</a></li>
    @@ -983,7 +983,7 @@
             
           
         
    -
    +
     <div class="pagination">
       <ul>
         <li class="prev disabled"><a href="">&larr; Previous</a></li>
    @@ -1105,7 +1105,7 @@
       

    How to use it

    Use this option to make full use of Bootstrap's LESS variables, mixins, and nesting in CSS via javascript in your browser.

    -
    +
     <link rel="stylesheet/less" type="text/css" href="less/bootstrap.less" media="all" />
     <script type="text/javascript" src="js/less-1.0.41.min.js"></script>

    Not feeling the .js solution? Try the LESS Mac app or use Node.js to compile when you deploy your code.

    @@ -1114,7 +1114,7 @@

    Here are some of the highlights of what's included in Twitter Bootstrap as part of Bootstrap. Head over to the Bootstrap website or Github project page to download and learn more.

    Color variables

    Variables in LESS are perfect for maintaining and updating your CSS headache free. When you want to change a color value or a frequently used value, update it in one spot and you're set.

    -
    +
     // Links
     @linkColor:         #8b59c2;
     @linkColorHover:    darken(@linkColor, 10);
    @@ -1142,7 +1142,7 @@
     
     

    Commenting

    LESS also provides another style of commenting in addition to CSS's normal /* ... */ syntax.

    -
    +
     // This is a comment
     /* This is also a comment */
     
    @@ -1150,7 +1150,7 @@

    Mixins up the wazoo

    Mixins are basically includes or partials for CSS, allowing you to combine a block of code into one. They're great for vendor prefixed properties like box-shadow, cross-browser gradients, font stacks, and more. Below is a sample of the mixins that are included with Bootstrap.

    Font stacks

    -
    +
     #font {
       .shorthand(@weight: normal, @size: 14px, @lineHeight: 20px) {
         font-size: @size;
    @@ -1178,7 +1178,7 @@
     }
     

    Gradients

    -
    +
     #gradient {
       .horizontal (@startColor: #555, @endColor: #333) {
         background-color: @endColor;
    @@ -1217,7 +1217,7 @@
     
     

    Operations and grid system

    Get fancy and perform some math to generate flexible and powerful mixins like the one below.

    -
    +
     // Griditude
     @gridColumns:       16;
     @gridColumnWidth:   40px;