JSFiddle - React, Tailwind, and code Playground
HTML
<script src="<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">"></script>
<script src="<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>"></script>
<div class="checkbox">
<label>
<input type="checkbox" value="" id="test">
Option one
</input>
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value="" id="shadow-checkbox">
Option one
</input>
</label>
</div>
CSS
input[type="checkbox"]{
width: 20px;
height: 20px;
}
#test{
border: 1px solid #59A29B;
background color: #FFFFFF;
}
#shadow-checkbox{
box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
}