JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://i.icomoon.io/public/temp/38078e65f4/UntitledProject/style.css">
<html><body>


<nav class="navbar navbar-inverse">
  <div class="container-fluid">
   <a style="background-color: #34495e" class="navbar-brand active" href="#"><span class="icon-brand same"></span></a>
        <ul class="nav navbar-nav navbar-right">
        <li class="dropdown active">
           <a href="#" class="dropdown-toggle" data-toggle="dropdown">Rupam Verma<b class="caret"></b></a>
               <ul class="dropdown-menu">
                <li><a href="new.html" target="_blank"><h1 class="mail">R</h1><h5>Rupam varma</h5><br><h5 style="float: right;"><a href="https://plus.google.com/u/0/105904544623478465796"> [email protected]</a></h5></li>
             </ul>
        </div>
    </nav></a></li></ul></li></ul></div></nav>
     <div class="row">
     <div class="col-md-12">
    <h3 class="header">Menu</h3></div>
    <div class="col-md-1">
    <div class="icon-bar">
	   <a class="active" href="#"><span class="icon-circle"></span></a> 
	  <a href="#"><span class="icon-toggle-off"></span></i></a> 
	  <a href="#"><span class="icon-checklist"></span></a></div></div>
 <div class="col-md-11">
		<div class="progressionbar">
			<ul class="">
			<div class="fs1">
			<li><span class="icon-gift first"></span><h3 style="text-align: center">gift</h3></li>
			<li><span class="icon-truck2 second"> </span><h3 style="text-align: center;"> car</h3></li>
			<li> <span class="icon-profile-male third"></span><h3 style="text-align: center;"> user</h3></li>
			</div>
			</ul>
			</div></div></div></div>
</body>
</html>

CSS

body{
			background-color: #34495e;
		}
		.mail{
			border: 1px solid #d35400;
			border-radius: 50%;
		
			border-width: 50%;
			float: left;
			background-color: #d35400;
			color: white;
		}
		.navbar-inverse .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    background-color: #16a085;


}
.navbar-inverse{
	background-color: #1abc9c;


}.icon-bar {
    width: 90px;
    background-color: #555;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 36px;
    background-color:  #34495e;
}
.same{
	float: left;
	font-size: 32px;
	
}
.icon-bar a:hover {
   color: #1abc9c;
}

.active {
   color: #1abc9c !important;
}
.header{

	color: white;
	background-color: #34495e;
	margin-left: 2%;
}
.fs1 {
  font-size: 32px;
}
.container{
	width: 100%;
}
.progressionbar li{
	list-style-type: none;
	width: 33.33%;
	float: left;
	position: relative;
}
.progressionbar li >span{

	width: 20%;
	height:30%;
	
	border:2px solid transparent;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	padding: 5%;
	background-color: white;
	box-shadow: rgba(0, 0, 0, 0.792157) 3px 3px 3px 0;
	
}
.progressionbar li:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 6px;
	background-color: #9b59b6;
	top: 35%;
	left: -50%;
	z-index: -1;
	}
	 
.first{
	animation-duration: 10s;
  animation-name: example1;
  animation-iteration-count: infinite;
  animation-delay:2s;
}
.second{
	animation-duration: 10s;
  animation-name: example2;
  animation-iteration-count: infinite;
  animation-delay:2s;

}
.third{
	animation-name: example3;
animation-duration: 10s;
 animation-iteration-count: infinite;
 animation-delay: 2s;
}


@-webkit-keyframes example1 {
     0% {
    transform: scale(0.1);
    opacity: 0;
    background-color: white;
  }
  12% {
    transform: scale(1.2);
    opacity: 1;
  }
  20%...