logicodev.css 21 KB

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