mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
41 lines
518 B
CSS
41 lines
518 B
CSS
******************************************************************************/
|
|
|
|
/* From http://www.quirksmode.org/css/forms.html*/
|
|
.form_label .form_input{
|
|
display: block;
|
|
/*width: 150px;*/
|
|
float: left;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.form_input{
|
|
width: 500px;
|
|
}
|
|
|
|
.form_label {
|
|
text-align: right;
|
|
width: 75px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.form_br {
|
|
clear: left;
|
|
}
|
|
|
|
.value{
|
|
display: inline-block;
|
|
width: 100px;
|
|
}
|
|
|
|
.operation{
|
|
width: 150px;
|
|
}
|
|
|
|
.link{
|
|
text-decoration: underline
|
|
}
|
|
.link:hover{
|
|
cursor:pointer;
|
|
}
|
|
|