progress manual
by jayhilwig
HTML
<div class="home container">
<div class="progress-bar green">
<span style="width: 40%"></span>
</div>
<div class="progressManual text">
Step 1
</div>
</div>
CSS
div.progressManual {}
.container {
border: 1px solid #111111;
border-radius: 4px;
width: 312px;
padding: 12px;
}
.progress-bar {
background-color: #f4f4f4;
height: 13px;
margin: 10px 0;
box-shadow: inset 0px 1px #959595, inset 0px 2px #e6e6e6;
border: 1px solid #d4d4d4;
}
.progress-bar span {
display: inline-block;
height: 11px;
border: 1px solid #59974d;
}
.green span {
background-color: #87d778;
background-image: linear-gradient(180deg, #87d778, #59ad46);
}
.text {
font-size: 13px;
font-family: 'AmazonEmber-Regular', 'Amazon Ember', sans-serif;
text-align: center;
}