<p>Use this option if you want all the styles of Bootstrap in a <ahref="../bootstrap-1.0.0.min.css">compiled and minified stylesheet</a>, but none of the extra power of LESS.</p>
<p>Interested in running LESS on your project? No problem, <ahref="#less">read how to use Bootstrap with LESS »</a></p>
</div>
...
...
@@ -115,7 +118,7 @@
<divclass="span12 columns">
<h3>Example grid markup</h3>
<p>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.</p>
<p>Not feeling the .js solution? <ahref="http://incident57.com/less"target="_blank">Try the LESS Mac app</a> or <ahref="http://lesscss.org/#-client-side-usage"target="_blank">use Node.js</a> to compile when you deploy your code.</p>
...
...
@@ -1111,7 +1114,7 @@
<p>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.</p>
<h3>Color variables</h3>
<p>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.</p>
<preclass="css">
<preclass="prettyprint">
// Links
@linkColor: #8b59c2;
@linkColorHover: darken(@linkColor, 10);
...
...
@@ -1139,7 +1142,7 @@
<h3>Commenting</h3>
<p>LESS also provides another style of commenting in addition to CSS's normal <code>/* ... */</code> syntax.</p>
<preclass="css">
<preclass="prettyprint">
// This is a comment
/* This is also a comment */
</pre>
...
...
@@ -1147,7 +1150,7 @@
<h3>Mixins up the wazoo</h3>
<p>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 <code>box-shadow</code>, cross-browser gradients, font stacks, and more. Below is a sample of the mixins that are included with Bootstrap.</p>