style1.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. body {
  2. color:#5D536F;
  3. background:url(images/bg3.gif) repeat top left;
  4. padding:0px;
  5. font-size:12px;
  6. font-family: Arial, Helvetica, sans-serif;
  7. }
  8. .form_content{
  9. width:1200px;
  10. height: 50px;
  11. margin:40px auto;
  12. padding:10px;
  13. background:url(images/center_bg3.gif) repeat top left;
  14. }
  15. fieldset{
  16. border:1px #C3B5DF solid;
  17. padding:15px 10px 15px 10px;
  18. margin:0 0 10px 0;
  19. }
  20. legend{
  21. color:#FFFFFF;
  22. background-color:#B495EF;
  23. padding:2px 5px 2px 5px;
  24. }
  25. legend.optional{
  26. color:#ffffff;
  27. background-color:#3BBFBC;
  28. padding:2px 5px 2px 5px;
  29. }
  30. .form-row {
  31. clear: both;
  32. float:left;
  33. padding:5px 5px 5px 5px;
  34. }
  35. .form-row-select {
  36. clear: both;
  37. float:left;
  38. padding:10px 5px 5px 5px;
  39. }
  40. .field-label {
  41. width:150px;
  42. float:left;
  43. line-height:25px;
  44. }
  45. label {
  46. float:left;
  47. color:#5D536F;
  48. }
  49. label.left{
  50. padding:0 20px 0 5px;
  51. float:left;
  52. color:#5D536F;
  53. }
  54. .field-widget {
  55. float:left;
  56. }
  57. input.required{
  58. width:300px;
  59. height:22px;
  60. border-bottom:1px dashed #78639F;
  61. background:none;
  62. border-left:none;
  63. border-right:none;
  64. border-top:none;
  65. border-left-width:2px;
  66. padding:5px 0 0 2px;
  67. float:left;
  68. }
  69. input.optional{
  70. width:300px;
  71. height:22px;
  72. border-bottom:1px dashed #78639F;
  73. background:none;
  74. border-left:none;
  75. border-right:none;
  76. border-top:none;
  77. border-left-width:2px;
  78. padding:5px 0 0 2px;
  79. }
  80. select.validate-selection{
  81. width:305px;
  82. height:28px;
  83. border-bottom:1px dashed #78639F;
  84. background:none;
  85. border-left:none;
  86. border-right:none;
  87. border-top:none;
  88. padding:4px 2px 3px 2px;
  89. float:left;
  90. }
  91. textarea.required{
  92. width:300px;
  93. height:75px;
  94. float:left;
  95. border-bottom:1px dashed #78639F;
  96. background:none;
  97. border-left:none;
  98. border-right:none;
  99. border-top:none;
  100. border-left-width:2px;
  101. }
  102. textarea.optional{
  103. width:300px;
  104. height:75px;
  105. border-bottom:1px dashed #78639F;
  106. background:none;
  107. border-left:none;
  108. border-right:none;
  109. border-top:none;
  110. border-left-width:2px;
  111. }
  112. input.submit{
  113. color:#FFFFFF;
  114. background-color:#B495EF;
  115. padding:2px 5px 2px 5px;
  116. cursor:pointer;
  117. border:none;
  118. }
  119. input.reset{
  120. color:#ffffff;
  121. background-color:#3BBFBC;
  122. cursor:pointer;
  123. padding:2px 5px 2px 5px;
  124. border:none;
  125. }
  126. input.validation-failed, textarea.validation-failed, select.validation-failed {
  127. border: 1px solid #FF9A7F;
  128. background-color:#FFF2EF;
  129. color : #FF3300;
  130. }
  131. input.validation-passed, textarea.validation-passed {
  132. border: 1px solid #00CC00;
  133. color : #000;
  134. }
  135. .validation-advice {
  136. width:50px;
  137. float:left;
  138. margin:0px 0 0 10px;
  139. padding:0px 0 0 25px;
  140. background:url(images/warning.png) no-repeat left;
  141. color:#FF9A7F;
  142. font-size:10px;
  143. }
  144. .custom-advice {
  145. margin: 5px 0;
  146. padding: 5px;
  147. background-color: #C8AA00;
  148. color : #FFF;
  149. font-weight: bold;
  150. }