compodoc.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. body {
  2. position: absolute;
  3. width: 100%;
  4. height: 100%;
  5. font-family: 'Roboto', sans-serif;
  6. }
  7. /* roboto-300 - latin */
  8. @font-face {
  9. font-family: 'Roboto';
  10. font-style: normal;
  11. font-weight: 300;
  12. src: url('../fonts/roboto-v15-latin-300.eot'); /* IE9 Compat Modes */
  13. src: local('Roboto Light'), local('Roboto-Light'),
  14. url('../fonts/roboto-v15-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  15. url('../fonts/roboto-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
  16. url('../fonts/roboto-v15-latin-300.woff') format('woff'), /* Modern Browsers */
  17. url('../fonts/roboto-v15-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
  18. url('../fonts/roboto-v15-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
  19. }
  20. /* roboto-regular - latin */
  21. @font-face {
  22. font-family: 'Roboto';
  23. font-style: normal;
  24. font-weight: 400;
  25. src: url('../fonts/roboto-v15-latin-regular.eot'); /* IE9 Compat Modes */
  26. src: local('Roboto'), local('Roboto-Regular'),
  27. url('../fonts/roboto-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  28. url('../fonts/roboto-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  29. url('../fonts/roboto-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
  30. url('../fonts/roboto-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  31. url('../fonts/roboto-v15-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
  32. }
  33. /* roboto-700 - latin */
  34. @font-face {
  35. font-family: 'Roboto';
  36. font-style: normal;
  37. font-weight: 700;
  38. src: url('../fonts/roboto-v15-latin-700.eot'); /* IE9 Compat Modes */
  39. src: local('Roboto Bold'), local('Roboto-Bold'),
  40. url('../fonts/roboto-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  41. url('../fonts/roboto-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
  42. url('../fonts/roboto-v15-latin-700.woff') format('woff'), /* Modern Browsers */
  43. url('../fonts/roboto-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
  44. url('../fonts/roboto-v15-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
  45. }
  46. h1 {
  47. font-size: 26px;
  48. }
  49. h2 {
  50. font-size: 22px;
  51. }
  52. h3 {
  53. font-size: 20px;
  54. }
  55. h4, h5 {
  56. font-size: 18px;
  57. }
  58. /**
  59. * Mobile navbar
  60. */
  61. .navbar {
  62. min-height: 50px;
  63. }
  64. .navbar-brand {
  65. height: 50px;
  66. font-size: 14px;
  67. line-height: 20px;
  68. padding: 15px;
  69. }
  70. .navbar-static-top {
  71. margin-bottom: 0;
  72. height: 50px;
  73. }
  74. /**
  75. * Main container
  76. */
  77. .container-fluid {
  78. overflow-y: hidden;
  79. overflow-x: hidden;
  80. }
  81. .container-fluid.main {
  82. height: 100%;
  83. padding: 0;
  84. }
  85. .container-fluid.overview {
  86. margin-top: 50px;
  87. }
  88. .container-fluid.modules, .container-fluid.components, .container-fluid.directives, .container-fluid.classes, .container-fluid.injectables, .container-fluid.pipes, .content.routes table {
  89. margin-top: 25px;
  90. }
  91. .container-fluid.module {
  92. padding: 0;
  93. margin-top: 0;
  94. }
  95. .container-fluid.module h3 a {
  96. margin-left: 10px;
  97. color: #333;
  98. }
  99. .row.main {
  100. height: 100%;
  101. margin: 0;
  102. }
  103. /**
  104. * Copyright
  105. */
  106. .copyright {
  107. margin: 0;
  108. padding: 15px;
  109. text-align: center;
  110. display: flex;
  111. flex-direction: column;
  112. display: -webkit-flex;
  113. -webkit-flex-direction: column;
  114. align-items: center;
  115. -webkit-align-items: center;
  116. z-index: 1;
  117. }
  118. .copyright img {
  119. width: 80px;
  120. margin-top: 10px;
  121. }
  122. .copyright a {
  123. color: #009dff;
  124. text-decoration: underline;
  125. }
  126. /**
  127. * Content
  128. */
  129. .content {
  130. height: 100%;
  131. overflow-y: auto;
  132. -webkit-overflow-scrolling: touch;
  133. width: calc(100% - 300px);
  134. position: absolute;
  135. top: 0;
  136. left: 300px;
  137. padding: 15px 30px;
  138. }
  139. .content>h1:first-of-type {
  140. margin-top: 15px
  141. }
  142. .content>h3:first-of-type {
  143. margin-top: 5px;
  144. }
  145. .content.readme h1:first-of-type {
  146. margin-top: 0;
  147. }
  148. .content table {
  149. margin-top: 20px;
  150. }
  151. /**
  152. * Icons
  153. */
  154. .glyphicon, .fa {
  155. margin-right: 10px;
  156. }
  157. .fa-code-fork {
  158. margin-right: 14px;
  159. }
  160. .fa-long-arrow-down {
  161. margin-right: 16px;
  162. }
  163. /**
  164. * Menu
  165. */
  166. #book-search-input {
  167. padding: 6px;
  168. background: 0 0;
  169. transition: top .5s ease;
  170. background: #fff;
  171. border-bottom: 1px solid rgba(0, 0, 0, .07);
  172. border-top: 1px solid rgba(0, 0, 0, .07);
  173. margin-bottom: 5px;
  174. margin-top: -1px
  175. }
  176. #book-search-input input, #book-search-input input:focus, #book-search-input input:hover {
  177. width: 100%;
  178. background: 0 0;
  179. border: 1px solid transparent;
  180. box-shadow: none;
  181. outline: 0;
  182. line-height: 22px;
  183. padding: 7px 7px;
  184. color: inherit
  185. }
  186. .panel-body {
  187. padding: 0px;
  188. }
  189. .panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
  190. border-top: 0;
  191. }
  192. .panel-body table tr td {
  193. padding-left: 15px
  194. }
  195. .panel-body .table {
  196. margin-bottom: 0px;
  197. }
  198. .panel-group .panel:first-child {
  199. border-top: 0;
  200. }
  201. .menu {
  202. background: #fafafa;
  203. border-right: 1px solid #e7e7e7;
  204. height: 100%;
  205. padding: 0;
  206. width: 300px;
  207. overflow-y: auto;
  208. -webkit-overflow-scrolling: touch;
  209. }
  210. .menu ul.list {
  211. list-style: none;
  212. margin: 0;
  213. padding: 0;
  214. }
  215. .menu ul.list li a {
  216. display: block;
  217. padding: 10px 15px;
  218. border-bottom: none;
  219. color: #364149;
  220. background: 0 0;
  221. text-overflow: ellipsis;
  222. overflow: hidden;
  223. white-space: nowrap;
  224. position: relative
  225. }
  226. .menu ul.list li a.active {
  227. color: #008cff;
  228. }
  229. .menu ul.list li.divider {
  230. height: 1px;
  231. margin: 7px 0;
  232. overflow: hidden;
  233. background: rgba(0, 0, 0, .07)
  234. }
  235. .menu ul.list li.chapter ul.links {
  236. padding-left: 20px;
  237. }
  238. .menu ul.list li.chapter .simple {
  239. padding: 10px 15px;
  240. position: relative;
  241. }
  242. .menu .panel-group {
  243. width: 100%;
  244. height: 100%;
  245. overflow-y: auto;
  246. }
  247. .menu .panel-default {
  248. border-right: none;
  249. border-left: none;
  250. border-bottom: none;
  251. }
  252. .menu .panel-group .panel-heading+.panel-collapse>.panel-body {
  253. border-top: none;
  254. overflow-y: auto;
  255. max-height: 350px;
  256. }
  257. .menu .panel-default:last-of-type {
  258. border-bottom: 1px solid #ddd;
  259. }
  260. .panel-group .panel+.panel {
  261. margin-top: 0;
  262. }
  263. .panel-group .panel {
  264. z-index: 2;
  265. position: relative;
  266. border-radius: 0;
  267. box-shadow: none;
  268. border-left: 0;
  269. border-right: 0;
  270. }
  271. .menu a {
  272. color: #3c3c3c;
  273. }
  274. .xs-menu ul.list li:nth-child(2){
  275. margin: 0;
  276. background: none;
  277. }
  278. .menu ul.list li:nth-child(2){
  279. margin: 0;
  280. background: none;
  281. }
  282. .menu .title {
  283. padding: 8px 0;
  284. }
  285. .menu-toggler {
  286. cursor: pointer;
  287. padding: 5px 10px;
  288. font-size: 16px;
  289. position: absolute;
  290. right: 0;
  291. top: 7px;
  292. }
  293. .overview .card-title .fa {
  294. font-size: 50px;
  295. }
  296. .breadcrumb {
  297. background: none;
  298. padding-left: 0;
  299. margin-bottom: 10px;
  300. font-size: 24px;
  301. padding-top: 0;
  302. }
  303. .breadcrumb a {
  304. text-decoration: underline;
  305. color: #333;
  306. }
  307. .comment {
  308. margin: 15px 0;
  309. }
  310. .io-description {
  311. margin: 10px 0;
  312. }
  313. .io-file {
  314. margin: 20px 0;
  315. }
  316. .navbar .btn-menu {
  317. position: absolute;
  318. right: 0;
  319. margin: 10px;
  320. }
  321. .xs-menu {
  322. height: calc(100% - 50px);
  323. display: none;
  324. width: 100%;
  325. overflow-y: scroll;
  326. z-index: 1;
  327. top: 50px;
  328. position: absolute;
  329. }
  330. .xs-menu .copyright {
  331. margin-top: 20px;
  332. position: relative;
  333. }
  334. .tab-source-code {
  335. padding: 10px 0;
  336. }
  337. pre {
  338. padding: 12px 12px;
  339. border: none;
  340. background: #23241f;
  341. }
  342. code {
  343. background: none;
  344. padding: 2px 0;
  345. }
  346. @media (max-width: 767px) {
  347. .container-fluid {
  348. margin-top: 50px;
  349. }
  350. .container-fluid.main {
  351. height: calc(100% - 50px);
  352. }
  353. .content {
  354. width: 100%;
  355. left: 0;
  356. position: relative;
  357. }
  358. .menu ul.list li.title {
  359. display: none;
  360. }
  361. }
  362. /**
  363. * Search
  364. */
  365. .search-results {
  366. display: none;
  367. max-width: 800px;
  368. margin: 0 auto;
  369. padding: 20px 15px 40px 15px
  370. }
  371. .search-results .no-results {
  372. display: none;
  373. }
  374. .with-search .search-results {
  375. display: block;
  376. }
  377. .with-search .content-data {
  378. display: none;
  379. }
  380. .with-search .xs-menu {
  381. height: 51px;
  382. }
  383. .with-search .xs-menu nav {
  384. display: none;
  385. }
  386. .search-results.no-results .has-results {
  387. display: none;
  388. }
  389. .search-results.no-results .no-results {
  390. display: block;
  391. }
  392. .search-results .search-results-title {
  393. text-transform: uppercase;
  394. text-align: center;
  395. font-weight: 200;
  396. margin-bottom: 35px;
  397. opacity: .6
  398. }
  399. .search-results ul.search-results-list {
  400. list-style-type: none;
  401. padding-left: 0;
  402. }
  403. .search-results ul.search-results-list li {
  404. margin-bottom: 1.5rem;
  405. padding-bottom: 0.5rem;
  406. }
  407. .search-results ul.search-results-list li p em {
  408. background-color: rgba(255, 220, 0, 0.4);
  409. font-style: normal;
  410. }
  411. .hljs-line-numbers {
  412. text-align: right;
  413. border-right: 1px solid #ccc;
  414. color: #999;
  415. -webkit-touch-callout: none;
  416. -webkit-user-select: none;
  417. -khtml-user-select: none;
  418. -moz-user-select: none;
  419. -ms-user-select: none;
  420. user-select: none;
  421. }
  422. .jsdoc-params {
  423. list-style: square;
  424. padding-left: 20px;
  425. margin-top: 10px;
  426. margin-bottom: 0 !important;
  427. }
  428. .jsdoc-params li {
  429. padding-bottom: 10px;
  430. }
  431. i {
  432. font-style: italic;
  433. }
  434. .coverage a {
  435. color: #333;
  436. text-decoration: underline;
  437. }
  438. .coverage tr.low {
  439. background: rgba(216, 96, 75, 0.75);
  440. }
  441. .coverage tr.medium {
  442. background: rgba(218, 178, 38, 0.75);
  443. }
  444. .coverage tr.good {
  445. background: rgba(143, 189, 8, 0.75);
  446. }
  447. .coverage tr.very-good {
  448. background: rgba(77, 199, 31, 0.75);
  449. }
  450. .coverage-header {
  451. background: #fafafa;
  452. }
  453. thead.coverage-header >tr>td, thead.coverage-header>tr>th {
  454. border-bottom-width: 0;
  455. }
  456. .coverage-count {
  457. color: grey;
  458. font-size: 12px;
  459. margin-left: 10px;
  460. display: inline-block;
  461. width: 50px;
  462. }
  463. .coverage-badge {
  464. background: #5d5d5d;
  465. border-radius: 4px;
  466. display: inline-block;
  467. color: white;
  468. padding: 4px;
  469. padding-right: 0;
  470. padding-left: 8px;
  471. }
  472. .coverage-badge .count{
  473. padding: 6px;
  474. margin-left: 5px;
  475. border-top-right-radius: 4px;
  476. border-bottom-right-radius: 4px;
  477. }
  478. .coverage-badge .count.low {
  479. background: #d8624c;
  480. }
  481. .coverage-badge .count.medium {
  482. background: #dab226;
  483. }
  484. .coverage-badge .count.good {
  485. background: #8fbd08;
  486. }
  487. .coverage-badge .count.very-good {
  488. background: #4dc71f;
  489. }
  490. .content ul {
  491. list-style: disc;
  492. padding-left: 2em;
  493. margin-top: 0;
  494. margin-bottom: 16px;
  495. }
  496. .content ul ul {
  497. list-style-type: circle;
  498. }
  499. .compodoc-table {
  500. width: inherit;
  501. }
  502. .compodoc-table thead {
  503. font-weight: bold;
  504. }
  505. .modifier {
  506. background: #9a9a9a;
  507. padding: 1px 5px;
  508. color: white;
  509. border-radius: 4px;
  510. }
  511. .modifier-icon {
  512. color: #c7254e;
  513. }
  514. .modifier-icon.method {
  515. color: white;
  516. background: #c7254e;
  517. padding: 4px;
  518. border-radius: 8px;
  519. font-size: 10px;
  520. margin-right: 2px;
  521. }
  522. .modifier-icon.method.square {
  523. border-radius: 4px;
  524. }
  525. .modifier-icon.method.export {
  526. display: none;
  527. }
  528. .modifier-icon.method .fa-circle, .modifier-icon.method .fa-square {
  529. display: none;
  530. }
  531. .modifier-icon.method .fa-lock {
  532. margin-right: 0;
  533. }