34 lines
412 B
CSS
34 lines
412 B
CSS
.full-width{
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
form{
|
|
margin-top: 7px;
|
|
}
|
|
|
|
.progressPct{
|
|
display: inline-block;
|
|
width: 80px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.progressBar{
|
|
width: calc(100% - 100px);
|
|
}
|
|
|
|
button{
|
|
margin: 20px 0px 20px 20px;
|
|
}
|
|
|
|
.first{
|
|
margin-left: 0px;
|
|
}
|
|
|
|
.errorMessages{
|
|
color: white;
|
|
background-color: rgb(255,90,90);
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
margin-bottom: 5px;
|
|
} |