logicodev-dark.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900
  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. }
  345. .infobox .infobox_checkbox ~ .infobox_body {
  346. max-height: 300px;
  347. overflow: hidden;
  348. }
  349. .infobox .infobox_checkbox:checked ~ .infobox_body {
  350. max-height: none;
  351. }
  352. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  353. display: block;
  354. }
  355. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  356. display: none;
  357. }
  358. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  359. display: block;
  360. }
  361. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  362. display: none;
  363. }
  364. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  365. display: none;
  366. }
  367. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  368. display: block;
  369. }
  370. .search_categories,
  371. #categories {
  372. text-transform: capitalize;
  373. margin-bottom: 0.5rem;
  374. display: flex;
  375. flex-wrap: wrap;
  376. flex-flow: row wrap;
  377. align-content: stretch;
  378. }
  379. .search_categories label,
  380. #categories label,
  381. .search_categories .input-group-addon,
  382. #categories .input-group-addon {
  383. flex-grow: 1;
  384. flex-basis: auto;
  385. font-size: 1.2rem;
  386. font-weight: normal;
  387. background-color: white;
  388. border: #DDD 1px solid;
  389. border-right: none;
  390. color: #666;
  391. padding-bottom: 0.4rem;
  392. padding-top: 0.4rem;
  393. text-align: center;
  394. min-width: 50px;
  395. }
  396. .search_categories label:last-child,
  397. #categories label:last-child,
  398. .search_categories .input-group-addon:last-child,
  399. #categories .input-group-addon:last-child {
  400. border-right: #DDD 1px solid;
  401. }
  402. .search_categories input[type="checkbox"]:checked + label,
  403. #categories input[type="checkbox"]:checked + label {
  404. color: #29314D;
  405. font-weight: bold;
  406. border-bottom: #01D7D4 5px solid;
  407. }
  408. #main-logo {
  409. margin-top: 10vh;
  410. margin-bottom: 25px;
  411. }
  412. #main-logo > img {
  413. max-width: 350px;
  414. width: 80%;
  415. }
  416. #q {
  417. box-shadow: none;
  418. border-right: none;
  419. border-color: #888;
  420. }
  421. #search_form .input-group-btn .btn {
  422. border-color: #888;
  423. }
  424. #search_form .input-group-btn .btn:hover {
  425. background-color: #068922;
  426. color: white;
  427. }
  428. .custom-select,
  429. .custom-select-rtl {
  430. appearance: none;
  431. -webkit-appearance: none;
  432. -moz-appearance: none;
  433. font-size: 1.2rem;
  434. font-weight: normal;
  435. background-color: white;
  436. border: #888 1px solid;
  437. color: #666;
  438. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJN
  439. AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZ
  440. cwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGn
  441. sAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW8
  442. 6/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0
  443. ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0w
  444. Ny0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb
  445. 7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
  446. }
  447. .custom-select-rtl {
  448. background-position-x: 4%;
  449. }
  450. .search-margin {
  451. margin-bottom: 0.6em;
  452. }
  453. .visually-hidden {
  454. position: absolute !important;
  455. height: 1px;
  456. width: 1px;
  457. overflow: hidden;
  458. clip: rect(1px 1px 1px 1px);
  459. /* IE6, IE7 */
  460. clip: rect(1px, 1px, 1px, 1px);
  461. white-space: nowrap;
  462. /* added line */
  463. }
  464. .label-danger,
  465. .btn-danger {
  466. background: #c9432f;
  467. }
  468. .label-success,
  469. .btn-success {
  470. background: #068922;
  471. }
  472. select.form-control {
  473. border-color: #888 !important;
  474. }
  475. #advanced-search-container {
  476. display: none;
  477. text-align: left;
  478. margin-bottom: 1rem;
  479. clear: both;
  480. }
  481. #advanced-search-container label,
  482. #advanced-search-container .input-group-addon {
  483. font-size: 1.2rem;
  484. font-weight: normal;
  485. background-color: white;
  486. border: #DDD 1px solid;
  487. border-right: none;
  488. color: #666;
  489. padding-bottom: 0.4rem;
  490. padding-right: 0.7rem;
  491. padding-left: 0.7rem;
  492. }
  493. #advanced-search-container label:last-child,
  494. #advanced-search-container .input-group-addon:last-child {
  495. border-right: #DDD 1px solid;
  496. }
  497. #advanced-search-container input[type="radio"] {
  498. display: none;
  499. }
  500. #advanced-search-container input[type="radio"]:checked + label {
  501. color: #29314D;
  502. font-weight: bold;
  503. border-bottom: #01D7D4 5px solid;
  504. }
  505. #check-advanced:focus + label {
  506. text-decoration: underline;
  507. }
  508. #check-advanced:checked ~ #advanced-search-container {
  509. display: block;
  510. }
  511. .advanced {
  512. padding: 0;
  513. margin-top: 0.3rem;
  514. text-align: right;
  515. }
  516. .advanced label,
  517. .advanced select {
  518. cursor: pointer;
  519. }
  520. .cursor-text {
  521. cursor: text !important;
  522. }
  523. .cursor-pointer {
  524. cursor: pointer !important;
  525. }
  526. pre,
  527. code {
  528. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  529. }
  530. /*
  531. this file is generated automatically by searx_extra/update/update_pygments.py
  532. using pygments version 2.8.0
  533. */
  534. .code-highlight .linenos {
  535. -webkit-touch-callout: none;
  536. -webkit-user-select: none;
  537. -khtml-user-select: none;
  538. -moz-user-select: none;
  539. -ms-user-select: none;
  540. user-select: none;
  541. cursor: default;
  542. margin-right: 8px;
  543. text-align: right;
  544. }
  545. .code-highlight .linenos::selection {
  546. background: transparent;
  547. /* WebKit/Blink Browsers */
  548. }
  549. .code-highlight .linenos::-moz-selection {
  550. background: transparent;
  551. /* Gecko Browsers */
  552. }
  553. .code-highlight pre {
  554. line-height: 125%;
  555. }
  556. .code-highlight td.linenos .normal {
  557. color: inherit;
  558. background-color: transparent;
  559. padding-left: 5px;
  560. padding-right: 5px;
  561. }
  562. .code-highlight span.linenos {
  563. color: inherit;
  564. background-color: transparent;
  565. padding-left: 5px;
  566. padding-right: 5px;
  567. }
  568. .code-highlight td.linenos .special {
  569. color: #000000;
  570. background-color: #ffffc0;
  571. padding-left: 5px;
  572. padding-right: 5px;
  573. }
  574. .code-highlight span.linenos.special {
  575. color: #000000;
  576. background-color: #ffffc0;
  577. padding-left: 5px;
  578. padding-right: 5px;
  579. }
  580. .code-highlight .hll {
  581. background-color: #ffffcc;
  582. }
  583. .code-highlight {
  584. background: #282C34;
  585. }
  586. .code-highlight .c {
  587. color: #556366;
  588. font-style: italic;
  589. }
  590. /* Comment */
  591. .code-highlight .err {
  592. border: 1px solid #ff0000;
  593. }
  594. /* Error */
  595. .code-highlight .k {
  596. color: #BE74D5;
  597. font-weight: bold;
  598. }
  599. /* Keyword */
  600. .code-highlight .o {
  601. color: #D19A66;
  602. }
  603. /* Operator */
  604. .code-highlight .ch {
  605. color: #556366;
  606. font-style: italic;
  607. }
  608. /* Comment.Hashbang */
  609. .code-highlight .cm {
  610. color: #556366;
  611. font-style: italic;
  612. }
  613. /* Comment.Multiline */
  614. .code-highlight .cp {
  615. color: #BC7A00;
  616. font-style: italic;
  617. }
  618. /* Comment.Preproc */
  619. .code-highlight .cpf {
  620. color: #556366;
  621. font-style: italic;
  622. }
  623. /* Comment.PreprocFile */
  624. .code-highlight .c1 {
  625. color: #556366;
  626. font-style: italic;
  627. }
  628. /* Comment.Single */
  629. .code-highlight .cs {
  630. color: #556366;
  631. font-style: italic;
  632. }
  633. /* Comment.Special */
  634. .code-highlight .gd {
  635. color: #A00000;
  636. }
  637. /* Generic.Deleted */
  638. .code-highlight .ge {
  639. font-style: italic;
  640. }
  641. /* Generic.Emph */
  642. .code-highlight .gr {
  643. color: #FF0000;
  644. }
  645. /* Generic.Error */
  646. .code-highlight .gh {
  647. color: #000080;
  648. font-weight: bold;
  649. }
  650. /* Generic.Heading */
  651. .code-highlight .gi {
  652. color: #00A000;
  653. }
  654. /* Generic.Inserted */
  655. .code-highlight .go {
  656. color: #888888;
  657. }
  658. /* Generic.Output */
  659. .code-highlight .gp {
  660. color: #000080;
  661. font-weight: bold;
  662. }
  663. /* Generic.Prompt */
  664. .code-highlight .gs {
  665. font-weight: bold;
  666. }
  667. /* Generic.Strong */
  668. .code-highlight .gu {
  669. color: #800080;
  670. font-weight: bold;
  671. }
  672. /* Generic.Subheading */
  673. .code-highlight .gt {
  674. color: #0044DD;
  675. }
  676. /* Generic.Traceback */
  677. .code-highlight .kc {
  678. color: #BE74D5;
  679. font-weight: bold;
  680. }
  681. /* Keyword.Constant */
  682. .code-highlight .kd {
  683. color: #BE74D5;
  684. font-weight: bold;
  685. }
  686. /* Keyword.Declaration */
  687. .code-highlight .kn {
  688. color: #BE74D5;
  689. font-weight: bold;
  690. }
  691. /* Keyword.Namespace */
  692. .code-highlight .kp {
  693. color: #BE74D5;
  694. font-weight: bold;
  695. }
  696. /* Keyword.Pseudo */
  697. .code-highlight .kr {
  698. color: #BE74D5;
  699. font-weight: bold;
  700. }
  701. /* Keyword.Reserved */
  702. .code-highlight .kt {
  703. color: #D46C72;
  704. font-weight: bold;
  705. }
  706. /* Keyword.Type */
  707. .code-highlight .m {
  708. color: #D19A66;
  709. }
  710. /* Literal.Number */
  711. .code-highlight .s {
  712. color: #86C372;
  713. }
  714. /* Literal.String */
  715. .code-highlight .na {
  716. color: #7D9029;
  717. }
  718. /* Name.Attribute */
  719. .code-highlight .nb {
  720. color: #BE74D5;
  721. }
  722. /* Name.Builtin */
  723. .code-highlight .nc {
  724. color: #61AFEF;
  725. font-weight: bold;
  726. }
  727. /* Name.Class */
  728. .code-highlight .no {
  729. color: #D19A66;
  730. }
  731. /* Name.Constant */
  732. .code-highlight .nd {
  733. color: #AA22FF;
  734. }
  735. /* Name.Decorator */
  736. .code-highlight .ni {
  737. color: #999999;
  738. font-weight: bold;
  739. }
  740. /* Name.Entity */
  741. .code-highlight .ne {
  742. color: #D2413A;
  743. font-weight: bold;
  744. }
  745. /* Name.Exception */
  746. .code-highlight .nf {
  747. color: #61AFEF;
  748. }
  749. /* Name.Function */
  750. .code-highlight .nl {
  751. color: #A0A000;
  752. }
  753. /* Name.Label */
  754. .code-highlight .nn {
  755. color: #61AFEF;
  756. font-weight: bold;
  757. }
  758. /* Name.Namespace */
  759. .code-highlight .nt {
  760. color: #BE74D5;
  761. font-weight: bold;
  762. }
  763. /* Name.Tag */
  764. .code-highlight .nv {
  765. color: #DFC06F;
  766. }
  767. /* Name.Variable */
  768. .code-highlight .ow {
  769. color: #AA22FF;
  770. font-weight: bold;
  771. }
  772. /* Operator.Word */
  773. .code-highlight .w {
  774. color: #D7DAE0;
  775. }
  776. /* Text.Whitespace */
  777. .code-highlight .mb {
  778. color: #D19A66;
  779. }
  780. /* Literal.Number.Bin */
  781. .code-highlight .mf {
  782. color: #D19A66;
  783. }
  784. /* Literal.Number.Float */
  785. .code-highlight .mh {
  786. color: #D19A66;
  787. }
  788. /* Literal.Number.Hex */
  789. .code-highlight .mi {
  790. color: #D19A66;
  791. }
  792. /* Literal.Number.Integer */
  793. .code-highlight .mo {
  794. color: #D19A66;
  795. }
  796. /* Literal.Number.Oct */
  797. .code-highlight .sa {
  798. color: #86C372;
  799. }
  800. /* Literal.String.Affix */
  801. .code-highlight .sb {
  802. color: #86C372;
  803. }
  804. /* Literal.String.Backtick */
  805. .code-highlight .sc {
  806. color: #86C372;
  807. }
  808. /* Literal.String.Char */
  809. .code-highlight .dl {
  810. color: #86C372;
  811. }
  812. /* Literal.String.Delimiter */
  813. .code-highlight .sd {
  814. color: #86C372;
  815. font-style: italic;
  816. }
  817. /* Literal.String.Doc */
  818. .code-highlight .s2 {
  819. color: #86C372;
  820. }
  821. /* Literal.String.Double */
  822. .code-highlight .se {
  823. color: #BB6622;
  824. font-weight: bold;
  825. }
  826. /* Literal.String.Escape */
  827. .code-highlight .sh {
  828. color: #86C372;
  829. }
  830. /* Literal.String.Heredoc */
  831. .code-highlight .si {
  832. color: #BB6688;
  833. font-weight: bold;
  834. }
  835. /* Literal.String.Interpol */
  836. .code-highlight .sx {
  837. color: #BE74D5;
  838. }
  839. /* Literal.String.Other */
  840. .code-highlight .sr {
  841. color: #BB6688;
  842. }
  843. /* Literal.String.Regex */
  844. .code-highlight .s1 {
  845. color: #86C372;
  846. }
  847. /* Literal.String.Single */
  848. .code-highlight .ss {
  849. color: #DFC06F;
  850. }
  851. /* Literal.String.Symbol */
  852. .code-highlight .bp {
  853. color: #BE74D5;
  854. }
  855. /* Name.Builtin.Pseudo */
  856. .code-highlight .fm {
  857. color: #61AFEF;
  858. }
  859. /* Name.Function.Magic */
  860. .code-highlight .vc {
  861. color: #DFC06F;
  862. }
  863. /* Name.Variable.Class */
  864. .code-highlight .vg {
  865. color: #DFC06F;
  866. }
  867. /* Name.Variable.Global */
  868. .code-highlight .vi {
  869. color: #DFC06F;
  870. }
  871. /* Name.Variable.Instance */
  872. .code-highlight .vm {
  873. color: #DFC06F;
  874. }
  875. /* Name.Variable.Magic */
  876. .code-highlight .il {
  877. color: #D19A66;
  878. }
  879. /* Literal.Number.Integer.Long */
  880. .code-highlight pre {
  881. margin-bottom: 25px;
  882. padding: 20px 10px;
  883. background-color: inherit;
  884. color: inherit;
  885. border: inherit;
  886. color: #D7DAE0;
  887. }
  888. .table > tbody > tr > td,
  889. .table > tbody > tr > th {
  890. vertical-align: middle !important;
  891. }
  892. .nav-tabs.nav-justified {
  893. margin-bottom: 20px;
  894. }
  895. p {
  896. margin: 10px 0;
  897. }
  898. input.cursor-text {
  899. margin: 10px 0;
  900. }