58 lines
859 B
CSS
58 lines
859 B
CSS
|
|
.fieldWithErrors {
|
|
padding: 2px;
|
|
margin: 0px;
|
|
background-color: red;
|
|
display: table;
|
|
}
|
|
|
|
#errorExplanation {
|
|
width: 400px;
|
|
border: 0;
|
|
padding: 7px;
|
|
padding-bottom: 3px;
|
|
margin-bottom: 0px;
|
|
/*background-color: #f0f0f0;*/
|
|
}
|
|
|
|
#errorExplanation h2 {
|
|
text-align: left;
|
|
font-weight: bold;
|
|
padding: 5px 5px 10px 26px;
|
|
font-size: 1em;
|
|
margin: -7px;
|
|
background: url(../images/alert.png) no-repeat 6px 6px;
|
|
}
|
|
|
|
#errorExplanation p {
|
|
color: #333;
|
|
margin-bottom: 0;
|
|
padding: 5px;
|
|
}
|
|
|
|
#errorExplanation ul li {
|
|
font-size: 1em;
|
|
list-style: none;
|
|
margin-left: -16px;
|
|
}
|
|
|
|
div.uploadStatus {
|
|
margin: 5px;
|
|
}
|
|
|
|
div.progressBar {
|
|
margin: 5px;
|
|
}
|
|
|
|
div.progressBar div.border {
|
|
background-color: #fff;
|
|
border: 1px solid grey;
|
|
width: 100%;
|
|
}
|
|
|
|
div.progressBar div.background {
|
|
background-color: #333;
|
|
height: 18px;
|
|
width: 0%;
|
|
}
|