style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body {
  6. font-family: "Arial Black",sans-serif;
  7. font-size: 10pt;
  8. width: 100%;
  9. text-align: center;
  10. /*background-image: url(images/page-background.png);
  11. background-repeat: no-repeat;
  12. background-size: 100%;
  13. */
  14. }
  15. #backgroundimage {
  16. background-attachment:fixed;
  17. width: 100%
  18. height: 100%
  19. position: absolute;
  20. left: 0;
  21. top: 30px;
  22. z-index:-1;
  23. }
  24. .backgroundimage {
  25. width: 100%;
  26. height: auto;
  27. }
  28. #wrapper {
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. width: 100%;
  33. z-index: 1;
  34. }
  35. #header {
  36. width: 520px;
  37. margin-left: auto;
  38. margin-right: auto;
  39. margin-top: 30px;
  40. }
  41. #footer {
  42. position: relative;
  43. margin-top: 50px;
  44. text-align: center;
  45. }
  46. .form-box {
  47. width: 310px;
  48. margin-left: auto;
  49. margin-right: auto;
  50. margin-top: 50px;
  51. border: solid 1px #CCCCCC;
  52. text-align: left;
  53. background-color: white;
  54. }
  55. .form {
  56. margin-left: 15px;
  57. margin-right: 15px;
  58. margin-top: 30px;
  59. color: #1F3660;
  60. position: relative;
  61. text-align: left;
  62. }
  63. .form-submit {
  64. margin: 0;
  65. padding: 0;
  66. width: 310px;
  67. height: 27px;
  68. background-color: #1F3660;
  69. background-image: url(/custompages/images/login-form-submit-bg.jpg);
  70. color: white;
  71. cursor: pointer;
  72. cursor: hand;
  73. }
  74. label {
  75. width: 100px;
  76. float: left;
  77. margin-right: 1em;
  78. display: block;
  79. text-align: right;
  80. line-height: 2ex;
  81. }
  82. input {
  83. text-align: left;
  84. vertical-align: baseline;
  85. margin-bottom: 2em;
  86. width: 150px;
  87. color: white;
  88. background-color: #1F3660;
  89. border: none;
  90. }
  91. select {
  92. width: 150px;
  93. color: white;
  94. background-color: #1F3660;
  95. border: none;
  96. margin-bottom: 2em;
  97. }
  98. #links {
  99. margin-left: 15px;
  100. margin-right: 15px;
  101. margin-top: 10px;
  102. margin-bottom: 50px;
  103. color: #1F3660;
  104. }
  105. #links a, #links a:hover, #links a:active, #links a:visited {
  106. color: #1F3660;
  107. }
  108. #links a {
  109. text-decoration: none;
  110. }
  111. #links a:hover {
  112. text-decoration: underline;
  113. }
  114. span {
  115. margin-right: 30px;
  116. margin-top: 3px;
  117. float: right;
  118. }
  119. .form-info {
  120. color: #1F3660;
  121. font-size: 9pt;
  122. }
  123. .form-error {
  124. color: red;
  125. font-size: 9pt;
  126. }