Skip to content

archived-shomeya/bootstrap-stylus

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

HTML, CSS, and JS toolkit from Twitter

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 94.7%
  • JavaScript 5.3%