0.0.6 • Published 9 years ago

stylejs v0.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

StyleJS

Build Status

// CDN: http://deamme.github.io/StyleJS/style.js || http://deamme.github.io/StyleJS/style.min.js
// Usage
style.import('url(http://fonts.googleapis.com/css?family=Open+Sans);');

style('div',
    'border: 3px solid red;'
);

style('.box',
    'background: #ccc;' +
    'width: 100px;' +
    'height: 100px;'
);

style('#box',
    'background: #222;' +
    'width: 100px;' +
    'height: 100px;' +
    style.fix('transform: scale(.5);') +
    'color: white;' +
    style._font('50px;', '"Open Sans";') +
    'text-align: center;' +
    'vertical-align: middle;' +
    'line-height: 100px;'
);

JSFiddle