diff --git a/docs/templates/pages/less.mustache b/docs/templates/pages/less.mustache
index 568e857bef..d6376ae2f6 100644
--- a/docs/templates/pages/less.mustache
+++ b/docs/templates/pages/less.mustache
@@ -1,8 +1,8 @@
Customize and extend Bootstrap with LESS, a CSS preprocessor, to take advantage of the variables, mixins, and more used to build Bootstrap's CSS. {{_i}}Customize and extend Bootstrap with LESS, a CSS preprocessor, to take advantage of the variables, mixins, and more used to build Bootstrap's CSS.{{/i}}Using LESS with Bootstrap
- {{_i}}Using LESS with Bootstrap{{/i}}
+
Bootstrap is made with LESS at it's core, a dynamic stylesheet language created by Alexis Sellier. It makes developing systems-based CSS faster, easier, and more fun.
+{{_i}}Bootstrap is made with LESS at it's core, a dynamic stylesheet language created by Alexis Sellier. It makes developing systems-based CSS faster, easier, and more fun.{{/i}}
As an extension of CSS, LESS includes variables, mixins for reusable snippets of code, operations for simple math, nesting, and even color functions.
+{{_i}}As an extension of CSS, LESS includes variables, mixins for reusable snippets of code, operations for simple math, nesting, and even color functions.{{/i}}
Visit the official website at http://lesscss.org to learn more.
+{{_i}}Visit the official website at http://lesscss.org to learn more.{{/i}}
Managing colors and pixel values in CSS can be a bit of a pain, usually full of copy and paste. Not with LESS though—assign colors or pixel values as variables and change them once.
+{{_i}}Managing colors and pixel values in CSS can be a bit of a pain, usually full of copy and paste. Not with LESS though—assign colors or pixel values as variables and change them once.{{/i}}
Those three border-radius declarations you need to make in regular ol' CSS? Now they're down to one line with the help of mixins, snippets of code you can reuse anywhere.
+{{_i}}Those three border-radius declarations you need to make in regular ol' CSS? Now they're down to one line with the help of mixins, snippets of code you can reuse anywhere.{{/i}}
Make your grid, leading, and more super flexible by doing the math on the fly with operations. Multiple, divide, add, and subtract your way to CSS sanity.
+{{_i}}Make your grid, leading, and more super flexible by doing the math on the fly with operations. Multiple, divide, add, and subtract your way to CSS sanity.{{/i}}
Variable | -Value | -Usage | +{{_i}}Variable{{/i}} | +{{_i}}Value{{/i}} | +{{_i}}Usage{{/i}} |
---|---|---|---|---|---|
@linkColor |
#0069d6 | -Default link text color | +{{_i}}Default link text color{{/i}} | ||
@linkColorHover |
darken(@linkColor, 15) |
- Default link text hover color | +{{_i}}Default link text hover color{{/i}} |
Method | -Steps | +{{_i}}Method{{/i}} | +{{_i}}Steps{{/i}} |
---|---|---|---|
Node with makefile | +{{_i}}Node with makefile{{/i}} |
- Install the LESS command line compiler with npm by running the following command: +{{_i}}Install the LESS command line compiler with npm by running the following command:{{/i}} $ npm install less- Once installed just run Additionally, if you have watchr installed, you may run {{_i}}Once installed just run {{_i}}Additionally, if you have watchr installed, you may run |
Javascript | +{{_i}}Javascript{{/i}} |
- Download the latest Less.js and include the path to it (and Bootstrap) in the {{_i}}Download the latest Less.js and include the path to it (and Bootstrap) in the <link rel="stylesheet/less" href="/path/to/bootstrap.less"> <script src="/path/to/less.js"></script>- To recompile the .less files, just save them and reload your page. Less.js compiles them and stores them in local storage. +{{_i}}To recompile the .less files, just save them and reload your page. Less.js compiles them and stores them in local storage.{{/i}} |
Command line | +{{_i}}Command line{{/i}} |
- Install the LESS command line tool via Node and run the following command: +{{_i}}Install the LESS command line tool via Node and run the following command:{{/i}} $ lessc ./lib/bootstrap.less > bootstrap.css- Be sure to include {{_i}}Be sure to include |
|
Unofficial Mac app | +{{_i}}Unofficial Mac app{{/i}} |
- The unofficial Mac app watches directories of .less files and compiles the code to local files after every save of a watched .less file. -If you like, you can toggle preferences in the app for automatic minifying and which directory the compiled files end up in. +{{_i}}The unofficial Mac app watches directories of .less files and compiles the code to local files after every save of a watched .less file.{{/i}} +{{_i}}If you like, you can toggle preferences in the app for automatic minifying and which directory the compiled files end up in.{{/i}} |
|
Crunch | -Crunch is a great looking LESS editor and compiler built on Adobe Air. | +{{_i}}Crunch is a great looking LESS editor and compiler built on Adobe Air.{{/i}} | |
CodeKit | -Created by the same guy as the unofficial Mac app, CodeKit is a Mac app that compiles LESS, SASS, Stylus, and CoffeeScript. | +{{_i}}Created by the same guy as the unofficial Mac app, CodeKit is a Mac app that compiles LESS, SASS, Stylus, and CoffeeScript.{{/i}} | |
Simpless | -Mac, Linux, and PC app for drag and drop compiling of LESS files. Plus, the source code is on GitHub. | +{{_i}}Mac, Linux, and PC app for drag and drop compiling of LESS files. Plus, the source code is on GitHub.{{/i}} |