JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 
    <style media="screen" type="text/css">
        @font-face {
    font-family: 'BebasNeueRegular';
    src: url('fonts/BebasNeue-webfont.eot');
    src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeue-webfont.woff') format('woff'),
         url('fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* CSS reset */
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
    margin:0;
    padding:0;
}
fieldset,img { 
    border:0;
}
ol,ul {
    list-style:none;
}
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:normal;
}
/* General Demo Style */
body{
    font-family: Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
    background: #f8f8f8 url(../images/bg.jpg) repeat top left;
    font-weight: 400;
    font-size: 15px;
    color: #416c80;
    overflow-y: scroll;
    overflow-x: hidden;
}
.ie7 body{
    overflow:hidden;
}
a{
    text-decoration: none;
}
.container{
    width: 100%;
    position: relative;
    text-align: center;
}
.clr{
    clear: both;
}
.container > header{
    padding: 20px 30px 10px 30px;
    margin: 0px 20px 10px 20px;
    position: relative;
    display: block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    text-align: center;
}
.container > header h1{
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 35px;
    line-height: 35px;
    position: relative;
    font-weight: 400;
    color: #186f8f;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    padding: 0px 0px 5px 0px;
}
.container > header h1 span{
    color: #2ea2cd;
    text-shadow: 0px 1px 1px rgba(255,255,255,0.8);
}
.container > header h2, p.info{
    font-size: 16px;
   ...

SCSS

body { min-height: 2000px; }


table {
  font-family: "Comic Sans MS", monospace;
  font-size: 12pt;
  font-weight: normal;
  border-collapse: separate;
  border-spacing: 6px;    
  td, th {
    text-align: center;
  }
  th {
    padding: 0 1em;
    text-transform: uppercase;    
  }
  td {
    padding: 1em;
    border: 1px #bababa solid;
    border-radius: 4px;
  } 
  td.keyboard-nav-active {
    color: white;
    font-size: 1.5em;
    background: red;
  }

}