"Custom Progress Bar"
Bootstrap 3.3.0 Snippet by thndev

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ----------> <div class="container mainBody"> <div class="row"> <div class="col-xs-12"> <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width:30%"> <span>30% Complete</span> </div> </div> </div> </div> </div>
.mainBody { padding-top: 50px; } .progress { background-color: #000000; border: 1px solid #7aff66; } .progress-bar { background-color: #c4ffbc; } .progress-bar span { color: #000000; }

Related: See More


Questions / Comments: