Extend Plusstrap to take advantage of included styles and components, as well as LESS variables and mixins.
Plusstrap is made with LESS at its core, a dynamic stylesheet language created by Alexis Sellier. It makes developing systems-based CSS faster, easier, and more fun.
One of Twitter Bootstrap's creators wrote a quick blog post about this, summarized here:
As an extension of CSS, LESS includes variables, mixins for reusable snippets of code, operations for simple math, nesting, and even color functions.
Visit the official website at http://lesscss.org to learn more.
Since our CSS is written with Less and utilizes variables and mixins, it needs to be compiled for final production implementation. Here's how.
Install the LESS command line compiler, JSHint, Recess, and uglify-js globally with npm by running the following command:
$ npm install -g less jshint recess uglify-js
Once installed just run make
from the root of your plusstrap directory and you're all set.
Additionally, if you have watchr installed, you may run make watch
to have plusstrap automatically rebuilt every time you edit a file in the plusstrap lib (this isn't required, just a convenience method).
Install the LESS command line tool via Node and run the following command:
$ lessc ./less/plusstrap.less > plusstrap.css
Be sure to include --compress
in that command if you're trying to save some bytes!
Download the latest Less.js and include the path to it (and Plusstrap) in the <head>
.
<link rel="stylesheet/less" href="/path/to/plusstrap.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.
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.
Crunch is a great looking LESS editor and compiler built on Adobe Air.
Created by the same guy as the unofficial Mac app, CodeKit is a Mac app that compiles LESS, SASS, Stylus, and CoffeeScript.
Mac, Linux, and Windows app for drag and drop compiling of LESS files. Plus, the source code is on GitHub.
Quickly start any web project by dropping in the compiled or minified CSS and JS. Layer on custom styles separately for easy upgrades and maintenance moving forward.
Download the latest compiled Plusstrap and place into your project. For example, you might have something like this:
app/ ├── layouts/ └── templates/ public/ ├── css/ │ ├── plusstrap.min.css ├── js/ │ ├── plusstrap.min.js └── img/ ├── glyphicons-halflings.png └── glyphicons-halflings-white.png
Copy the following base HTML to get started.
<html> <head> <title>Plusstrap 101 Template</title> <!-- Plusstrap --> <link href="public/css/plusstrap.min.css" rel="stylesheet"> </head> <body> <h1>Hello, world!</h1> <!-- Plusstrap --> <script src="public/js/plusstrap.min.js"></script> </body> </html>
Work in your custom CSS, JS, and more as necessary to make Plusstrap your own with your own separate CSS and JS files.
<html> <head> <title>Plusstrap 101 Template</title> <!-- Plusstrap --> <link href="public/css/plusstrap.min.css" rel="stylesheet"> <!-- Project --> <link href="public/css/application.css" rel="stylesheet"> </head> <body> <h1>Hello, world!</h1> <!-- Plusstrap --> <script src="public/js/plusstrap.min.js"></script> <!-- Project --> <script src="public/js/application.js"></script> </body> </html>