logicodev.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106
  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. .engine-tooltip {
  865. display: none;
  866. position: absolute;
  867. padding: 0.5rem 1rem;
  868. margin: 0rem 0 0 2rem;
  869. border: 1px solid #ddd;
  870. background: white;
  871. font-size: 14px;
  872. font-weight: normal;
  873. z-index: 1000000;
  874. }
  875. th:hover .engine-tooltip,
  876. .engine-tooltip:hover {
  877. display: inline-block;
  878. }
  879. /*Global*/
  880. body {
  881. background: #1d1f21 none !important;
  882. color: #D5D8D7 !important;
  883. }
  884. a {
  885. color: #41a2ce !important;
  886. text-decoration: none !important;
  887. }
  888. a:hover {
  889. color: #5F89AC !important;
  890. }
  891. input,
  892. button,
  893. textarea,
  894. select {
  895. border: 1px solid #282a2e !important;
  896. background-color: #444 !important;
  897. color: #BBB !important;
  898. }
  899. input:focus,
  900. button:focus,
  901. textarea:focus,
  902. select:focus {
  903. border: 1px solid #C5C8C6 !important;
  904. box-shadow: initial !important;
  905. }
  906. div#advanced-search-container div#categories label {
  907. background: none;
  908. border: 1px solid #282a2e;
  909. }
  910. ul.nav li a {
  911. border: 0 !important;
  912. border-bottom: 1px solid #4d3f43 !important;
  913. }
  914. #categories *,
  915. .modal-wrapper * {
  916. background: #1d1f21 none !important;
  917. color: #D5D8D7 !important;
  918. }
  919. #categories * {
  920. border: 1px solid #3d3f43 !important;
  921. }
  922. #categories *:checked + label {
  923. border-bottom: 4px solid #3d9f94 !important;
  924. }
  925. .result-content,
  926. .result-source,
  927. .result-format {
  928. color: #B5B8B7 !important;
  929. }
  930. .external-link {
  931. color: #35B887 !important;
  932. }
  933. .table-striped tr td,
  934. .table-striped tr th {
  935. border-color: #4d3f43 !important;
  936. }
  937. /*nav*/
  938. .navbar {
  939. background: #1d1f21 none;
  940. border: none;
  941. }
  942. .navbar .active,
  943. .menu {
  944. background: none !important;
  945. }
  946. .label-default {
  947. background: none;
  948. color: #BBB;
  949. }
  950. .navbar-default .navbar-nav > .active > a,
  951. .navbar-default .navbar-nav > .active > a:hover,
  952. .navbar-default .navbar-nav > .active > a:focus,
  953. .nav-tabs.nav-justified > .active > a {
  954. background-color: #282a2e !important;
  955. }
  956. /*Search Page*/
  957. .result-default:hover,
  958. .result-code:hover,
  959. .result-torrent:hover,
  960. .result-videos:hover,
  961. .result-map:hover {
  962. background-color: #222426;
  963. }
  964. /*buttons*/
  965. .btn {
  966. color: #BBB;
  967. background-color: #444;
  968. border: 1px solid #282a2e;
  969. }
  970. .btn:hover {
  971. color: #444 !important;
  972. background-color: #BBB !important;
  973. }
  974. .btn-primary.active {
  975. color: #C5C8C6;
  976. background-color: #5F89AC;
  977. border-color: #5F89AC;
  978. }
  979. /*Right Pannels*/
  980. .panel {
  981. border: 1px solid #111;
  982. background: none;
  983. }
  984. .panel-heading {
  985. color: #C5C8C6 !important;
  986. background: #282a2e !important;
  987. border-bottom: none;
  988. }
  989. .panel-body {
  990. color: #C5C8C6 !important;
  991. background: #1d1f21 !important;
  992. border-color: #111 !important;
  993. }
  994. p.btn.btn-default {
  995. background: none;
  996. }
  997. .table-striped > tbody > tr:nth-child(odd) > td,
  998. .table-striped > tbody > tr:nth-child(odd) > th,
  999. .table-striped > thead > tr:nth-child(odd) > th {
  1000. background: #2d2f32 none !important;
  1001. color: #D5D8D7 !important;
  1002. }
  1003. .label-success {
  1004. background: #1d6f42 none !important;
  1005. }
  1006. .label-danger {
  1007. background: #ad1f12 none !important;
  1008. }
  1009. .searx-navbar {
  1010. background: #333334;
  1011. height: 2.3rem;
  1012. font-size: 1.3rem;
  1013. line-height: 1.3rem;
  1014. padding: 0.5rem;
  1015. font-weight: bold;
  1016. margin-bottom: 0.8rem;
  1017. }
  1018. .searx-navbar a,
  1019. .searx-navbar a:hover {
  1020. margin-right: 2rem;
  1021. color: white;
  1022. text-decoration: none;
  1023. }
  1024. .searx-navbar .instance a {
  1025. color: #01D7D4;
  1026. margin-left: 2rem;
  1027. }
  1028. #main-logo {
  1029. margin-top: 20vh;
  1030. margin-bottom: 25px;
  1031. }
  1032. #main-logo > img {
  1033. max-width: 350px;
  1034. width: 80%;
  1035. }
  1036. .onoffswitch-inner:before,
  1037. .onoffswitch-inner:after {
  1038. background: #1d1f21 none !important;
  1039. }
  1040. .onoffswitch-switch,
  1041. .onoffswitch-label {
  1042. border: 2px solid #3d3f43 !important;
  1043. }
  1044. .nav > li > a:hover,
  1045. .nav > li > a:focus {
  1046. background-color: #3d3f43 !important;
  1047. }
  1048. /*Images search*/
  1049. .img-thumbnail,
  1050. .thumbnail {
  1051. padding: 0px;
  1052. line-height: 1.42857143;
  1053. background: none;
  1054. border: none;
  1055. }
  1056. .modal-content {
  1057. background: #1d1f21 none !important;
  1058. }
  1059. /*Preferences*/
  1060. .table > thead > tr > td.danger,
  1061. .table > tbody > tr > td.danger,
  1062. .table > tfoot > tr > td.danger,
  1063. .table > thead > tr > th.danger,
  1064. .table > tbody > tr > th.danger,
  1065. .table > tfoot > tr > th.danger,
  1066. .table > thead > tr.danger > td,
  1067. .table > tbody > tr.danger > td,
  1068. .table > tfoot > tr.danger > td,
  1069. .table > thead > tr.danger > th,
  1070. .table > tbody > tr.danger > th,
  1071. .table > tfoot > tr.danger > th {
  1072. background: rgba(240, 0, 0, 0.56) !important;
  1073. color: #C5C8C6 !important;
  1074. }
  1075. .table-hover > tbody > tr > td.danger:hover,
  1076. .table-hover > tbody > tr > th.danger:hover,
  1077. .table-hover > tbody > tr.danger:hover > td,
  1078. .table-hover > tbody > tr:hover > .danger,
  1079. .table-hover > tbody > tr.danger:hover > th {
  1080. background: rgba(237, 59, 59, 0.61) !important;
  1081. color: #C5C8C6 !important;
  1082. }
  1083. .table-hover > tbody > tr:hover > td,
  1084. .table-hover > tbody > tr:hover > th {
  1085. background: #66696e !important;
  1086. }
  1087. .btn-success {
  1088. color: #C5C8C6;
  1089. background: #449d44;
  1090. }
  1091. .btn-danger {
  1092. color: #C5C8C6;
  1093. background: #d9534f;
  1094. }
  1095. .well {
  1096. background: #444;
  1097. border-color: #282a2e;
  1098. }
  1099. .highlight {
  1100. background-color: transparent !important;
  1101. }
  1102. /* engine tooltip */
  1103. .engine-tooltip {
  1104. border: 1px solid #3d3f43;
  1105. background: #1d1f21;
  1106. }