JSFiddle - React, Tailwind, and code Playground

by Alex Slepenkov

HTML

<div>
  <div class="wr">
    <a></a>
    <a></a>
    <a></a>
    <a></a>
    <a></a>
  </div>

  <hr>
</div>

CSS

body {
  background: #0049ef;
}

div {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.wr{
   background: #0049ef;
   display:inline-block;
   width:20%;
}
a {
  background: #005EA8;
  text-indent: -9999px;
  border: 1px solid #EEE2E2;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
}

hr {
  margin-top: -10px;
  position:relative;
  z-index:-1;
}