You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

166 lines
2.3 KiB

4 years ago
  1. body, table {
  2. margin : 0px;
  3. font-family : "Trebuchet MS";
  4. font-size: 13px;
  5. }
  6. .main {
  7. padding : 10px;
  8. }
  9. h1 {
  10. color : rgb(244, 136, 33);
  11. padding : 5px;
  12. background-color : black;
  13. }
  14. a {
  15. color : #b32;
  16. }
  17. input,
  18. textarea,
  19. select,
  20. input.dfile {
  21. border : 1px solid #bbb;
  22. padding:4px;
  23. }
  24. input.dint,
  25. input.duint,
  26. input.ddate,
  27. input.dfloat {
  28. width : 80px;
  29. }
  30. img.dfile {
  31. position : absolute;
  32. left : 800px;
  33. }
  34. input.button {
  35. color : white;
  36. font-weight : bold;
  37. min-width : 100px;
  38. background-color : #b32;
  39. cursor : pointer;
  40. border : 0px;
  41. border-radius: 4px;
  42. padding: 6px;
  43. }
  44. input.ddatetime {
  45. width : 120px;
  46. }
  47. input.dstring {
  48. width : 400px;
  49. }
  50. input.dtinytext {
  51. width : 700px;
  52. }
  53. textarea.dtext {
  54. width : 700px;
  55. height : 200px;
  56. }
  57. input:focus,
  58. textarea:focus,
  59. select:focus {
  60. background-color : #f5f5f5;
  61. }
  62. select {
  63. width : 300px;
  64. }
  65. input.button:hover {
  66. background-color : rgb(244, 136, 33);
  67. }
  68. input.button:focus {
  69. background-color : rgb(244, 136, 33);
  70. }
  71. .derror {
  72. text-align : center;
  73. background-color : #fee;
  74. }
  75. table.results {
  76. border-collapse : collapse;
  77. border-spacing : 0px;
  78. /*font-size : 90%;*/
  79. white-space : nowrap;
  80. margin-bottom : 20px;
  81. td {
  82. padding : 1px;
  83. border-left : 1px solid #bbb;
  84. border-right : 1px solid #bbb;
  85. }
  86. tr.header {
  87. background-color : #b32;
  88. color : white;
  89. a {
  90. color : white;
  91. text-decoration : underline;
  92. }
  93. }
  94. tr {
  95. background-color : white;
  96. }
  97. tr.odd {
  98. background-color : #eee;
  99. }
  100. tr:hover td {
  101. background-color : #fee;
  102. }
  103. tr.odd:hover td {
  104. background-color : #ffd7d7;
  105. }
  106. }
  107. div.links {
  108. position : absolute;
  109. width : 100%;
  110. height : 22px;
  111. top : 40px;
  112. left : 0px;
  113. color : #e82;
  114. background-color : #e82;
  115. }
  116. div.links a:first-child {
  117. margin-left : 2px;
  118. }
  119. div.links a {
  120. padding-left : 8px;
  121. padding-right : 8px;
  122. font-weight : bold;
  123. line-height : 22px;
  124. color : white;
  125. text-decoration : none;
  126. }
  127. table{
  128. border-collapse:collapse;
  129. border-spacing:0;
  130. }
  131. table td,table th{
  132. padding:8px;
  133. }
  134. table td{
  135. border-top: 1px solid #EEE;
  136. }
  137. table th{
  138. background-color:#EEE;
  139. font-weight:bold;
  140. color:#666;
  141. }