stylejs
v0.0.6
Published
Style with JS
Downloads
2
Readme
StyleJS
// 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;'
);