jcadima
9/21/2016 - 5:56 PM

Step Process Form - Cirles

Step Process Form - Cirles

http://bootsnipp.com/snippets/featured/process-steps


<div class="stepwizard">
    <div class="stepwizard-row">
        <div class="stepwizard-step">
            <button type="button" class="btn btn-primary-cta btn-circle" disabled="disabled">STEP 1</button>
            <p>Cart</p>
        </div>
        <div class="stepwizard-step">
            <button type="button" class="btn btn-default btn-circle" disabled="disabled">STEP 2</button>
            <p>Shipping</p>
        </div>
        <div class="stepwizard-step">
            <button type="button" class="btn btn-default btn-circle" disabled="disabled">STEP 3</button>
            <p>Payment</p>
        </div> 
        <div class="stepwizard-step">
            <button type="button" class="btn btn-default btn-circle" disabled="disabled">STEP 4</button>
            <p>Payment</p>
        </div> 
    </div>
</div>





<style>
  
.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;
}

.stepwizard-row:before {
    top: 30px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 10px;
    background-color: #C0A570;
    z-order: 0;
    
}

.stepwizard-step {    
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
  width: 65px;
  height: 65px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 40px;
}

.btn-primary-cta {
    color: #fff;
    background-color: #C0A570;
    border-color: #C0A570;
    font-family: 'Oswald', sans-serif;
}

button.btn.btn-default.btn-circle {
    font-family: 'Oswald', sans-serif;
}  
  
</style>