JSFiddle - React, Tailwind, and code Playground

by Dhanck

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="container">
  <br>
  <div class="center">
    <input type="text" class="form-control" aria-label="..." placeholder="FireTV IP">
    <br>
    <div class="row">
      <span class="glyphicon glyphicon-off white circle"></span>
      <span class="glyphicon glyphicon-tasks white circle"></span>
      <span class="glyphicon glyphicon-globe white circle"></span>
    </div>
    <div class="row ">
      <div class="ball-center">
        <span class="glyphicon glyphicon-chevron-up white circle"></span>
      </div>
    </div>
    <div class="row">
      <span class="glyphicon glyphicon-chevron-left white circle"></span>
      <span class="glyphicon glyphicon-screenshot white circle"></span>
      <span class="glyphicon glyphicon-chevron-right white circle"></span>
    </div>
    <div class="row">
      <div class="ball-center">
        <span class="glyphicon glyphicon-chevron-down white circle"></span>
      </div>
    </div>
    <br>
    <div class="row">
      <span class="glyphicon glyphicon-arrow-left white circle"></span>
      <span class="glyphicon glyphicon-home white circle"></span>
      <span class="glyphicon glyphicon-menu-hamburger white circle"></span>
    </div>
    <div class="row">
      <span class="glyphicon glyphicon-backward white circle"></span>
      <span class="glyphicon glyphicon-forward white circle"></span>
      <div class="circle twoin1">
        <span class="glyphicon glyphicon-play white"></span>
        <span class="glyphicon glyphicon-pause white"></span>
      </div>
    </div>
    <div class="row pull-right">
      <span class="glyphicon glyphicon-ban-circle white circle"></span>
      <span class="glyphicon glyphicon-remove-circle white circle"></span>
    </div>
  </div>
</div>

CSS

body {
  background-color: #464648;
  margin-top: 10px;
}

.container {
  width: 326px;
  /*border:1px solid #313131;
  border-radius:8px;*/
}

.white {
  color: #ffffff;
}

.ball-center {
  margin-left: calc(50% - 30px);
}

.circle {
  padding: 15px;
  border: 1px solid #272728;
  border-radius: 50%;
  background-color: #313131;
  margin: 5px;
}
.circle:hover {
  background-color: #fff;
  color:#999;
}
.center {
  margin: auto;
  width: 50%;
}

.twoin1 {
  width: 54px;
  height: 46px;
  padding: 16px 10px;
  font-size: 10px;
  display: inline;
  font-size: 10px;
}