JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://deamme.github.io/StyleJS/style.js"></script>

<div class="box"></div>
<div id="box">HI</div>
<div class="box"></div>

JavaScript

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;'
);