jsdoc-default.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. @font-face {
  2. font-family: 'Open Sans';
  3. font-weight: normal;
  4. font-style: normal;
  5. src: url('../fonts/OpenSans-Regular-webfont.eot');
  6. src:
  7. local('Open Sans'),
  8. local('OpenSans'),
  9. url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
  10. url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
  11. url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
  12. }
  13. @font-face {
  14. font-family: 'Open Sans Light';
  15. font-weight: normal;
  16. font-style: normal;
  17. src: url('../fonts/OpenSans-Light-webfont.eot');
  18. src:
  19. local('Open Sans Light'),
  20. local('OpenSans Light'),
  21. url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
  22. url('../fonts/OpenSans-Light-webfont.woff') format('woff'),
  23. url('../fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
  24. }
  25. html
  26. {
  27. overflow: auto;
  28. background-color: #fff;
  29. font-size: 14px;
  30. }
  31. body
  32. {
  33. font-family: 'Open Sans', sans-serif;
  34. line-height: 1.5;
  35. color: #4d4e53;
  36. background-color: white;
  37. }
  38. a, a:visited, a:active {
  39. color: #0095dd;
  40. text-decoration: none;
  41. }
  42. a:hover {
  43. text-decoration: underline;
  44. }
  45. header
  46. {
  47. display: block;
  48. padding: 0px 4px;
  49. }
  50. tt, code, kbd, samp {
  51. font-family: Consolas, Monaco, 'Andale Mono', monospace;
  52. }
  53. .class-description {
  54. font-size: 130%;
  55. line-height: 140%;
  56. margin-bottom: 1em;
  57. margin-top: 1em;
  58. }
  59. .class-description:empty {
  60. margin: 0;
  61. }
  62. #main {
  63. float: left;
  64. width: 70%;
  65. }
  66. article dl {
  67. margin-bottom: 40px;
  68. }
  69. article img {
  70. max-width: 100%;
  71. }
  72. section
  73. {
  74. display: block;
  75. background-color: #fff;
  76. padding: 12px 24px;
  77. border-bottom: 1px solid #ccc;
  78. margin-right: 30px;
  79. }
  80. .variation {
  81. display: none;
  82. }
  83. .signature-attributes {
  84. font-size: 60%;
  85. color: #aaa;
  86. font-style: italic;
  87. font-weight: lighter;
  88. }
  89. nav
  90. {
  91. display: block;
  92. float: right;
  93. margin-top: 28px;
  94. width: 30%;
  95. box-sizing: border-box;
  96. border-left: 1px solid #ccc;
  97. padding-left: 16px;
  98. }
  99. nav ul {
  100. font-family: 'Lucida Grande', 'Lucida Sans Unicode', arial, sans-serif;
  101. font-size: 100%;
  102. line-height: 17px;
  103. padding: 0;
  104. margin: 0;
  105. list-style-type: none;
  106. }
  107. nav ul a, nav ul a:visited, nav ul a:active {
  108. font-family: Consolas, Monaco, 'Andale Mono', monospace;
  109. line-height: 18px;
  110. color: #4D4E53;
  111. }
  112. nav h3 {
  113. margin-top: 12px;
  114. }
  115. nav li {
  116. margin-top: 6px;
  117. }
  118. footer {
  119. display: block;
  120. padding: 6px;
  121. margin-top: 12px;
  122. font-style: italic;
  123. font-size: 90%;
  124. }
  125. h1, h2, h3, h4 {
  126. font-weight: 200;
  127. margin: 0;
  128. }
  129. h1
  130. {
  131. font-family: 'Open Sans Light', sans-serif;
  132. font-size: 48px;
  133. letter-spacing: -2px;
  134. margin: 12px 24px 20px;
  135. }
  136. h2, h3.subsection-title
  137. {
  138. font-size: 30px;
  139. font-weight: 700;
  140. letter-spacing: -1px;
  141. margin-bottom: 12px;
  142. }
  143. h3
  144. {
  145. font-size: 24px;
  146. letter-spacing: -0.5px;
  147. margin-bottom: 12px;
  148. }
  149. h4
  150. {
  151. font-size: 18px;
  152. letter-spacing: -0.33px;
  153. margin-bottom: 12px;
  154. color: #4d4e53;
  155. }
  156. h5, .container-overview .subsection-title
  157. {
  158. font-size: 120%;
  159. font-weight: bold;
  160. letter-spacing: -0.01em;
  161. margin: 8px 0 3px 0;
  162. }
  163. h6
  164. {
  165. font-size: 100%;
  166. letter-spacing: -0.01em;
  167. margin: 6px 0 3px 0;
  168. font-style: italic;
  169. }
  170. table
  171. {
  172. border-spacing: 0;
  173. border: 0;
  174. border-collapse: collapse;
  175. }
  176. td, th
  177. {
  178. border: 1px solid #ddd;
  179. margin: 0px;
  180. text-align: left;
  181. vertical-align: top;
  182. padding: 4px 6px;
  183. display: table-cell;
  184. }
  185. thead tr
  186. {
  187. background-color: #ddd;
  188. font-weight: bold;
  189. }
  190. th { border-right: 1px solid #aaa; }
  191. tr > th:last-child { border-right: 1px solid #ddd; }
  192. .ancestors, .attribs { color: #999; }
  193. .ancestors a, .attribs a
  194. {
  195. color: #999 !important;
  196. text-decoration: none;
  197. }
  198. .clear
  199. {
  200. clear: both;
  201. }
  202. .important
  203. {
  204. font-weight: bold;
  205. color: #950B02;
  206. }
  207. .yes-def {
  208. text-indent: -1000px;
  209. }
  210. .type-signature {
  211. color: #aaa;
  212. }
  213. .name, .signature {
  214. font-family: Consolas, Monaco, 'Andale Mono', monospace;
  215. }
  216. .details { margin-top: 14px; border-left: 2px solid #DDD; }
  217. .details dt { width: 120px; float: left; padding-left: 10px; padding-top: 6px; }
  218. .details dd { margin-left: 70px; }
  219. .details ul { margin: 0; }
  220. .details ul { list-style-type: none; }
  221. .details li { margin-left: 30px; padding-top: 6px; }
  222. .details pre.prettyprint { margin: 0 }
  223. .details .object-value { padding-top: 0; }
  224. .description {
  225. margin-bottom: 1em;
  226. margin-top: 1em;
  227. }
  228. .code-caption
  229. {
  230. font-style: italic;
  231. font-size: 107%;
  232. margin: 0;
  233. }
  234. .source
  235. {
  236. border: 1px solid #ddd;
  237. width: 80%;
  238. overflow: auto;
  239. }
  240. .prettyprint.source {
  241. width: inherit;
  242. }
  243. .source code
  244. {
  245. font-size: 100%;
  246. line-height: 18px;
  247. display: block;
  248. padding: 4px 12px;
  249. margin: 0;
  250. background-color: #fff;
  251. color: #4D4E53;
  252. }
  253. .prettyprint code span.line
  254. {
  255. display: inline-block;
  256. }
  257. .prettyprint.linenums
  258. {
  259. padding-left: 70px;
  260. -webkit-user-select: none;
  261. -moz-user-select: none;
  262. -ms-user-select: none;
  263. user-select: none;
  264. }
  265. .prettyprint.linenums ol
  266. {
  267. padding-left: 0;
  268. }
  269. .prettyprint.linenums li
  270. {
  271. border-left: 3px #ddd solid;
  272. }
  273. .prettyprint.linenums li.selected,
  274. .prettyprint.linenums li.selected *
  275. {
  276. background-color: lightyellow;
  277. }
  278. .prettyprint.linenums li *
  279. {
  280. -webkit-user-select: text;
  281. -moz-user-select: text;
  282. -ms-user-select: text;
  283. user-select: text;
  284. }
  285. .params .name, .props .name, .name code {
  286. color: #4D4E53;
  287. font-family: Consolas, Monaco, 'Andale Mono', monospace;
  288. font-size: 100%;
  289. }
  290. .params td.description > p:first-child,
  291. .props td.description > p:first-child
  292. {
  293. margin-top: 0;
  294. padding-top: 0;
  295. }
  296. .params td.description > p:last-child,
  297. .props td.description > p:last-child
  298. {
  299. margin-bottom: 0;
  300. padding-bottom: 0;
  301. }
  302. .disabled {
  303. color: #454545;
  304. }