"8 Process Steps"
Bootstrap 4.0.0 Snippet by hwaterman

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.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 ----------> <div class="stepwizard"> <div class="stepwizard-row"> <div class="stepwizard-step"> <button type="button" class="btn btn-default btn-circle complete"></button> <p>Contact Info</p> </div> <div class="stepwizard-step"> <button type="button" class="btn btn-primary btn-circle complete"></button> <p>ABC</p> </div> <div class="stepwizard-step"> <button type="button" class="btn btn-default btn-circle complete"></button> <p>Minimum Qualifications</p> </div> <div class="stepwizard-step"> <button type="button" class="btn btn-default btn-circle complete"></button> <p>Questions</p> </div> <div class="stepwizard-step"> <button type="button" class="btn btn-default btn-circle complete"></button> <p>Education</p> </div> <div class="stepwizard-step"> <button type="button" class="btn btn-default btn-circle complete"></button> <p>Experience</p> </div> <div class="stepwizard-step"> <button type="button" class="btn btn-primary btn-circle active"></button> <p>Application Package</p> </div> <div class="stepwizard-step"> <button type="button" class="btn btn-default btn-circle" disabled="disabled"></button> <p>Test Components</p> </div> </div> </div>
body{margin:40px;} .stepwizard-step p { margin-top: 10px; } .stepwizard-row { display: table-row; } .stepwizard { display: table; width: 100%; position: relative; } .stepwizard-step button[disabled] { opacity: 1 !important; filter: alpha(opacity=100) !important; background-color: #ccc; } .stepwizard-row:before { top: 10px; bottom: 0; position: absolute; content: " "; width: 100%; height: 2px; background-color: #ccc; z-order: 0; } .stepwizard-step { display: table-cell; text-align: center; position: relative; font-size: 12px; } .stepwizard-step p {max-width: 75px; text-align: center; margin: 5px auto;} .btn-circle { width: 20px; height: 20px; text-align: center; padding: 2px 0; font-size: 12px; line-height: 1.428571429; background: #fbbd19; border-radius: 50px; } .btn-circle.complete { background-color: green; } .btn-circle.active { background-color: #fbbd19; border-color: #0275d8; border-width: 3px; color: #fff; }

Related: See More


Questions / Comments: