JSFiddle - React, Tailwind, and code Playground

CSS

@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
article {
  width: 800px;
  margin: 10px auto;
  font-size: 14px;
  font-family: 'Nanum Gothic', sans-serif;
}
article table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
}
article table th, article table td {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(51, 51, 51, 0.4);
}
article table th {
  background-color: rgba(0, 154, 200, 0.5);
  color: #fff;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}
article table td:nth-child(2) {
  text-align: left;
  padding-left: 15px;
}
article table tr:hover {
  background-color: rgba(0, 154, 200, 0.5);
  color: #fff;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */