Skip to content

insertmode/stylify

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stylify

browserify v2 plugin for stylus. (this fork adds support for nib)

NPM

unstable

Example Usage

Usage is very simple when combined with the insert-css (or similar) module. Consider the following example, which dynamically creates a couple of div tags, and dynamically assigned styles:

var insertCss = require('insert-css');
var crel = require('crel');

// create some dom elements to demo our styles
var elements = ['square', 'rect'].map(function(cls) {
  return crel('div', { class: 'box ' + cls });
}).forEach(document.body.appendChild.bind(document.body));

// insert our stylus css into our app
insertCss(require('./simple.styl'));

You can see the final statement uses a familar node require call to bring in a stylus stylesheet:

sidelength = 40px
boxborder = black

body
  margin 0
  padding 0

.box
  border: 1px solid boxborder
  margin: 5px

.square
  width: sidelength
  height: sidelength

.rect
  width: sidelength * 2
  height: sidelength

License(s)

MIT

Copyright (c) 2014 Damon Oehlman damon.oehlman@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

browserify plugin for stylus

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 87.6%
  • CSS 12.4%