logicodev-dark.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  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. width: 24%;
  206. margin: 0.5%;
  207. }
  208. .result-images a {
  209. display: block;
  210. width: 100%;
  211. background-size: cover;
  212. }
  213. .img-thumbnail {
  214. margin: 5px;
  215. max-height: 128px;
  216. min-height: 128px;
  217. }
  218. .result-videos {
  219. clear: both;
  220. }
  221. .result-videos hr {
  222. margin: 5px 0 15px 0;
  223. }
  224. .result-videos .collapse {
  225. width: 100%;
  226. }
  227. .result-videos .in {
  228. margin-bottom: 8px;
  229. }
  230. .result-torrent {
  231. clear: both;
  232. }
  233. .result-torrent b {
  234. margin-right: 5px;
  235. margin-left: 5px;
  236. }
  237. .result-torrent .seeders {
  238. color: #2ecc71;
  239. }
  240. .result-torrent .leechers {
  241. color: #F35E77;
  242. }
  243. .result-metadata {
  244. clear: both;
  245. margin: 1em;
  246. }
  247. .result-metadata td {
  248. padding-right: 1em;
  249. color: #A4A4A4;
  250. }
  251. .result-metadata td:first-of-type {
  252. color: #666;
  253. }
  254. .result-map {
  255. clear: both;
  256. }
  257. .result-code {
  258. clear: both;
  259. }
  260. .result-code .code-fork,
  261. .result-code .code-fork a {
  262. color: #666;
  263. }
  264. .suggestion_item {
  265. margin: 2px 5px;
  266. max-width: 100%;
  267. }
  268. .suggestion_item .btn {
  269. max-width: 100%;
  270. white-space: normal;
  271. word-wrap: break-word;
  272. text-align: left;
  273. }
  274. .result_download {
  275. margin-right: 5px;
  276. }
  277. #pagination {
  278. margin-top: 30px;
  279. padding-bottom: 60px;
  280. }
  281. .label-default {
  282. color: #666;
  283. background: transparent;
  284. }
  285. .result .text-muted small {
  286. word-wrap: break-word;
  287. }
  288. .modal-wrapper {
  289. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  290. }
  291. .modal-wrapper {
  292. background-clip: padding-box;
  293. background-color: #fff;
  294. border: 1px solid rgba(0, 0, 0, 0.2);
  295. border-radius: 6px;
  296. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  297. outline: 0 none;
  298. position: relative;
  299. }
  300. @media screen and (max-width: 75em) {
  301. .img-thumbnail {
  302. object-fit: cover;
  303. }
  304. }
  305. .infobox .panel-heading {
  306. background-color: #F6F9FA;
  307. }
  308. .infobox .panel-heading .panel-title {
  309. font-weight: 700;
  310. }
  311. .infobox .header_url {
  312. white-space: nowrap;
  313. overflow: hidden;
  314. text-overflow: ellipsis;
  315. display: block;
  316. }
  317. .infobox p {
  318. font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
  319. font-style: italic;
  320. }
  321. .infobox img {
  322. max-height: "250px";
  323. }
  324. .infobox .btn {
  325. background-color: #007AB8;
  326. border: none;
  327. }
  328. .infobox .btn a {
  329. color: white;
  330. margin: 5px;
  331. }
  332. .infobox .infobox_part {
  333. margin-bottom: 20px;
  334. word-wrap: break-word;
  335. table-layout: fixed;
  336. }
  337. .infobox .infobox_part:last-child {
  338. margin-bottom: 0;
  339. }
  340. .infobox .infobox_toggle {
  341. width: 100%;
  342. text-align: center;
  343. margin-bottom: 0px;
  344. cursor: pointer;
  345. }
  346. .infobox .infobox_toggle:hover {
  347. background: #DDD;
  348. }
  349. .infobox .infobox_checkbox ~ .infobox_body {
  350. max-height: 300px;
  351. overflow: hidden;
  352. }
  353. .infobox .infobox_checkbox:checked ~ .infobox_body {
  354. max-height: none;
  355. }
  356. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  357. display: block;
  358. }
  359. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  360. display: none;
  361. }
  362. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  363. display: block;
  364. }
  365. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  366. display: none;
  367. }
  368. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  369. display: none;
  370. }
  371. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  372. display: block;
  373. }
  374. .search_categories,
  375. #categories {
  376. text-transform: capitalize;
  377. margin-bottom: 0.5rem;
  378. display: flex;
  379. flex-wrap: wrap;
  380. flex-flow: row wrap;
  381. align-content: stretch;
  382. }
  383. .search_categories label,
  384. #categories label,
  385. .search_categories .input-group-addon,
  386. #categories .input-group-addon {
  387. flex-grow: 1;
  388. flex-basis: auto;
  389. font-size: 1.2rem;
  390. font-weight: normal;
  391. background-color: white;
  392. border: #DDD 1px solid;
  393. border-right: none;
  394. color: #666;
  395. padding-bottom: 0.4rem;
  396. padding-top: 0.4rem;
  397. text-align: center;
  398. min-width: 50px;
  399. }
  400. .search_categories label:last-child,
  401. #categories label:last-child,
  402. .search_categories .input-group-addon:last-child,
  403. #categories .input-group-addon:last-child {
  404. border-right: #DDD 1px solid;
  405. }
  406. .search_categories input[type="checkbox"]:checked + label,
  407. #categories input[type="checkbox"]:checked + label {
  408. color: #29314D;
  409. font-weight: bold;
  410. border-bottom: #01D7D4 5px solid;
  411. }
  412. #main-logo {
  413. margin-top: 10vh;
  414. margin-bottom: 25px;
  415. }
  416. #main-logo > img {
  417. max-width: 350px;
  418. width: 80%;
  419. }
  420. #q {
  421. box-shadow: none;
  422. border-right: none;
  423. border-color: #888;
  424. }
  425. #search_form .input-group-btn .btn {
  426. border-color: #888;
  427. }
  428. #search_form .input-group-btn .btn:hover {
  429. background-color: #068922;
  430. color: white;
  431. }
  432. .custom-select,
  433. .custom-select-rtl {
  434. appearance: none;
  435. -webkit-appearance: none;
  436. -moz-appearance: none;
  437. font-size: 1.2rem;
  438. font-weight: normal;
  439. background-color: white;
  440. border: #888 1px solid;
  441. color: #666;
  442. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGnsAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW86/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wNy0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
  443. }
  444. .custom-select-rtl {
  445. background-position-x: 4%;
  446. }
  447. .search-margin {
  448. margin-bottom: 0.6em;
  449. }
  450. .visually-hidden {
  451. position: absolute !important;
  452. height: 1px;
  453. width: 1px;
  454. overflow: hidden;
  455. clip: rect(1px, 1px, 1px, 1px);
  456. white-space: nowrap;
  457. }
  458. .label-danger,
  459. .btn-danger {
  460. background: #c9432f;
  461. }
  462. .label-success,
  463. .btn-success {
  464. background: #068922;
  465. }
  466. select.form-control {
  467. border-color: #888 !important;
  468. }
  469. #advanced-search-container {
  470. display: none;
  471. text-align: left;
  472. margin-bottom: 1rem;
  473. clear: both;
  474. }
  475. #advanced-search-container label,
  476. #advanced-search-container .input-group-addon {
  477. font-size: 1.2rem;
  478. font-weight: normal;
  479. background-color: white;
  480. border: #DDD 1px solid;
  481. border-right: none;
  482. color: #666;
  483. padding-bottom: 0.4rem;
  484. padding-right: 0.7rem;
  485. padding-left: 0.7rem;
  486. }
  487. #advanced-search-container label:last-child,
  488. #advanced-search-container .input-group-addon:last-child {
  489. border-right: #DDD 1px solid;
  490. }
  491. #advanced-search-container input[type="radio"] {
  492. display: none;
  493. }
  494. #advanced-search-container input[type="radio"]:checked + label {
  495. color: #29314D;
  496. font-weight: bold;
  497. border-bottom: #01D7D4 5px solid;
  498. }
  499. #check-advanced:focus + label {
  500. text-decoration: underline;
  501. }
  502. #check-advanced:checked ~ #advanced-search-container {
  503. display: block;
  504. }
  505. .advanced {
  506. padding: 0;
  507. margin-top: 0.3rem;
  508. text-align: right;
  509. }
  510. .advanced label,
  511. .advanced select {
  512. cursor: pointer;
  513. }
  514. .cursor-text {
  515. cursor: text !important;
  516. }
  517. .cursor-pointer {
  518. cursor: pointer !important;
  519. }
  520. pre,
  521. code {
  522. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  523. }
  524. /*
  525. this file is generated automatically by searx_extra/update/update_pygments.py
  526. using pygments version 2.8.0
  527. */
  528. .code-highlight .linenos {
  529. -webkit-touch-callout: none;
  530. -webkit-user-select: none;
  531. -khtml-user-select: none;
  532. -moz-user-select: none;
  533. -ms-user-select: none;
  534. user-select: none;
  535. cursor: default;
  536. margin-right: 8px;
  537. text-align: right;
  538. }
  539. .code-highlight .linenos::selection {
  540. background: transparent;
  541. /* WebKit/Blink Browsers */
  542. }
  543. .code-highlight .linenos::-moz-selection {
  544. background: transparent;
  545. /* Gecko Browsers */
  546. }
  547. .code-highlight pre {
  548. line-height: 125%;
  549. }
  550. .code-highlight td.linenos .normal {
  551. color: inherit;
  552. background-color: transparent;
  553. padding-left: 5px;
  554. padding-right: 5px;
  555. }
  556. .code-highlight span.linenos {
  557. color: inherit;
  558. background-color: transparent;
  559. padding-left: 5px;
  560. padding-right: 5px;
  561. }
  562. .code-highlight td.linenos .special {
  563. color: #000000;
  564. background-color: #ffffc0;
  565. padding-left: 5px;
  566. padding-right: 5px;
  567. }
  568. .code-highlight span.linenos.special {
  569. color: #000000;
  570. background-color: #ffffc0;
  571. padding-left: 5px;
  572. padding-right: 5px;
  573. }
  574. .code-highlight .hll {
  575. background-color: #ffffcc;
  576. }
  577. .code-highlight {
  578. background: #282C34;
  579. }
  580. .code-highlight .c {
  581. color: #556366;
  582. font-style: italic;
  583. }
  584. /* Comment */
  585. .code-highlight .err {
  586. border: 1px solid #ff0000;
  587. }
  588. /* Error */
  589. .code-highlight .k {
  590. color: #BE74D5;
  591. font-weight: bold;
  592. }
  593. /* Keyword */
  594. .code-highlight .o {
  595. color: #D19A66;
  596. }
  597. /* Operator */
  598. .code-highlight .ch {
  599. color: #556366;
  600. font-style: italic;
  601. }
  602. /* Comment.Hashbang */
  603. .code-highlight .cm {
  604. color: #556366;
  605. font-style: italic;
  606. }
  607. /* Comment.Multiline */
  608. .code-highlight .cp {
  609. color: #BC7A00;
  610. font-style: italic;
  611. }
  612. /* Comment.Preproc */
  613. .code-highlight .cpf {
  614. color: #556366;
  615. font-style: italic;
  616. }
  617. /* Comment.PreprocFile */
  618. .code-highlight .c1 {
  619. color: #556366;
  620. font-style: italic;
  621. }
  622. /* Comment.Single */
  623. .code-highlight .cs {
  624. color: #556366;
  625. font-style: italic;
  626. }
  627. /* Comment.Special */
  628. .code-highlight .gd {
  629. color: #A00000;
  630. }
  631. /* Generic.Deleted */
  632. .code-highlight .ge {
  633. font-style: italic;
  634. }
  635. /* Generic.Emph */
  636. .code-highlight .gr {
  637. color: #FF0000;
  638. }
  639. /* Generic.Error */
  640. .code-highlight .gh {
  641. color: #000080;
  642. font-weight: bold;
  643. }
  644. /* Generic.Heading */
  645. .code-highlight .gi {
  646. color: #00A000;
  647. }
  648. /* Generic.Inserted */
  649. .code-highlight .go {
  650. color: #888888;
  651. }
  652. /* Generic.Output */
  653. .code-highlight .gp {
  654. color: #000080;
  655. font-weight: bold;
  656. }
  657. /* Generic.Prompt */
  658. .code-highlight .gs {
  659. font-weight: bold;
  660. }
  661. /* Generic.Strong */
  662. .code-highlight .gu {
  663. color: #800080;
  664. font-weight: bold;
  665. }
  666. /* Generic.Subheading */
  667. .code-highlight .gt {
  668. color: #0044DD;
  669. }
  670. /* Generic.Traceback */
  671. .code-highlight .kc {
  672. color: #BE74D5;
  673. font-weight: bold;
  674. }
  675. /* Keyword.Constant */
  676. .code-highlight .kd {
  677. color: #BE74D5;
  678. font-weight: bold;
  679. }
  680. /* Keyword.Declaration */
  681. .code-highlight .kn {
  682. color: #BE74D5;
  683. font-weight: bold;
  684. }
  685. /* Keyword.Namespace */
  686. .code-highlight .kp {
  687. color: #BE74D5;
  688. font-weight: bold;
  689. }
  690. /* Keyword.Pseudo */
  691. .code-highlight .kr {
  692. color: #BE74D5;
  693. font-weight: bold;
  694. }
  695. /* Keyword.Reserved */
  696. .code-highlight .kt {
  697. color: #D46C72;
  698. font-weight: bold;
  699. }
  700. /* Keyword.Type */
  701. .code-highlight .m {
  702. color: #D19A66;
  703. }
  704. /* Literal.Number */
  705. .code-highlight .s {
  706. color: #86C372;
  707. }
  708. /* Literal.String */
  709. .code-highlight .na {
  710. color: #7D9029;
  711. }
  712. /* Name.Attribute */
  713. .code-highlight .nb {
  714. color: #BE74D5;
  715. }
  716. /* Name.Builtin */
  717. .code-highlight .nc {
  718. color: #61AFEF;
  719. font-weight: bold;
  720. }
  721. /* Name.Class */
  722. .code-highlight .no {
  723. color: #D19A66;
  724. }
  725. /* Name.Constant */
  726. .code-highlight .nd {
  727. color: #AA22FF;
  728. }
  729. /* Name.Decorator */
  730. .code-highlight .ni {
  731. color: #999999;
  732. font-weight: bold;
  733. }
  734. /* Name.Entity */
  735. .code-highlight .ne {
  736. color: #D2413A;
  737. font-weight: bold;
  738. }
  739. /* Name.Exception */
  740. .code-highlight .nf {
  741. color: #61AFEF;
  742. }
  743. /* Name.Function */
  744. .code-highlight .nl {
  745. color: #A0A000;
  746. }
  747. /* Name.Label */
  748. .code-highlight .nn {
  749. color: #61AFEF;
  750. font-weight: bold;
  751. }
  752. /* Name.Namespace */
  753. .code-highlight .nt {
  754. color: #BE74D5;
  755. font-weight: bold;
  756. }
  757. /* Name.Tag */
  758. .code-highlight .nv {
  759. color: #DFC06F;
  760. }
  761. /* Name.Variable */
  762. .code-highlight .ow {
  763. color: #AA22FF;
  764. font-weight: bold;
  765. }
  766. /* Operator.Word */
  767. .code-highlight .w {
  768. color: #D7DAE0;
  769. }
  770. /* Text.Whitespace */
  771. .code-highlight .mb {
  772. color: #D19A66;
  773. }
  774. /* Literal.Number.Bin */
  775. .code-highlight .mf {
  776. color: #D19A66;
  777. }
  778. /* Literal.Number.Float */
  779. .code-highlight .mh {
  780. color: #D19A66;
  781. }
  782. /* Literal.Number.Hex */
  783. .code-highlight .mi {
  784. color: #D19A66;
  785. }
  786. /* Literal.Number.Integer */
  787. .code-highlight .mo {
  788. color: #D19A66;
  789. }
  790. /* Literal.Number.Oct */
  791. .code-highlight .sa {
  792. color: #86C372;
  793. }
  794. /* Literal.String.Affix */
  795. .code-highlight .sb {
  796. color: #86C372;
  797. }
  798. /* Literal.String.Backtick */
  799. .code-highlight .sc {
  800. color: #86C372;
  801. }
  802. /* Literal.String.Char */
  803. .code-highlight .dl {
  804. color: #86C372;
  805. }
  806. /* Literal.String.Delimiter */
  807. .code-highlight .sd {
  808. color: #86C372;
  809. font-style: italic;
  810. }
  811. /* Literal.String.Doc */
  812. .code-highlight .s2 {
  813. color: #86C372;
  814. }
  815. /* Literal.String.Double */
  816. .code-highlight .se {
  817. color: #BB6622;
  818. font-weight: bold;
  819. }
  820. /* Literal.String.Escape */
  821. .code-highlight .sh {
  822. color: #86C372;
  823. }
  824. /* Literal.String.Heredoc */
  825. .code-highlight .si {
  826. color: #BB6688;
  827. font-weight: bold;
  828. }
  829. /* Literal.String.Interpol */
  830. .code-highlight .sx {
  831. color: #BE74D5;
  832. }
  833. /* Literal.String.Other */
  834. .code-highlight .sr {
  835. color: #BB6688;
  836. }
  837. /* Literal.String.Regex */
  838. .code-highlight .s1 {
  839. color: #86C372;
  840. }
  841. /* Literal.String.Single */
  842. .code-highlight .ss {
  843. color: #DFC06F;
  844. }
  845. /* Literal.String.Symbol */
  846. .code-highlight .bp {
  847. color: #BE74D5;
  848. }
  849. /* Name.Builtin.Pseudo */
  850. .code-highlight .fm {
  851. color: #61AFEF;
  852. }
  853. /* Name.Function.Magic */
  854. .code-highlight .vc {
  855. color: #DFC06F;
  856. }
  857. /* Name.Variable.Class */
  858. .code-highlight .vg {
  859. color: #DFC06F;
  860. }
  861. /* Name.Variable.Global */
  862. .code-highlight .vi {
  863. color: #DFC06F;
  864. }
  865. /* Name.Variable.Instance */
  866. .code-highlight .vm {
  867. color: #DFC06F;
  868. }
  869. /* Name.Variable.Magic */
  870. .code-highlight .il {
  871. color: #D19A66;
  872. }
  873. /* Literal.Number.Integer.Long */
  874. .code-highlight pre {
  875. margin-bottom: 25px;
  876. padding: 20px 10px;
  877. background-color: inherit;
  878. color: inherit;
  879. border: inherit;
  880. color: #D7DAE0;
  881. }
  882. .table > tbody > tr > td,
  883. .table > tbody > tr > th {
  884. vertical-align: middle !important;
  885. }
  886. .nav-tabs.nav-justified {
  887. margin-bottom: 20px;
  888. }
  889. p {
  890. margin: 10px 0;
  891. }
  892. input.cursor-text {
  893. margin: 10px 0;
  894. }
  895. .engine-tooltip {
  896. display: none;
  897. position: absolute;
  898. padding: 0.5rem 1rem;
  899. margin: 0rem 0 0 2rem;
  900. border: 1px solid #ddd;
  901. background: white;
  902. font-size: 14px;
  903. font-weight: normal;
  904. z-index: 1000000;
  905. }
  906. th:hover .engine-tooltip,
  907. .engine-tooltip:hover {
  908. display: inline-block;
  909. }