JSFiddle - React, Tailwind, and code Playground

by Nathan Apple

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<div class="row-fluid" style=" border: 5px red solid;">
    <div class="span12" style=" border: 5px green solid;">
        <div class="grid simple " style=" border: 5px blue solid;">
            <div class="grid-title">
            </div>
                <div class="grid-body table_highlight" style="overflow:visible; border: 5px yellow solid;">
                <table class="table table-striped" id="example2">
                    <thead>
                        <tr>
                            <th></th>
                        </tr>
                    </thead>
                    <tbody>
                            <tr> 
                                <td>
                                    <div class="btn-group">
                                        <a class="btn btn-info dropdown-toggle btn-demo-space" data-toggle="dropdown" href="#"> Info <span class="caret"></span> </a>
                                        <ul class="dropdown-menu">
                                            <li><a href="#">Action</a></li>
                                            <li><a href="#">Another action</a></li>
                                            <li><a href="#">Something else here</a></li>
                                            <li><a href="#">Separated link</a></li>
                                        </ul>
                                    </div>
                                </td>
                            </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
</div>

CSS

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
:-moz-placeholder {
  color: '#333843';
}
::-moz-placeholder {
  color: '#333843';
  opacity: 1;
}
:-ms-input-placeholder {
  color: '#333843';
}
::-webkit-input-placeholder {
  color: '#333843';
}
html {
  font-size: 100%;
  height: 100%;
}
body {
  background-color: #1b1e24;
  color: #6f7b8a;
  font-family: 'Arial';
  font-size: 13px;
  padding: 0px !important;
  margin: 0px !important;
  line-height: 1.5;
  font-style: normal;
  font-weight: normal;
}

.page-container {
  margin: 0px;
  padding: 0px;
  position: relative;
  height: 100%;
}
.page-content {
  margin-top: 0px;
  padding: 0px;
  background-color: #e5e9ec;
  overflow: auto;
  position: relative;
      padding-bottom: 30px;

}
.page-content .content, .navHeader {
  padding-left: 26px;
  padding-right: 26px;
}
.page-content .content {
  padding-top: 83px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-family: 'Open Sans';
  font-weight: 300;
  color: #505458;
}
h1 {
  line-height: 43px;
}
h2 {
  line-height: 35px;
}
h3 {
  line-height: 30px;
}
h4 {
  line-height: 22px;
}
a {
  text-shadow: none !important;
  color: #0d638f;
  transition: color 0.1s linear 0s, background-color 0.1s linear 0s !important;
}
a,
a:focus,
a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}
i {
  font-size: 14px;
}
label {
  display: block;
  margin-bottom: 5px;
}
ul > li {
  padding-left: 6px;
  line-height: 20px;
}
address {
  margin-bottom: 0px;
}
blockquote {
  padding: 0 0 0 18px;
  border-left: 5px solid #EEEEEE;
}
.semi-bold {
  font-weight: 600;
}
hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #E0DFDF;
  border-bottom: 1px solid #FEFEFE;
}
[class^="icon-"],
[class^="icon-"]:hover {
  background: none !important;
}
.page-title {
  padding: 0px;
  letter-spacing: -1px;
  display: inline-block;
  color: #666;
  margin: 0 0 10px;
  font-weight: 300;
  font-family: 'Open Sans';
}
.page-title h3 {
  display:...