logicodev-dark.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  1. .searx-navbar {
  2. background: #29314D;
  3. height: 2.3rem;
  4. font-size: 1.3rem;
  5. line-height: 1.3rem;
  6. padding: 0.5rem;
  7. font-weight: bold;
  8. margin-bottom: 0.8rem;
  9. }
  10. .searx-navbar a,
  11. .searx-navbar a:hover {
  12. margin-right: 2rem;
  13. color: white;
  14. text-decoration: none;
  15. }
  16. .searx-navbar .instance a {
  17. color: #01D7D4;
  18. margin-left: 2rem;
  19. }
  20. #main-logo {
  21. margin-top: 20vh;
  22. margin-bottom: 25px;
  23. }
  24. #main-logo > img {
  25. max-width: 350px;
  26. width: 80%;
  27. }
  28. * {
  29. border-radius: 0 !important;
  30. }
  31. html {
  32. position: relative;
  33. min-height: 100%;
  34. color: #29314D;
  35. }
  36. body {
  37. /* Margin bottom by footer height */
  38. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  39. margin-bottom: 80px;
  40. background-color: white;
  41. }
  42. body a {
  43. color: #0088CC;
  44. }
  45. .footer {
  46. position: absolute;
  47. bottom: 0;
  48. width: 100%;
  49. /* Set the fixed height of the footer here */
  50. height: 60px;
  51. text-align: center;
  52. color: #999;
  53. }
  54. input[type=checkbox]:checked + .label_hide_if_checked,
  55. input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
  56. display: none;
  57. }
  58. input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
  59. input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
  60. display: none;
  61. }
  62. .onoff-checkbox {
  63. width: 15%;
  64. }
  65. .onoffswitch {
  66. position: relative;
  67. width: 110px;
  68. -webkit-user-select: none;
  69. -moz-user-select: none;
  70. -ms-user-select: none;
  71. }
  72. .onoffswitch-checkbox {
  73. opacity: 0;
  74. position: absolute;
  75. }
  76. .onoffswitch-checkbox:before {
  77. content: "";
  78. display: inline-block;
  79. width: 16px;
  80. height: 16px;
  81. margin-right: 10px;
  82. position: absolute;
  83. left: 0;
  84. bottom: 1px;
  85. background-color: #fff;
  86. border: 1px solid #ccc;
  87. border-radius: 0px;
  88. }
  89. .onoffswitch-label {
  90. display: block;
  91. overflow: hidden;
  92. cursor: pointer;
  93. border: 2px solid #FFFFFF !important;
  94. border-radius: 50px !important;
  95. }
  96. .onoffswitch-inner {
  97. display: block;
  98. transition: margin 0.3s ease-in 0s;
  99. }
  100. .onoffswitch-inner:before,
  101. .onoffswitch-inner:after {
  102. display: block;
  103. float: left;
  104. width: 50%;
  105. height: 30px;
  106. padding: 0;
  107. line-height: 40px;
  108. font-size: 20px;
  109. box-sizing: border-box;
  110. content: "";
  111. background-color: #EEEEEE;
  112. }
  113. .onoffswitch-switch {
  114. display: block;
  115. width: 37px;
  116. background-color: #01D7D4;
  117. position: absolute;
  118. top: 0;
  119. bottom: 0;
  120. right: 0px;
  121. border: 2px solid #FFFFFF;
  122. border-radius: 50px !important;
  123. transition: all 0.3s ease-in 0s;
  124. }
  125. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  126. margin-right: 0;
  127. }
  128. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  129. right: 71px;
  130. background-color: #A1A1A1;
  131. }
  132. .onoffswitch-checkbox:focus + .onoffswitch-label .onoffswitch-switch {
  133. border: 3px solid #444444;
  134. }
  135. .result_header {
  136. margin-top: 0px;
  137. margin-bottom: 2px;
  138. font-size: 16px;
  139. }
  140. .result_header .favicon {
  141. margin-bottom: -3px;
  142. }
  143. .result_header a {
  144. color: #29314D;
  145. text-decoration: none;
  146. }
  147. .result_header a:hover {
  148. color: #0088CC;
  149. }
  150. .result_header a:visited {
  151. color: #684898;
  152. }
  153. .result_header a .highlight {
  154. background-color: #F6F9FA;
  155. }
  156. .result-content,
  157. .result-format,
  158. .result-source {
  159. margin-top: 2px;
  160. margin-bottom: 0;
  161. word-wrap: break-word;
  162. color: #666;
  163. font-size: 13px;
  164. }
  165. .result .highlight {
  166. font-weight: bold;
  167. }
  168. .result-source {
  169. font-size: 10px;
  170. float: left;
  171. }
  172. .result-format {
  173. font-size: 10px;
  174. float: right;
  175. }
  176. .result-abstract {
  177. margin-top: 0.5em;
  178. margin-bottom: 0.8em;
  179. }
  180. .external-link {
  181. color: #068922;
  182. font-size: 12px;
  183. margin-bottom: 15px;
  184. }
  185. .external-link a {
  186. margin-right: 3px;
  187. }
  188. .result-default,
  189. .result-code,
  190. .result-torrent,
  191. .result-videos,
  192. .result-map {
  193. clear: both;
  194. padding: 0.5em 4px;
  195. }
  196. .result-default:hover,
  197. .result-code:hover,
  198. .result-torrent:hover,
  199. .result-videos:hover,
  200. .result-map:hover {
  201. background-color: #F6F9FA;
  202. }
  203. .result-images {
  204. float: left !important;
  205. margin: 0;
  206. padding: 0;
  207. }
  208. .result-images a {
  209. display: block;
  210. width: 100%;
  211. background-size: cover;
  212. }
  213. .result-images a .img-thumbnail {
  214. border: none !important;
  215. padding: 0;
  216. }
  217. .result-images a:hover,
  218. .result-images a:focus {
  219. outline: 0;
  220. }
  221. .result-images a:hover .img-thumbnail,
  222. .result-images a:focus .img-thumbnail {
  223. box-shadow: 5px 5px 15px 0px black;
  224. }
  225. .result-images.js a .img-thumbnail {
  226. max-height: inherit;
  227. min-height: inherit;
  228. }
  229. .result-images:not(.js) {
  230. width: 25%;
  231. padding: 3px 13px 13px 3px;
  232. }
  233. .result-images:not(.js) a .img-thumbnail {
  234. margin: 0;
  235. max-height: 128px;
  236. min-height: 128px;
  237. }
  238. .img-thumbnail {
  239. margin: 5px;
  240. max-height: 128px;
  241. min-height: 128px;
  242. }
  243. .result-videos {
  244. clear: both;
  245. }
  246. .result-videos hr {
  247. margin: 5px 0 15px 0;
  248. }
  249. .result-videos .collapse {
  250. width: 100%;
  251. }
  252. .result-videos .in {
  253. margin-bottom: 8px;
  254. }
  255. .result-torrent {
  256. clear: both;
  257. }
  258. .result-torrent b {
  259. margin-right: 5px;
  260. margin-left: 5px;
  261. }
  262. .result-torrent .seeders {
  263. color: #2ecc71;
  264. }
  265. .result-torrent .leechers {
  266. color: #F35E77;
  267. }
  268. .result-metadata {
  269. clear: both;
  270. margin: 1em;
  271. }
  272. .result-metadata td {
  273. padding-right: 1em;
  274. color: #A4A4A4;
  275. }
  276. .result-metadata td:first-of-type {
  277. color: #666;
  278. }
  279. .result-map {
  280. clear: both;
  281. }
  282. .result-code {
  283. clear: both;
  284. }
  285. .result-code .code-fork,
  286. .result-code .code-fork a {
  287. color: #666;
  288. }
  289. .suggestion_item {
  290. margin: 2px 5px;
  291. max-width: 100%;
  292. }
  293. .suggestion_item .btn {
  294. max-width: 100%;
  295. white-space: normal;
  296. word-wrap: break-word;
  297. text-align: left;
  298. }
  299. .result_download {
  300. margin-right: 5px;
  301. }
  302. #pagination {
  303. margin-top: 30px;
  304. padding-bottom: 60px;
  305. }
  306. .label-default {
  307. color: #666;
  308. background: transparent;
  309. }
  310. .result .text-muted small {
  311. word-wrap: break-word;
  312. }
  313. .modal-wrapper {
  314. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  315. }
  316. .modal-wrapper {
  317. background-clip: padding-box;
  318. background-color: #fff;
  319. border: 1px solid rgba(0, 0, 0, 0.2);
  320. border-radius: 6px;
  321. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  322. outline: 0 none;
  323. position: relative;
  324. }
  325. @media screen and (max-width: 75em) {
  326. .img-thumbnail {
  327. object-fit: cover;
  328. }
  329. }
  330. .infobox .panel-heading {
  331. background-color: #F6F9FA;
  332. }
  333. .infobox .panel-heading .panel-title {
  334. font-weight: 700;
  335. }
  336. .infobox .header_url {
  337. white-space: nowrap;
  338. overflow: hidden;
  339. text-overflow: ellipsis;
  340. display: block;
  341. }
  342. .infobox p {
  343. font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
  344. font-style: italic;
  345. }
  346. .infobox img {
  347. max-height: "250px";
  348. }
  349. .infobox .btn {
  350. background-color: #007AB8;
  351. border: none;
  352. }
  353. .infobox .btn a {
  354. color: white;
  355. margin: 5px;
  356. }
  357. .infobox .infobox_part {
  358. margin-bottom: 20px;
  359. word-wrap: break-word;
  360. table-layout: fixed;
  361. }
  362. .infobox .infobox_part:last-child {
  363. margin-bottom: 0;
  364. }
  365. .infobox .infobox_toggle {
  366. width: 100%;
  367. text-align: center;
  368. margin-bottom: 0px;
  369. cursor: pointer;
  370. }
  371. .infobox .infobox_toggle:hover {
  372. background: #DDD;
  373. }
  374. .infobox .infobox_checkbox ~ .infobox_body {
  375. max-height: 300px;
  376. overflow: hidden;
  377. }
  378. .infobox .infobox_checkbox:checked ~ .infobox_body {
  379. max-height: none;
  380. }
  381. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  382. display: block;
  383. }
  384. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  385. display: none;
  386. }
  387. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  388. display: block;
  389. }
  390. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  391. display: none;
  392. }
  393. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  394. display: none;
  395. }
  396. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  397. display: block;
  398. }
  399. .search_categories,
  400. #categories {
  401. text-transform: capitalize;
  402. margin-bottom: 0.5rem;
  403. display: flex;
  404. flex-wrap: wrap;
  405. flex-flow: row wrap;
  406. align-content: stretch;
  407. }
  408. .search_categories label,
  409. #categories label,
  410. .search_categories .input-group-addon,
  411. #categories .input-group-addon {
  412. flex-grow: 1;
  413. flex-basis: auto;
  414. font-size: 1.2rem;
  415. font-weight: normal;
  416. background-color: white;
  417. border: #DDD 1px solid;
  418. border-right: none;
  419. color: #666;
  420. padding-bottom: 0.4rem;
  421. padding-top: 0.4rem;
  422. text-align: center;
  423. min-width: 50px;
  424. }
  425. .search_categories label:last-child,
  426. #categories label:last-child,
  427. .search_categories .input-group-addon:last-child,
  428. #categories .input-group-addon:last-child {
  429. border-right: #DDD 1px solid;
  430. }
  431. .search_categories input[type="checkbox"]:checked + label,
  432. #categories input[type="checkbox"]:checked + label {
  433. color: #29314D;
  434. font-weight: bold;
  435. border-bottom: #01D7D4 5px solid;
  436. }
  437. #main-logo {
  438. margin-top: 10vh;
  439. margin-bottom: 25px;
  440. }
  441. #main-logo > img {
  442. max-width: 350px;
  443. width: 80%;
  444. }
  445. #q {
  446. box-shadow: none;
  447. border-right: none;
  448. border-color: #888;
  449. }
  450. #search_form .input-group-btn .btn {
  451. border-color: #888;
  452. }
  453. #search_form .input-group-btn .btn:hover {
  454. background-color: #068922;
  455. color: white;
  456. }
  457. .custom-select,
  458. .custom-select-rtl {
  459. appearance: none;
  460. -webkit-appearance: none;
  461. -moz-appearance: none;
  462. font-size: 1.2rem;
  463. font-weight: normal;
  464. background-color: white;
  465. border: #888 1px solid;
  466. color: #666;
  467. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGnsAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW86/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wNy0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
  468. }
  469. .custom-select-rtl {
  470. background-position-x: 4%;
  471. }
  472. .search-margin {
  473. margin-bottom: 0.6em;
  474. }
  475. .visually-hidden {
  476. position: absolute !important;
  477. height: 1px;
  478. width: 1px;
  479. overflow: hidden;
  480. clip: rect(1px, 1px, 1px, 1px);
  481. white-space: nowrap;
  482. }
  483. .label-danger,
  484. .btn-danger {
  485. background: #c9432f;
  486. }
  487. .label-success,
  488. .btn-success {
  489. background: #068922;
  490. }
  491. select.form-control {
  492. border-color: #888 !important;
  493. }
  494. #advanced-search-container {
  495. display: none;
  496. text-align: left;
  497. margin-bottom: 1rem;
  498. clear: both;
  499. }
  500. #advanced-search-container label,
  501. #advanced-search-container .input-group-addon {
  502. font-size: 1.2rem;
  503. font-weight: normal;
  504. background-color: white;
  505. border: #DDD 1px solid;
  506. border-right: none;
  507. color: #666;
  508. padding-bottom: 0.4rem;
  509. padding-right: 0.7rem;
  510. padding-left: 0.7rem;
  511. }
  512. #advanced-search-container label:last-child,
  513. #advanced-search-container .input-group-addon:last-child {
  514. border-right: #DDD 1px solid;
  515. }
  516. #advanced-search-container input[type="radio"] {
  517. display: none;
  518. }
  519. #advanced-search-container input[type="radio"]:checked + label {
  520. color: #29314D;
  521. font-weight: bold;
  522. border-bottom: #01D7D4 5px solid;
  523. }
  524. #check-advanced:focus + label {
  525. text-decoration: underline;
  526. }
  527. #check-advanced:checked ~ #advanced-search-container {
  528. display: block;
  529. }
  530. .advanced {
  531. padding: 0;
  532. margin-top: 0.3rem;
  533. text-align: right;
  534. }
  535. .advanced label,
  536. .advanced select {
  537. cursor: pointer;
  538. }
  539. .cursor-text {
  540. cursor: text !important;
  541. }
  542. .cursor-pointer {
  543. cursor: pointer !important;
  544. }
  545. pre,
  546. code {
  547. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  548. }
  549. /*
  550. this file is generated automatically by searx_extra/update/update_pygments.py
  551. using pygments version 2.8.0
  552. */
  553. .code-highlight .linenos {
  554. -webkit-touch-callout: none;
  555. -webkit-user-select: none;
  556. -khtml-user-select: none;
  557. -moz-user-select: none;
  558. -ms-user-select: none;
  559. user-select: none;
  560. cursor: default;
  561. margin-right: 8px;
  562. text-align: right;
  563. }
  564. .code-highlight .linenos::selection {
  565. background: transparent;
  566. /* WebKit/Blink Browsers */
  567. }
  568. .code-highlight .linenos::-moz-selection {
  569. background: transparent;
  570. /* Gecko Browsers */
  571. }
  572. .code-highlight pre {
  573. line-height: 125%;
  574. }
  575. .code-highlight td.linenos .normal {
  576. color: inherit;
  577. background-color: transparent;
  578. padding-left: 5px;
  579. padding-right: 5px;
  580. }
  581. .code-highlight span.linenos {
  582. color: inherit;
  583. background-color: transparent;
  584. padding-left: 5px;
  585. padding-right: 5px;
  586. }
  587. .code-highlight td.linenos .special {
  588. color: #000000;
  589. background-color: #ffffc0;
  590. padding-left: 5px;
  591. padding-right: 5px;
  592. }
  593. .code-highlight span.linenos.special {
  594. color: #000000;
  595. background-color: #ffffc0;
  596. padding-left: 5px;
  597. padding-right: 5px;
  598. }
  599. .code-highlight .hll {
  600. background-color: #ffffcc;
  601. }
  602. .code-highlight {
  603. background: #282C34;
  604. }
  605. .code-highlight .c {
  606. color: #556366;
  607. font-style: italic;
  608. }
  609. /* Comment */
  610. .code-highlight .err {
  611. border: 1px solid #ff0000;
  612. }
  613. /* Error */
  614. .code-highlight .k {
  615. color: #BE74D5;
  616. font-weight: bold;
  617. }
  618. /* Keyword */
  619. .code-highlight .o {
  620. color: #D19A66;
  621. }
  622. /* Operator */
  623. .code-highlight .ch {
  624. color: #556366;
  625. font-style: italic;
  626. }
  627. /* Comment.Hashbang */
  628. .code-highlight .cm {
  629. color: #556366;
  630. font-style: italic;
  631. }
  632. /* Comment.Multiline */
  633. .code-highlight .cp {
  634. color: #BC7A00;
  635. font-style: italic;
  636. }
  637. /* Comment.Preproc */
  638. .code-highlight .cpf {
  639. color: #556366;
  640. font-style: italic;
  641. }
  642. /* Comment.PreprocFile */
  643. .code-highlight .c1 {
  644. color: #556366;
  645. font-style: italic;
  646. }
  647. /* Comment.Single */
  648. .code-highlight .cs {
  649. color: #556366;
  650. font-style: italic;
  651. }
  652. /* Comment.Special */
  653. .code-highlight .gd {
  654. color: #A00000;
  655. }
  656. /* Generic.Deleted */
  657. .code-highlight .ge {
  658. font-style: italic;
  659. }
  660. /* Generic.Emph */
  661. .code-highlight .gr {
  662. color: #FF0000;
  663. }
  664. /* Generic.Error */
  665. .code-highlight .gh {
  666. color: #000080;
  667. font-weight: bold;
  668. }
  669. /* Generic.Heading */
  670. .code-highlight .gi {
  671. color: #00A000;
  672. }
  673. /* Generic.Inserted */
  674. .code-highlight .go {
  675. color: #888888;
  676. }
  677. /* Generic.Output */
  678. .code-highlight .gp {
  679. color: #000080;
  680. font-weight: bold;
  681. }
  682. /* Generic.Prompt */
  683. .code-highlight .gs {
  684. font-weight: bold;
  685. }
  686. /* Generic.Strong */
  687. .code-highlight .gu {
  688. color: #800080;
  689. font-weight: bold;
  690. }
  691. /* Generic.Subheading */
  692. .code-highlight .gt {
  693. color: #0044DD;
  694. }
  695. /* Generic.Traceback */
  696. .code-highlight .kc {
  697. color: #BE74D5;
  698. font-weight: bold;
  699. }
  700. /* Keyword.Constant */
  701. .code-highlight .kd {
  702. color: #BE74D5;
  703. font-weight: bold;
  704. }
  705. /* Keyword.Declaration */
  706. .code-highlight .kn {
  707. color: #BE74D5;
  708. font-weight: bold;
  709. }
  710. /* Keyword.Namespace */
  711. .code-highlight .kp {
  712. color: #BE74D5;
  713. font-weight: bold;
  714. }
  715. /* Keyword.Pseudo */
  716. .code-highlight .kr {
  717. color: #BE74D5;
  718. font-weight: bold;
  719. }
  720. /* Keyword.Reserved */
  721. .code-highlight .kt {
  722. color: #D46C72;
  723. font-weight: bold;
  724. }
  725. /* Keyword.Type */
  726. .code-highlight .m {
  727. color: #D19A66;
  728. }
  729. /* Literal.Number */
  730. .code-highlight .s {
  731. color: #86C372;
  732. }
  733. /* Literal.String */
  734. .code-highlight .na {
  735. color: #7D9029;
  736. }
  737. /* Name.Attribute */
  738. .code-highlight .nb {
  739. color: #BE74D5;
  740. }
  741. /* Name.Builtin */
  742. .code-highlight .nc {
  743. color: #61AFEF;
  744. font-weight: bold;
  745. }
  746. /* Name.Class */
  747. .code-highlight .no {
  748. color: #D19A66;
  749. }
  750. /* Name.Constant */
  751. .code-highlight .nd {
  752. color: #AA22FF;
  753. }
  754. /* Name.Decorator */
  755. .code-highlight .ni {
  756. color: #999999;
  757. font-weight: bold;
  758. }
  759. /* Name.Entity */
  760. .code-highlight .ne {
  761. color: #D2413A;
  762. font-weight: bold;
  763. }
  764. /* Name.Exception */
  765. .code-highlight .nf {
  766. color: #61AFEF;
  767. }
  768. /* Name.Function */
  769. .code-highlight .nl {
  770. color: #A0A000;
  771. }
  772. /* Name.Label */
  773. .code-highlight .nn {
  774. color: #61AFEF;
  775. font-weight: bold;
  776. }
  777. /* Name.Namespace */
  778. .code-highlight .nt {
  779. color: #BE74D5;
  780. font-weight: bold;
  781. }
  782. /* Name.Tag */
  783. .code-highlight .nv {
  784. color: #DFC06F;
  785. }
  786. /* Name.Variable */
  787. .code-highlight .ow {
  788. color: #AA22FF;
  789. font-weight: bold;
  790. }
  791. /* Operator.Word */
  792. .code-highlight .w {
  793. color: #D7DAE0;
  794. }
  795. /* Text.Whitespace */
  796. .code-highlight .mb {
  797. color: #D19A66;
  798. }
  799. /* Literal.Number.Bin */
  800. .code-highlight .mf {
  801. color: #D19A66;
  802. }
  803. /* Literal.Number.Float */
  804. .code-highlight .mh {
  805. color: #D19A66;
  806. }
  807. /* Literal.Number.Hex */
  808. .code-highlight .mi {
  809. color: #D19A66;
  810. }
  811. /* Literal.Number.Integer */
  812. .code-highlight .mo {
  813. color: #D19A66;
  814. }
  815. /* Literal.Number.Oct */
  816. .code-highlight .sa {
  817. color: #86C372;
  818. }
  819. /* Literal.String.Affix */
  820. .code-highlight .sb {
  821. color: #86C372;
  822. }
  823. /* Literal.String.Backtick */
  824. .code-highlight .sc {
  825. color: #86C372;
  826. }
  827. /* Literal.String.Char */
  828. .code-highlight .dl {
  829. color: #86C372;
  830. }
  831. /* Literal.String.Delimiter */
  832. .code-highlight .sd {
  833. color: #86C372;
  834. font-style: italic;
  835. }
  836. /* Literal.String.Doc */
  837. .code-highlight .s2 {
  838. color: #86C372;
  839. }
  840. /* Literal.String.Double */
  841. .code-highlight .se {
  842. color: #BB6622;
  843. font-weight: bold;
  844. }
  845. /* Literal.String.Escape */
  846. .code-highlight .sh {
  847. color: #86C372;
  848. }
  849. /* Literal.String.Heredoc */
  850. .code-highlight .si {
  851. color: #BB6688;
  852. font-weight: bold;
  853. }
  854. /* Literal.String.Interpol */
  855. .code-highlight .sx {
  856. color: #BE74D5;
  857. }
  858. /* Literal.String.Other */
  859. .code-highlight .sr {
  860. color: #BB6688;
  861. }
  862. /* Literal.String.Regex */
  863. .code-highlight .s1 {
  864. color: #86C372;
  865. }
  866. /* Literal.String.Single */
  867. .code-highlight .ss {
  868. color: #DFC06F;
  869. }
  870. /* Literal.String.Symbol */
  871. .code-highlight .bp {
  872. color: #BE74D5;
  873. }
  874. /* Name.Builtin.Pseudo */
  875. .code-highlight .fm {
  876. color: #61AFEF;
  877. }
  878. /* Name.Function.Magic */
  879. .code-highlight .vc {
  880. color: #DFC06F;
  881. }
  882. /* Name.Variable.Class */
  883. .code-highlight .vg {
  884. color: #DFC06F;
  885. }
  886. /* Name.Variable.Global */
  887. .code-highlight .vi {
  888. color: #DFC06F;
  889. }
  890. /* Name.Variable.Instance */
  891. .code-highlight .vm {
  892. color: #DFC06F;
  893. }
  894. /* Name.Variable.Magic */
  895. .code-highlight .il {
  896. color: #D19A66;
  897. }
  898. /* Literal.Number.Integer.Long */
  899. .code-highlight pre {
  900. margin-bottom: 25px;
  901. padding: 20px 10px;
  902. background-color: inherit;
  903. color: inherit;
  904. border: inherit;
  905. color: #D7DAE0;
  906. }
  907. .table > tbody > tr > td,
  908. .table > tbody > tr > th {
  909. vertical-align: middle !important;
  910. }
  911. .nav-tabs.nav-justified {
  912. margin-bottom: 20px;
  913. }
  914. p {
  915. margin: 10px 0;
  916. }
  917. input.cursor-text {
  918. margin: 10px 0;
  919. }
  920. .engine-tooltip {
  921. display: none;
  922. position: absolute;
  923. padding: 0.5rem 1rem;
  924. margin: 0rem 0 0 2rem;
  925. border: 1px solid #ddd;
  926. box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  927. background: white;
  928. font-size: 14px;
  929. font-weight: normal;
  930. z-index: 1000000;
  931. }
  932. td:hover .engine-tooltip,
  933. th:hover .engine-tooltip,
  934. .engine-tooltip:hover {
  935. display: inline-block;
  936. }
  937. /* stacked-bar-chart */
  938. .stacked-bar-chart {
  939. margin: 0;
  940. padding: 0 0.125rem 0 3rem;
  941. width: 100%;
  942. width: -moz-available;
  943. width: -webkit-fill-available;
  944. width: fill;
  945. flex-direction: row;
  946. flex-wrap: nowrap;
  947. flex-grow: 1;
  948. align-items: center;
  949. display: inline-flex;
  950. }
  951. .stacked-bar-chart-value {
  952. width: 3rem;
  953. display: inline-block;
  954. position: absolute;
  955. padding: 0 0.5rem;
  956. text-align: right;
  957. }
  958. .stacked-bar-chart-base {
  959. display: flex;
  960. flex-shrink: 0;
  961. flex-grow: 0;
  962. flex-basis: unset;
  963. }
  964. .stacked-bar-chart-median {
  965. display: flex;
  966. flex-shrink: 0;
  967. flex-grow: 0;
  968. flex-basis: unset;
  969. background: #000000;
  970. border: 1px solid rgba(0, 0, 0, 0.9);
  971. padding: 0.3rem 0;
  972. }
  973. .stacked-bar-chart-rate80 {
  974. display: flex;
  975. flex-shrink: 0;
  976. flex-grow: 0;
  977. flex-basis: unset;
  978. background: transparent;
  979. border: 1px solid rgba(0, 0, 0, 0.3);
  980. padding: 0.3rem 0;
  981. }
  982. .stacked-bar-chart-rate95 {
  983. display: flex;
  984. flex-shrink: 0;
  985. flex-grow: 0;
  986. flex-basis: unset;
  987. background: transparent;
  988. border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  989. padding: 0;
  990. }
  991. .stacked-bar-chart-rate100 {
  992. display: flex;
  993. flex-shrink: 0;
  994. flex-grow: 0;
  995. flex-basis: unset;
  996. background: transparent;
  997. border-left: 1px solid rgba(0, 0, 0, 0.9);
  998. padding: 0.4rem 0;
  999. width: 1px;
  1000. }