"Progress bar with two color"
Bootstrap 3.0.0 Snippet by manish Jadhav

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> <div class="col-md-3"> <div class="widget widget-black shadow"> <div class="widget-title">App Users</div> <div> <span class="pull-right"> <h3 class="" style="color: white;">80<i class="fa fa-apple " style="color: #D3D3D3;"></i></h3> </span> <span class="pull-left text-warning"> <h3 class="" style="color: white;"><i class="fa fa-android text-success1"></i>20</h3> </span> </div> <div style="clear: both;"></div> <div class="" style="max-height: 5px;"> <div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" style="width:20%"> <strong style="color: black;">20 %</strong> </div> <div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" style="width:80%"> <strong style="color: black;">80 %</strong> </div> </div> <div class="widget-controls hidden"> <a href="#" class="widget-control-right"><span class="fa fa-times"></span></a> </div> </div> </div>
.widget { width: 100%; float: left; margin: 0px; list-style: none; text-decoration: none; -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2); box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2); color: #FFF; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; padding: 15px 10px; margin-bottom: 20px; min-height: 120px; position: relative; } .widget.widget-black { background: #000; } .widget .widget-title, .widget .widget-subtitle, .widget .widget-int, .widget .widget-big-int { width: 100%; float: left; text-align: center; } .text-success1{color:green;} .widget .widget-title { font-size: 16px; font-weight: 600; margin-bottom: 5px; line-height: 20px; text-transform: uppercase; }

Related: See More


Questions / Comments: