form.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .Wt-form {
  2. margin: 0 auto;
  3. width: 40em;
  4. padding: 0.7em;
  5. }
  6. .Wt-form h2 {
  7. font-size: 130%;
  8. font-weight: bold;
  9. padding: 0px;
  10. margin: 8px 0px;
  11. letter-spacing: inherit;
  12. line-height: inherit;
  13. color: inherit;
  14. background: inherit;
  15. height: auto;
  16. }
  17. .Wt-form h3 {
  18. font-size: 100%;
  19. font-weight: bold;
  20. margin: 8px 0px;
  21. }
  22. .Wt-form p {
  23. font-size: 85%;
  24. color: #666666;
  25. margin-bottom: 1.5em;
  26. border-bottom: solid 1px #b7ddf2;
  27. padding-bottom: 0.5em;
  28. }
  29. .Wt-form label {
  30. display: block;
  31. font-weight: bold;
  32. text-align: right;
  33. width: 14em;
  34. float: left;
  35. clear: left;
  36. line-height: 110%;
  37. }
  38. .Wt-form .Wt-info {
  39. color: #666666;
  40. display: block;
  41. font-size: 85%;
  42. width: 16.47em;
  43. font-weight: normal;
  44. text-align: right;
  45. }
  46. .Wt-form .Wt-fields input, .Wt-form .Wt-fields select{
  47. float: left;
  48. padding: 5px 2px;
  49. border: solid 1px #aacfe4;
  50. font-size: 90%;
  51. width: 14em;
  52. margin: 0.5em 0.5em 1.4em 0.7em;
  53. }
  54. .Wt-form .Wt-fields input[type="checkbox"] {
  55. margin-top: 1em;
  56. width: auto;
  57. }
  58. .Wt-form .Wt-fields select {
  59. margin-top: 1em;
  60. width: auto;
  61. }
  62. .Wt-form .Wt-field {
  63. float: left;
  64. padding: 5px 2px;
  65. width: 15em;
  66. margin: 0 0.5em 1.4em 0.7em;
  67. }
  68. .Wt-form .Wt-buttons {
  69. clear: both;
  70. text-align: center;
  71. margin: 0.5em 0;
  72. }
  73. .Wt-form .Wt-buttons span {
  74. text-decoration: underline;
  75. cursor: pointer; cursor: hand;
  76. }
  77. .Wt-form .Wt-error {
  78. color: black;
  79. }
  80. .Wt-form .Wt-col-right {
  81. margin-left: 29em;
  82. padding-left: 2em;
  83. border-left: solid 1px #b7ddf2;
  84. }