0.2.2 • Published 9 years ago

bootstrap-stylus v0.2.2

Weekly downloads
18
License
-
Repository
github
Last release
9 years ago

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

0.2.2

9 years ago

0.2.1

12 years ago

0.2.0

12 years ago

0.1.0

12 years ago