api.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. body, table, div, p, dl {
  2. font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
  3. font-size: 12px;
  4. }
  5. div.contents {
  6. margin: 20px;
  7. }
  8. div.api {
  9. margin: 20px 0 10px 0;
  10. padding: 0;
  11. }
  12. table.apiIndex {
  13. width: 90%;
  14. background-color: #FAFAFA;
  15. border: 1px solid #ccc;
  16. border-collapse: collapse;
  17. }
  18. tr.apiDef {
  19. border-top: 1px solid #ccc;
  20. }
  21. .apiBrief {
  22. font-size: 90%;
  23. color: #666666;
  24. font-style: italic;
  25. }
  26. td.apiType {
  27. vertical-align: top;
  28. text-align: right;
  29. white-space: nowrap;
  30. }
  31. td.apiName {
  32. padding-right: 10px;
  33. width: 15%;
  34. white-space: nowrap;
  35. }
  36. tr.apiDef td {
  37. padding-top: 2px;
  38. }
  39. tr.apiBrief td {
  40. padding-bottom: 2px;
  41. }
  42. div.prototype {
  43. border: 1px solid #84b0c7;
  44. color: #000040;
  45. margin-right: 10px;
  46. padding: 8px 10px 8px 40px;
  47. text-indent: -30px;
  48. background-color: #d5e1e8;
  49. -webkit-border-top-left-radius: 10px;
  50. -webkit-border-top-right-radius: 10px;
  51. -moz-border-radius-topleft: 10px;
  52. -moz-border-radius-topright: 10px;
  53. font-weight: bold;
  54. line-height: 140%;
  55. }
  56. div.apiDetail {
  57. margin-bottom: 30px;
  58. margin-right: 10px;
  59. padding: 2px 5px 0 10px;
  60. border: 1px solid #84b0c7;
  61. background-color: #eef3f5;
  62. background-color: #F4FAfF;
  63. border-top-width: 0;
  64. -webkit-border-bottom-left-radius: 10px;
  65. -webkit-border-bottom-right-radius: 10px;
  66. -moz-border-radius-bottomleft: 10px;
  67. -moz-border-radius-bottomright: 10px;
  68. }
  69. table.info {
  70. border: 1px solid #84b0c7;
  71. border-collapse: collapse;
  72. margin-top: 10px;
  73. }
  74. table.info tr td {
  75. padding: 4px;
  76. border: 1px solid #84b0c7;
  77. }
  78. table.parameters {
  79. margin: 0;
  80. border: 0;
  81. -webkit-box-shadow: 0px 0px 0px #000;
  82. }
  83. table.parameters td {
  84. border: 0;
  85. padding-right: 10px;
  86. padding-bottom: 5px;
  87. vertical-align: top;
  88. }
  89. td.param {
  90. font-style: italic;
  91. text-align: right;
  92. }
  93. /* Details headings "Parameters", "Returns", "See Also" ... */
  94. dt {
  95. font-weight: bold;
  96. color: #000040;
  97. }
  98. a.nameRef {
  99. font-size: 110%;
  100. font-weight: bold;
  101. }
  102. a.nameRef, a.ref {
  103. color: #4040B0;
  104. text-decoration: none;
  105. }
  106. a.nameRef:hover, a.ref:hover {
  107. color: #0000D0;
  108. text-decoration: underline;
  109. }
  110. div.footnote {
  111. padding-top: 10px;
  112. font-size: x-small;
  113. text-align: right;
  114. font-style: italic;
  115. }