summaryrefslogtreecommitdiff
path: root/css/sql-ledger-blue.css
blob: c44c07b2e4ff3a88c42f1e914c1fa4b52002d133 (plain)
  1. Below is the result of your feedback form. It was submitted by
  2. Eduard Rozenberg (edrozenberg@pobox.com) on Thursday, August 18, 2005 at 15:41:32
  3. ---------------------------------------------------------------------------
  4. message: Hello,
  5. I've created a new stylesheet more based on the color blue,
  6. and am pasting it below in case it's useful as a possible
  7. alternate (sql-ledger_blue.css)
  8. Regards,
  9. --Ed Rozenberg
  10. ================
  11. /* stylesheet for sql-ledger */
  12. /* general stuff */
  13. A:link { color: #a0522d; text-decoration: none; }
  14. A:visited { color: #a0522d; text-decoration: none; }
  15. A:active { color: #a0522d; text-decoration: underline; border: 1px #6495ED; }
  16. /*A:hover { color: white;
  17. background-color: #bbbbbb;
  18. text-decoration: none;
  19. }*/
  20. body {
  21. font-family: Verdana, Arial, Helvetica;
  22. font-size: 10pt;
  23. background-color: white;
  24. color: black
  25. }
  26. td {
  27. font-family: Verdana, Arial, Helvetica;
  28. font-size: 10pt;
  29. }
  30. th {
  31. font-family: Verdana, Arial, Helvetica;
  32. font-size: 10pt;
  33. }
  34. /* login and admin */
  35. .login {
  36. font-family: Verdana, Arial, Helvetica;
  37. }
  38. body.login {
  39. background: #5a7d9b;
  40. color: black;
  41. }
  42. h1.login {
  43. font-size: 18pt;
  44. }
  45. table.login {
  46. background-color: #FBFFE7;
  47. padding: 20px;
  48. }
  49. td.login {
  50. text-align: center;
  51. }
  52. th.login {
  53. text-align: right;
  54. }
  55. body.admin {
  56. background-color: #FBFFE7;
  57. color: black;
  58. }
  59. body.menu {
  60. font-family: Verdana, Arial, Helvetica;
  61. font-size: 10pt;
  62. color: black;
  63. background: #F0F0F0;
  64. }
  65. .menuOut {
  66. cursor: pointer;
  67. font-size: 12px;
  68. color: Black;
  69. /* border: 1px solid #d8bfd8; */
  70. padding: 2px;
  71. text-align: left;
  72. font-weight: bold;
  73. }
  74. .menuOver {
  75. cursor: pointer;
  76. font-size: 12px;
  77. color: #32CD32;
  78. /* border: 1px solid #d8bfd8; */
  79. padding: 2px;
  80. text-align: left;
  81. font-weight: bold;
  82. }
  83. .submenu {
  84. font-family: Verdana, Arial, Helvetica;
  85. font-size: 12px;
  86. padding-left: 5px;
  87. }
  88. .menuOut a {
  89. cursor: pointer;
  90. margin: 0px;
  91. font-size: 12px;
  92. color: #6495ED;
  93. border: 0px solid #000000;
  94. padding: 0px;
  95. text-align: left;
  96. font-weight: bold;
  97. }
  98. .menuOver a {
  99. cursor: pointer;
  100. margin: 0px;
  101. font-size: 12px;
  102. color: #32CD32;
  103. border: 0px solid #000000;
  104. padding: 0px;
  105. text-align: left;
  106. font-weight: bold;
  107. }
  108. .submenu a {
  109. color: #6495ED;
  110. text-decoration: none;
  111. }
  112. .submenu a:hover {
  113. color: #32CD32;
  114. text-decoration: none;
  115. }
  116. .listtop { font-size: 10pt; background-color: black; color: white; }
  117. .listheading { font-size: 10pt; background-color: #6495ED;; color: white; }
  118. A.listheading:link, A.listheading:active, A.listheading:visited {
  119. color: white;
  120. text-decoration: none; }
  121. .listrow1 { font-size: 10pt; background-color: #dedede; color: black; vertical-align: top; }
  122. .listrow0 { font-size: 10pt; background-color: #f5f5f5; color: black; vertical-align: top; }
  123. .listsubtotal { font-size: 10pt; background-color: #336666; color: white; }
  124. .listtotal { font-size: 10pt; background-color: black; color: white; }
  125. textarea {
  126. font-family: Verdana, Arial, Helvetica;
  127. font-size: 10pt;
  128. }
  129. input {
  130. font-family: Verdana, Arial, Helvetica;
  131. font-size: 10pt;
  132. }
  133. select {
  134. font-family: Verdana, Arial, Helvetica;
  135. font-size: 10pt;
  136. }
  137. .submit {
  138. font-family: Verdana, Arial, Helvetica;
  139. font-size: 10pt;
  140. color: Black;
  141. }
  142. .checkbox, .radio {
  143. font-family: Verdana, Arial, Helvetica;
  144. font-size: 10pt;
  145. }
  146. .plus0 { /* font color for negative numbers */
  147. color: red;
  148. }
  149. .plus1 {
  150. color: green;
  151. }
  152. h2.confirm {
  153. color: blue;
  154. font-size: 14pt;
  155. }
  156. h2.error {
  157. color: red;
  158. font-size: 14pt;
  159. }
  160. /* media stuff */
  161. @media screen {
  162. .noscreen { /* items with this class won't display */
  163. display: none;
  164. }
  165. }
  166. @media print {
  167. .noprint { /* items with this class won't print */
  168. display: none;
  169. }
  170. }
  171. ---------------------------------------------------------------------------