73 lines
821 B
CSS
73 lines
821 B
CSS
|
|
.required {
|
||
|
|
color: #CC0000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.guidelines {
|
||
|
|
position:relative;
|
||
|
|
font-weight:normal;
|
||
|
|
font-size:14px;
|
||
|
|
right:20px;
|
||
|
|
left:9px;
|
||
|
|
color:#4C4C4C;
|
||
|
|
padding:1px 0 3px 8px;
|
||
|
|
margin: 0;
|
||
|
|
width:90%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.error
|
||
|
|
{
|
||
|
|
position:relative;
|
||
|
|
font-weight:normal;
|
||
|
|
font-size:14px;
|
||
|
|
left:9px;
|
||
|
|
padding:1px 8px 3px 8px;
|
||
|
|
color:#CC0000 !important;
|
||
|
|
margin: 0;
|
||
|
|
width:90%;
|
||
|
|
}
|
||
|
|
|
||
|
|
ul.error_message
|
||
|
|
{
|
||
|
|
background-color:#FFDFDF !important;
|
||
|
|
border-color:#c7a9aa;
|
||
|
|
}
|
||
|
|
|
||
|
|
ul.success_message
|
||
|
|
{
|
||
|
|
background-color:#ccffcc !important;
|
||
|
|
border-color:#89ba8a;
|
||
|
|
}
|
||
|
|
|
||
|
|
input.small
|
||
|
|
{
|
||
|
|
width:25%;
|
||
|
|
}
|
||
|
|
|
||
|
|
input.medium
|
||
|
|
{
|
||
|
|
width:50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
input.large
|
||
|
|
{
|
||
|
|
width:99%;
|
||
|
|
}
|
||
|
|
|
||
|
|
textarea.small
|
||
|
|
{
|
||
|
|
width:98%;
|
||
|
|
height:2.5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
textarea.medium
|
||
|
|
{
|
||
|
|
width:98%;
|
||
|
|
height:5em;
|
||
|
|
}
|
||
|
|
|
||
|
|
textarea.large
|
||
|
|
{
|
||
|
|
width:98%;
|
||
|
|
height:7.5em;
|
||
|
|
}
|