This package has been deprecated

Author message:

Please see bootstrap-styl https://www.npmjs.com/package/bootstrap-styl

bootstrap-stylus

0.2.2 • Public • Published

Deprecated!

This package is deprecated. Please see bootstrap-styl.


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

Readme

Keywords

Package Sidebar

Install

npm i bootstrap-stylus

Weekly Downloads

44

Version

0.2.2

License

none

Last publish

Collaborators

  • mikey_p