BootStrap - Wizard Breadcrumb

https://github.com/twitter/bootstrap/issues/1982

HTML

<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap.js"></script>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<h3>Wizard</h3>
<div class="wizard">
    <a href="#">Lead</a>
    <a href="#">Pitch</a>
    <a href="#" class="current">Negotiation</a>
    <a href="#">Closing</a>
    <a href="#">Won</a>
</div>

<div class="wizard"> <a href="#">Lead</a>
 <a href="#">Pitch</a>
 <a href="#" class="current">Negotiation</a>
 <a href="#">Closing</a>
 <a href="#">Won</a>

</div>
<div class="wizard"> <a href="#" class="current">Lead</a>
 <a href="#">Pitch</a>
 <a href="#">Negotiation</a>
 <a href="#">Closing</a>
 <a href="#">Won</a>

</div>
<div class="wizard"> <a href="#">Lead</a>
 <a href="#">Pitch</a>
 <a href="#" class="current">Negotiation</a>
 <a href="#">Closing</a>
 <a href="#">Won</a>

</div>
<div class="wizard"> <a href="#">Lead</a>
 <a href="#">Pitch</a>
 <a href="#">Negotiation</a>
 <a href="#" class="current">Closing</a>
 <a href="#">Won</a>

</div>

CSS

body { margin: 20px; }

.wizard {
    margin-bottom: 10px;
}

.wizard a {
    padding: 10px 20px 10px 40px;
    margin-right: 0px;
    background: #efefef;
    position: relative;
    display: inline-block;
    text-decoration:none;
    font-family: "helvetica";
}
.wizard a:hover{
    color:#CA0002;
}
.wizard a:before {
    width: 0;
    height: 0;
    border-top: 20px inset transparent;
    border-bottom: 20px inset transparent;
    border-left: 20px solid #fff;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}
.wizard a:after {
    width: 0;
    height: 0;
    border-top: 20px inset transparent;
    border-bottom: 20px inset transparent;
    border-left: 20px solid #efefef;
    position: absolute;
    content: "";
    top: 0;
    right: -20px;
    z-index: 2;
}
.wizard a:first-child:before,
.wizard a:last-child:after {
    border: none;
}
.wizard a:first-child {
    -webkit-border-radius: 4px 0 0 4px;
       -moz-border-radius: 4px 0 0 4px;
            border-radius: 4px 0 0 4px;
}
.wizard a:last-child {
    -webkit-border-radius: 0 4px 4px 0;
       -moz-border-radius: 0 4px 4px 0;
            border-radius: 0 4px 4px 0;
}

.wizard .current {
    background: #007ACC;
    color: #fff;
}
.wizard .current:hover{
    color:#d1d1d1;
}
.wizard .current:after {
    border-left-color: #007ACC;
}