bootstrap3-stylus

0.1.0 • Public • Published

bootstrap-stylus

A basic port of the Twitter Bootstrap CSS framework to stylus. Ideal for node.js apps using connect or express.

To learn more about using the framework see the bootstrap docs at http://twitter.github.com/bootstrap.

Use

Javascript - add just like you'd use nib:

var bootstrap = require('bootstrap-stylus'),
       stylus = require('stylus');
 
function compile(str, path) {
  return stylus(str)
    .set('filename', path)
    .use(bootstrap());
}
 
app.use(stylus.middleware({
  src: __dirname + '/public',
  compile: compile
}));

in your .style files:

@import bootstrap

or set variables before importing:

$linkColor = red
@import bootstrap

You can also import individual files by specifying their filename:

@import reset

Authors

Twitter Bootstrap by:

Mark Otto

Jacob Thornton

Port to stylus by

Michael Prasuhn

License

Copyright 2011 Twitter, Inc.

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Dependents (0)

Package Sidebar

Install

npm i bootstrap3-stylus

Weekly Downloads

3

Version

0.1.0

License

none

Last publish

Collaborators

  • mcontagious