style.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /* Color easy change */
  2. body, .form, #links a, .form-info {
  3. color: #DF002A;
  4. }
  5. .form-submit, input, select {
  6. background-color: #DF002A;
  7. }
  8. .form-error {
  9. color: red;
  10. font-size: 9pt;
  11. }
  12. .form-submit {
  13. margin: 0;
  14. padding: 0;
  15. width: 310px;
  16. height: 27px;
  17. background-color: #DF002A;
  18. /*background-image: url(/custompages/images/login-form-submit-bg.jpg);*/
  19. color: white;
  20. cursor: pointer;
  21. cursor: hand;
  22. }
  23. /* end easy change */
  24. /* Registration form */
  25. #registration-form-box {
  26. width: 400px;
  27. margin-left: auto;
  28. margin-right: auto;
  29. margin-top: 50px;
  30. border: solid 1px #CCCCCC;
  31. text-align: left;
  32. background-color: white;
  33. }
  34. #registration-form-box .form-submit{
  35. width: 400px;
  36. }
  37. div.row {
  38. clear: both;
  39. padding-top: 5px;
  40. }
  41. div.row div.form_header {
  42. white-space: nowrap;
  43. padding: 2px;
  44. background-color: #f0f0f0;
  45. border: 1px solid #bbb;
  46. }
  47. div.row div.label {
  48. float: left;
  49. width: 53%;
  50. text-align: right;
  51. padding-right:1%
  52. }
  53. div.row div.formw {
  54. width: 46%;
  55. float:left;
  56. }
  57. [dir=ltr] div.row div.label, [dir=rtl] div.row div.formw {
  58. float: left;
  59. text-align: right;
  60. }
  61. [dir=rtl] div.row div.label, [dir=ltr] div.row div.formw {
  62. float: right;
  63. text-align: left;
  64. }
  65. span.form_required {
  66. color: #f00;
  67. }
  68. span.form_error {
  69. color: #f00;
  70. font-size: x-small;
  71. margin: 2px;
  72. }
  73. html, body {
  74. margin: 0;
  75. padding: 0;
  76. }
  77. body {
  78. font-family: "Arial Black",sans-serif;
  79. font-size: 10pt;
  80. width: 100%;
  81. text-align: center;
  82. /*color: #1F3660;*/
  83. /*background-image: url(images/page-background.png);
  84. background-repeat: no-repeat;
  85. background-size: 100%;
  86. */
  87. }
  88. #backgroundimage {
  89. background-attachment:fixed;
  90. width: 100%;
  91. height: 100%;
  92. position: absolute;
  93. left: 0;
  94. top: 30px;
  95. z-index:-1;
  96. }
  97. .backgroundimage {
  98. width: 100%;
  99. height: auto;
  100. }
  101. #wrapper {
  102. position: absolute;
  103. top: 0;
  104. left: 0;
  105. width: 100%;
  106. z-index: 1;
  107. }
  108. #header {
  109. width: 520px;
  110. margin-left: auto;
  111. margin-right: auto;
  112. margin-top: 30px;
  113. }
  114. #footer {
  115. position: relative;
  116. margin-top: 50px;
  117. text-align: center;
  118. }
  119. .form-box {
  120. width: 310px;
  121. margin-left: auto;
  122. margin-right: auto;
  123. margin-top: 50px;
  124. border: solid 1px #CCCCCC;
  125. text-align: left;
  126. background-color: white;
  127. }
  128. .form {
  129. margin-left: 15px;
  130. margin-right: 15px;
  131. margin-top: 30px;
  132. /*color: #1F3660;*/
  133. position: relative;
  134. text-align: left;
  135. }
  136. label {
  137. width: 100px;
  138. float: left;
  139. margin-right: 1em;
  140. display: block;
  141. text-align: right;
  142. line-height: 2ex;
  143. }
  144. input {
  145. text-align: left;
  146. vertical-align: baseline;
  147. margin-bottom: 2em;
  148. width: 150px;
  149. color: white;
  150. /*background-color: #1F3660;*/
  151. border: none;
  152. }
  153. select {
  154. width: 150px;
  155. color: white;
  156. /*background-color: #1F3660;*/
  157. border: none;
  158. margin-bottom: 2em;
  159. }
  160. #links {
  161. margin-left: 15px;
  162. margin-right: 15px;
  163. margin-top: 10px;
  164. margin-bottom: 50px;
  165. /*color: #1F3660;*/
  166. }
  167. #links a {
  168. text-decoration: none;
  169. }
  170. #links a:hover {
  171. text-decoration: underline;
  172. }
  173. span {
  174. margin-right: 30px;
  175. margin-top: 3px;
  176. float: right;
  177. }
  178. .form-info {
  179. /*color: #1F3660;*/
  180. font-size: 9pt;
  181. }