42 lines
574 B
CSS
42 lines
574 B
CSS
/*
|
|
* Styles for common form stuff
|
|
*
|
|
*/
|
|
ul.errors {
|
|
margin: 0 0 10px 0;
|
|
padding: 10px;
|
|
background: #990000;
|
|
color: #fff;
|
|
list-style: none;
|
|
}
|
|
ul.errors li {
|
|
}
|
|
div.field {
|
|
float: left;
|
|
width: 100%;
|
|
margin-bottom: 5px;
|
|
}
|
|
div.field-submit {
|
|
clear: both;
|
|
}
|
|
div.field label {
|
|
width: 140px;
|
|
text-align: right;
|
|
display: block;
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
div.field input,
|
|
div.field select,
|
|
div.field .input {
|
|
clear: left;
|
|
}
|
|
|
|
/*
|
|
* Login-specific styles
|
|
*/
|
|
fieldset.login {
|
|
}
|
|
fieldset.login div.field label {
|
|
width: 80px;
|
|
} |