api.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. pre {
  2. color: #000000;
  3. background-color: #FFF5E6;
  4. font-family: "courier new", "times new roman", monospace;
  5. line-height: 1.3em;
  6. /* Put a nice border around it. */
  7. padding: 1px;
  8. width: 90%;
  9. /* Don't wrap its contents, and show scrollbars. */
  10. /* white-space: nowrap;*/
  11. overflow: auto;
  12. /* Stop after about 24 lines, and just show a scrollbar. */
  13. /* max-height: 24em; */
  14. margin: 5px;
  15. padding-left: 20px;
  16. border: 1px solid #FFE6BF;
  17. border-left: 6px solid #FFE6BF;
  18. }
  19. div.code {
  20. display: none;
  21. color: #000000;
  22. background-color: #FFF5E6;
  23. font-family: "courier new", "times new roman", monospace;
  24. line-height: 1.3em;
  25. /* Put a nice border around it. */
  26. padding: 1px;
  27. width: 90%;
  28. /* Don't wrap its contents, and show scrollbars. */
  29. /* white-space: nowrap;*/
  30. overflow: auto;
  31. /* Stop after about 24 lines, and just show a scrollbar. */
  32. /* max-height: 24em; */
  33. margin: 5px;
  34. padding-left: 20px;
  35. border-left: 6px solid #FFE6BF;
  36. }
  37. table.summaryTable {
  38. background: #E6ECFF;
  39. border-collapse: collapse;
  40. width: 100%;
  41. }
  42. table.summaryTable th, table.summaryTable td {
  43. border: 1px #BFCFFF solid;
  44. padding: 0.2em;
  45. }
  46. table.summaryTable th {
  47. background: #CCD9FF;
  48. text-align: left;
  49. }
  50. #nav {
  51. padding: 3px;
  52. margin: 0 0 10px 0;
  53. border-top: 1px #BFCFFF solid;
  54. }
  55. #classDescription {
  56. padding: 5px;
  57. margin: 10px 0 20px 0;
  58. border-bottom: 1px solid #BFCFFF;
  59. }
  60. .detailHeader {
  61. font-weight: bold;
  62. font-size: 12pt;
  63. margin: 30px 0 5px 0;
  64. border-bottom: 1px solid #BFCFFF;
  65. }
  66. .detailHeaderTag {
  67. font-weight: normal;
  68. font-size: 10pt;
  69. }
  70. .signature, .signature2 {
  71. padding: 3px;
  72. color: #000000;
  73. font-family: "courier new", "times new roman", monospace;
  74. line-height: 1.3em;
  75. }
  76. .signature {
  77. margin: 10px 0 10px 0;
  78. background: #E6ECFF;
  79. border: 1px #BFCFFF solid;
  80. }
  81. .paramNameCol {
  82. width: 12%;
  83. font-weight: bold;
  84. }
  85. .paramTypeCol {
  86. width: 12%;
  87. }
  88. .sourceCode {
  89. margin: 5px 0;
  90. padding:5px;
  91. background:#FFF5E6;
  92. }