stylejs

0.0.6 • Public • Published

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

/stylejs/

    Package Sidebar

    Install

    npm i stylejs

    Weekly Downloads

    3

    Version

    0.0.6

    License

    MIT

    Last publish

    Collaborators

    • deam