adjusting the progress bar styling for vcerts

This commit is contained in:
Frances Botsford
2013-08-26 09:56:04 -04:00
parent b5302a192f
commit 770ec2dbb3
2 changed files with 94 additions and 60 deletions

View File

@@ -159,15 +159,45 @@ body.register.verification {
}
.progress {
/* background: transparent url('../images/vcert-steps.png') no-repeat 0 0;
height: 50px;
text-indent: -9999px;
*/
.progress,
.steps {
@include clearfix;
margin-bottom: $baseline;
ol {
margin: 0;
padding: 0;
}
.progress-step {
display: inline-block;
width: 15%;
padding: ($baseline/2) $baseline;
text-align: center;
font-size: 12px;
color: #ccc;
&.current {
color: #008801;
.number {
border: 4px solid #008801;
color: #008801;
}
}
}
.number {
height: 2em;
width: 2em;
display: block;
margin: 0 auto ($baseline/2);
border: 4px solid #ddd;
border-radius: 20px;
line-height: 2em;
text-align: center;
color: #ccc;
}
}