style.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. body, select {
  2. color: #7d7a7a;
  3. font-family: 'trebuchet ms', verdana, sans-serif;
  4. }
  5. a:link, a:visited, a:active {
  6. color: #5F83BA;
  7. text-decoration: none;
  8. }
  9. a:hover {
  10. color: #5f83ba;
  11. text-decoration: underline;
  12. }
  13. img { border: none; }
  14. pre,
  15. code {
  16. font-size: 0.8em;
  17. font-family: "lucida console", monospace;
  18. }
  19. pre {
  20. background-color: #f8f8f8;
  21. padding: 10px;
  22. }
  23. select { font-size: 0.8em; font-weight: bold; }
  24. #header {
  25. background-image: url('images/h_bar.gif');
  26. background-repeat: repeat-x;
  27. background-position: bottom right;
  28. height: 50px;
  29. }
  30. #footer {
  31. font-size: 0.75em;
  32. padding-top: 12px;
  33. background-image: url('images/h_bar.gif');
  34. background-repeat: repeat-x;
  35. background-position: top left;
  36. height: 35px;
  37. vertical-align: middle;
  38. clear: both;
  39. }
  40. #logo {
  41. position: absolute;
  42. top: 0px;
  43. right: 0px;
  44. border: none;
  45. }
  46. .badges { float: right; }
  47. #left_col, #content {
  48. vertical-align: top;
  49. }
  50. /*
  51. #left_col {
  52. padding: 3px 3px 2em 3px;
  53. margin-top: 2px;
  54. width: 210px;
  55. padding-right: 10px;
  56. background-image: url('images/v_bar.gif');
  57. background-repeat: repeat-y;
  58. background-position: top right;
  59. }
  60. */
  61. #left_col {
  62. padding: 3px 3px 2em 3px;
  63. margin-top: 2px;
  64. width: 210px;
  65. padding-right: 10px;
  66. float: left;
  67. }
  68. #left_col h2 {
  69. font-size: 1.0em;
  70. margin-top: 0.5em;
  71. margin-bottom: 0.25em;
  72. }
  73. #left_col ul {
  74. margin-top: 0.25em;
  75. padding-left: 0px;
  76. }
  77. #left_col ul { margin-left: 0px; }
  78. #left_col ul li { list-style-position: inside; }
  79. #left_col p { font-size: 0.8em; }
  80. #left_col iframe { margin-left: 40px; margin-top: 10px; }
  81. #content {
  82. margin: 0em 0px 0px 210px;
  83. padding: 1em 1em 1em 4em;
  84. min-width: 400px;
  85. width: 60%;
  86. background-image: url('images/v_bar.gif');
  87. background-repeat: repeat-y;
  88. background-position: top left;
  89. }
  90. #content #toc+a+h2,
  91. #content #toc+h2 { margin-top: -1.5em; }
  92. .message {
  93. margin-top: 1em;
  94. border: 1px dashed #5E83BA;
  95. }
  96. #content li {
  97. margin-top: 0.5em;
  98. vertical-align: top;
  99. }
  100. #content>*>li {
  101. margin-right: 40px; /* keep things in line */
  102. }
  103. #content h2 {
  104. text-align: right;
  105. color: #4A9166;
  106. }
  107. #content h3 {
  108. margin-top: 2em;
  109. }
  110. #content p {
  111. text-align: justify;
  112. }
  113. #content div.divider1,
  114. #content div.divider2 {
  115. margin-top: 1.5em;
  116. margin-bottom: 1em;
  117. margin-left: 15%;
  118. height: 25px;
  119. width: 60%;
  120. }
  121. #content table td { padding: 0.5em; }
  122. #content div.divider1,
  123. #content div.divider2,
  124. #content table td.bar1,
  125. #content table td.bar2 {
  126. background-image: url('images/h_bar.gif');
  127. background-repeat: repeat-x;
  128. }
  129. #content div.divider1,
  130. #content table td.bar1 {
  131. background-position: bottom right;
  132. }
  133. #content div.divider2,
  134. #content table td.bar2 {
  135. background-position: top left;
  136. }
  137. #content table td.input {
  138. white-space: nowrap;
  139. font-family: "lucida console", monospace;
  140. font-size: 0.8em;
  141. }
  142. #content table td.description {
  143. padding-left: 2em;
  144. }
  145. #content textarea {
  146. padding: 4px;
  147. width: 100%;
  148. border: 1px dashed #5F83BA;
  149. }
  150. #content input {
  151. border: 1px dashed #5F83BA;
  152. background-color: #fff;
  153. color: #7d7a7a;
  154. font-family: 'trebuchet ms', verdana, sans-serif;
  155. }
  156. #toc {
  157. margin-top: -1em;
  158. margin-left: -3em;
  159. font-size: 0.8em;
  160. }
  161. /*
  162. #toc>h2:first-child {
  163. background-image: url('images/h_bar.gif');
  164. background-repeat: repeat-x;
  165. background-position: top left;
  166. padding-top: 0.5em;
  167. }
  168. */
  169. #toc h2 {
  170. font-size: 1em;
  171. text-align: left;
  172. padding-left: 1em;
  173. }
  174. #toc ul ul {
  175. padding-left: 20px;
  176. }
  177. .news_headline {
  178. margin-top: 0.75em;
  179. color: #5F83BA;
  180. }
  181. p.news_body {
  182. }
  183. .posted_date {
  184. font-size: 0.8em;
  185. color: #4A9166;
  186. }
  187. .answers>h3:before {
  188. content: "Q: ";
  189. color: #4A9166;
  190. font-size: 30px;
  191. font-weight: bold;
  192. }
  193. .answers>h3+p:before {
  194. content: "A: ";
  195. color: #5F83BA;
  196. font-size: 30px;
  197. font-weight: bold;
  198. }
  199. /* Method definitions from phpdoc */
  200. .method-definition {
  201. background-image: url('images/h_bar.gif');
  202. background-position: bottom center;
  203. background-repeat: repeat-x;
  204. padding: 10px 10px 20px 10px;
  205. margin-bottom: 1em;
  206. }
  207. .method-title {
  208. color: #5F83BA;
  209. }
  210. .var-name,
  211. .method-name,
  212. .method-title {
  213. font-weight: bold;
  214. }
  215. .var-type,
  216. .method-result {
  217. color: #4A9166;
  218. font-style: italic;
  219. }