"Process steps list"
Bootstrap 3.1.0 Snippet by escapedlion

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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"> <div class="process"> <div class="process-row"> <div class="process-step"> <button type="button" class="btn btn-primary btn-circle btn-xl"><i class="fa fa-credit-card fa-lg"></i></button> <p>Personal data</p> </div> <div class="process-step"> <button type="button" class="btn btn-default btn-circle btn-xl"><i class="fa fa-credit-card"></i></button> <p>We confirm you</p> </div> <div class="process-step"> <button type="button" class="btn btn-default btn-circle btn-xl"><i class="fa fa-credit-card"></i></button> <p>Tiger comes</p> </div> <div class="process-step"> <button type="button" class="btn btn-default btn-circle btn-xl"><i class="fa fa-credit-card"></i></button> <p>You Pay</p> </div> </div> </div>
@import url(http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css); @import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700); body{margin:40px;} .stepwizard-step p { margin-top: 10px; } .process-row { display: table-row; } .process { display: table; width: 100%; position: relative; } .process-step button[disabled] { opacity: 1 !important; filter: alpha(opacity=100) !important; } .process-row:before { top: 50px; bottom: 0; position: absolute; content: " "; width: 100%; height: 1px; background-color: #ccc; z-order: 0; } .process-step { display: table-cell; text-align: center; position: relative; } .process-step p { margin-top:10px; } body{margin:40px;} .btn-circle { width: 30px; height: 30px; text-align: center; padding: 6px 0; font-size: 12px; line-height: 1.428571429; border-radius: 15px; } .btn-circle.btn-xl { width: 70px; height: 70px; padding: 10px 16px; font-size: 24px; line-height: 1.33; border-radius: 35px; } .colorCycle { background-color: rgb(50, 118, 177); border: 0; padding-top: 5px; padding-right: 7px; padding-bottom: 7px; padding-left: 7px; color: #FFF; text-align: center; animation-name: homeCycle; animation-duration:6s; animation-direction:alternate; animation-iteration-count:infinite; -webkit-animation-name: homeCycle; -webkit-animation-duration:6s; -webkit-animation-direction:alternate; -webkit-animation-iteration-count:infinite; } @keyframes homeCycle { 0% {background-color: rgb(71, 164, 71);} 25% {background-color: rgb(57, 179, 215);} 50% {background-color: rgb(237, 156, 40);} 75% {background-color: rgb(210, 50, 45);} } @-webkit-keyframes homeCycle { 0% {background-color:#006;} 25% {background-color:#060;} 50% {background-color:#CC3200;} 75% {background-color:#603;} }

Related: See More


Questions / Comments: