logicodev.css 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118
  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. cursor: pointer;
  318. }
  319. .infobox .infobox_toggle:hover {
  320. background: #DDD;
  321. }
  322. .infobox .infobox_checkbox ~ .infobox_body {
  323. max-height: 300px;
  324. overflow: hidden;
  325. }
  326. .infobox .infobox_checkbox:checked ~ .infobox_body {
  327. max-height: none;
  328. }
  329. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  330. display: block;
  331. }
  332. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  333. display: none;
  334. }
  335. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  336. display: block;
  337. }
  338. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  339. display: none;
  340. }
  341. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  342. display: none;
  343. }
  344. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  345. display: block;
  346. }
  347. .search_categories,
  348. #categories {
  349. text-transform: capitalize;
  350. margin-bottom: 0.5rem;
  351. display: flex;
  352. flex-wrap: wrap;
  353. flex-flow: row wrap;
  354. align-content: stretch;
  355. }
  356. .search_categories label,
  357. #categories label,
  358. .search_categories .input-group-addon,
  359. #categories .input-group-addon {
  360. flex-grow: 1;
  361. flex-basis: auto;
  362. font-size: 1.2rem;
  363. font-weight: normal;
  364. background-color: white;
  365. border: #DDD 1px solid;
  366. border-right: none;
  367. color: #666;
  368. padding-bottom: 0.4rem;
  369. padding-top: 0.4rem;
  370. text-align: center;
  371. min-width: 50px;
  372. }
  373. .search_categories label:last-child,
  374. #categories label:last-child,
  375. .search_categories .input-group-addon:last-child,
  376. #categories .input-group-addon:last-child {
  377. border-right: #DDD 1px solid;
  378. }
  379. .search_categories input[type="checkbox"]:checked + label,
  380. #categories input[type="checkbox"]:checked + label {
  381. color: #29314D;
  382. font-weight: bold;
  383. border-bottom: #01D7D4 5px solid;
  384. }
  385. #main-logo {
  386. margin-top: 10vh;
  387. margin-bottom: 25px;
  388. }
  389. #main-logo > img {
  390. max-width: 350px;
  391. width: 80%;
  392. }
  393. #q {
  394. box-shadow: none;
  395. border-right: none;
  396. border-color: #888;
  397. }
  398. #search_form .input-group-btn .btn {
  399. border-color: #888;
  400. }
  401. #search_form .input-group-btn .btn:hover {
  402. background-color: #068922;
  403. color: white;
  404. }
  405. .custom-select,
  406. .custom-select-rtl {
  407. appearance: none;
  408. -webkit-appearance: none;
  409. -moz-appearance: none;
  410. font-size: 1.2rem;
  411. font-weight: normal;
  412. background-color: white;
  413. border: #888 1px solid;
  414. color: #666;
  415. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGnsAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW86/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wNy0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
  416. }
  417. .custom-select-rtl {
  418. background-position-x: 4%;
  419. }
  420. .search-margin {
  421. margin-bottom: 0.6em;
  422. }
  423. .visually-hidden {
  424. position: absolute !important;
  425. height: 1px;
  426. width: 1px;
  427. overflow: hidden;
  428. clip: rect(1px, 1px, 1px, 1px);
  429. white-space: nowrap;
  430. }
  431. .label-danger,
  432. .btn-danger {
  433. background: #c9432f;
  434. }
  435. .label-success,
  436. .btn-success {
  437. background: #068922;
  438. }
  439. select.form-control {
  440. border-color: #888 !important;
  441. }
  442. #advanced-search-container {
  443. display: none;
  444. text-align: left;
  445. margin-bottom: 1rem;
  446. clear: both;
  447. }
  448. #advanced-search-container label,
  449. #advanced-search-container .input-group-addon {
  450. font-size: 1.2rem;
  451. font-weight: normal;
  452. background-color: white;
  453. border: #DDD 1px solid;
  454. border-right: none;
  455. color: #666;
  456. padding-bottom: 0.4rem;
  457. padding-right: 0.7rem;
  458. padding-left: 0.7rem;
  459. }
  460. #advanced-search-container label:last-child,
  461. #advanced-search-container .input-group-addon:last-child {
  462. border-right: #DDD 1px solid;
  463. }
  464. #advanced-search-container input[type="radio"] {
  465. display: none;
  466. }
  467. #advanced-search-container input[type="radio"]:checked + label {
  468. color: #29314D;
  469. font-weight: bold;
  470. border-bottom: #01D7D4 5px solid;
  471. }
  472. #check-advanced:focus + label {
  473. text-decoration: underline;
  474. }
  475. #check-advanced:checked ~ #advanced-search-container {
  476. display: block;
  477. }
  478. .advanced {
  479. padding: 0;
  480. margin-top: 0.3rem;
  481. text-align: right;
  482. }
  483. .advanced label,
  484. .advanced select {
  485. cursor: pointer;
  486. }
  487. .cursor-text {
  488. cursor: text !important;
  489. }
  490. .cursor-pointer {
  491. cursor: pointer !important;
  492. }
  493. pre,
  494. code {
  495. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  496. }
  497. /*
  498. this file is generated automatically by searx_extra/update/update_pygments.py
  499. using pygments version 2.8.0
  500. */
  501. .code-highlight .linenos {
  502. -webkit-touch-callout: none;
  503. -webkit-user-select: none;
  504. -khtml-user-select: none;
  505. -moz-user-select: none;
  506. -ms-user-select: none;
  507. user-select: none;
  508. cursor: default;
  509. margin-right: 8px;
  510. text-align: right;
  511. }
  512. .code-highlight .linenos::selection {
  513. background: transparent;
  514. /* WebKit/Blink Browsers */
  515. }
  516. .code-highlight .linenos::-moz-selection {
  517. background: transparent;
  518. /* Gecko Browsers */
  519. }
  520. .code-highlight pre {
  521. line-height: 125%;
  522. }
  523. .code-highlight td.linenos .normal {
  524. color: inherit;
  525. background-color: transparent;
  526. padding-left: 5px;
  527. padding-right: 5px;
  528. }
  529. .code-highlight span.linenos {
  530. color: inherit;
  531. background-color: transparent;
  532. padding-left: 5px;
  533. padding-right: 5px;
  534. }
  535. .code-highlight td.linenos .special {
  536. color: #000000;
  537. background-color: #ffffc0;
  538. padding-left: 5px;
  539. padding-right: 5px;
  540. }
  541. .code-highlight span.linenos.special {
  542. color: #000000;
  543. background-color: #ffffc0;
  544. padding-left: 5px;
  545. padding-right: 5px;
  546. }
  547. .code-highlight .hll {
  548. background-color: #ffffcc;
  549. }
  550. .code-highlight {
  551. background: #282C34;
  552. }
  553. .code-highlight .c {
  554. color: #556366;
  555. font-style: italic;
  556. }
  557. /* Comment */
  558. .code-highlight .err {
  559. border: 1px solid #ff0000;
  560. }
  561. /* Error */
  562. .code-highlight .k {
  563. color: #BE74D5;
  564. font-weight: bold;
  565. }
  566. /* Keyword */
  567. .code-highlight .o {
  568. color: #D19A66;
  569. }
  570. /* Operator */
  571. .code-highlight .ch {
  572. color: #556366;
  573. font-style: italic;
  574. }
  575. /* Comment.Hashbang */
  576. .code-highlight .cm {
  577. color: #556366;
  578. font-style: italic;
  579. }
  580. /* Comment.Multiline */
  581. .code-highlight .cp {
  582. color: #BC7A00;
  583. font-style: italic;
  584. }
  585. /* Comment.Preproc */
  586. .code-highlight .cpf {
  587. color: #556366;
  588. font-style: italic;
  589. }
  590. /* Comment.PreprocFile */
  591. .code-highlight .c1 {
  592. color: #556366;
  593. font-style: italic;
  594. }
  595. /* Comment.Single */
  596. .code-highlight .cs {
  597. color: #556366;
  598. font-style: italic;
  599. }
  600. /* Comment.Special */
  601. .code-highlight .gd {
  602. color: #A00000;
  603. }
  604. /* Generic.Deleted */
  605. .code-highlight .ge {
  606. font-style: italic;
  607. }
  608. /* Generic.Emph */
  609. .code-highlight .gr {
  610. color: #FF0000;
  611. }
  612. /* Generic.Error */
  613. .code-highlight .gh {
  614. color: #000080;
  615. font-weight: bold;
  616. }
  617. /* Generic.Heading */
  618. .code-highlight .gi {
  619. color: #00A000;
  620. }
  621. /* Generic.Inserted */
  622. .code-highlight .go {
  623. color: #888888;
  624. }
  625. /* Generic.Output */
  626. .code-highlight .gp {
  627. color: #000080;
  628. font-weight: bold;
  629. }
  630. /* Generic.Prompt */
  631. .code-highlight .gs {
  632. font-weight: bold;
  633. }
  634. /* Generic.Strong */
  635. .code-highlight .gu {
  636. color: #800080;
  637. font-weight: bold;
  638. }
  639. /* Generic.Subheading */
  640. .code-highlight .gt {
  641. color: #0044DD;
  642. }
  643. /* Generic.Traceback */
  644. .code-highlight .kc {
  645. color: #BE74D5;
  646. font-weight: bold;
  647. }
  648. /* Keyword.Constant */
  649. .code-highlight .kd {
  650. color: #BE74D5;
  651. font-weight: bold;
  652. }
  653. /* Keyword.Declaration */
  654. .code-highlight .kn {
  655. color: #BE74D5;
  656. font-weight: bold;
  657. }
  658. /* Keyword.Namespace */
  659. .code-highlight .kp {
  660. color: #BE74D5;
  661. font-weight: bold;
  662. }
  663. /* Keyword.Pseudo */
  664. .code-highlight .kr {
  665. color: #BE74D5;
  666. font-weight: bold;
  667. }
  668. /* Keyword.Reserved */
  669. .code-highlight .kt {
  670. color: #D46C72;
  671. font-weight: bold;
  672. }
  673. /* Keyword.Type */
  674. .code-highlight .m {
  675. color: #D19A66;
  676. }
  677. /* Literal.Number */
  678. .code-highlight .s {
  679. color: #86C372;
  680. }
  681. /* Literal.String */
  682. .code-highlight .na {
  683. color: #7D9029;
  684. }
  685. /* Name.Attribute */
  686. .code-highlight .nb {
  687. color: #BE74D5;
  688. }
  689. /* Name.Builtin */
  690. .code-highlight .nc {
  691. color: #61AFEF;
  692. font-weight: bold;
  693. }
  694. /* Name.Class */
  695. .code-highlight .no {
  696. color: #D19A66;
  697. }
  698. /* Name.Constant */
  699. .code-highlight .nd {
  700. color: #AA22FF;
  701. }
  702. /* Name.Decorator */
  703. .code-highlight .ni {
  704. color: #999999;
  705. font-weight: bold;
  706. }
  707. /* Name.Entity */
  708. .code-highlight .ne {
  709. color: #D2413A;
  710. font-weight: bold;
  711. }
  712. /* Name.Exception */
  713. .code-highlight .nf {
  714. color: #61AFEF;
  715. }
  716. /* Name.Function */
  717. .code-highlight .nl {
  718. color: #A0A000;
  719. }
  720. /* Name.Label */
  721. .code-highlight .nn {
  722. color: #61AFEF;
  723. font-weight: bold;
  724. }
  725. /* Name.Namespace */
  726. .code-highlight .nt {
  727. color: #BE74D5;
  728. font-weight: bold;
  729. }
  730. /* Name.Tag */
  731. .code-highlight .nv {
  732. color: #DFC06F;
  733. }
  734. /* Name.Variable */
  735. .code-highlight .ow {
  736. color: #AA22FF;
  737. font-weight: bold;
  738. }
  739. /* Operator.Word */
  740. .code-highlight .w {
  741. color: #D7DAE0;
  742. }
  743. /* Text.Whitespace */
  744. .code-highlight .mb {
  745. color: #D19A66;
  746. }
  747. /* Literal.Number.Bin */
  748. .code-highlight .mf {
  749. color: #D19A66;
  750. }
  751. /* Literal.Number.Float */
  752. .code-highlight .mh {
  753. color: #D19A66;
  754. }
  755. /* Literal.Number.Hex */
  756. .code-highlight .mi {
  757. color: #D19A66;
  758. }
  759. /* Literal.Number.Integer */
  760. .code-highlight .mo {
  761. color: #D19A66;
  762. }
  763. /* Literal.Number.Oct */
  764. .code-highlight .sa {
  765. color: #86C372;
  766. }
  767. /* Literal.String.Affix */
  768. .code-highlight .sb {
  769. color: #86C372;
  770. }
  771. /* Literal.String.Backtick */
  772. .code-highlight .sc {
  773. color: #86C372;
  774. }
  775. /* Literal.String.Char */
  776. .code-highlight .dl {
  777. color: #86C372;
  778. }
  779. /* Literal.String.Delimiter */
  780. .code-highlight .sd {
  781. color: #86C372;
  782. font-style: italic;
  783. }
  784. /* Literal.String.Doc */
  785. .code-highlight .s2 {
  786. color: #86C372;
  787. }
  788. /* Literal.String.Double */
  789. .code-highlight .se {
  790. color: #BB6622;
  791. font-weight: bold;
  792. }
  793. /* Literal.String.Escape */
  794. .code-highlight .sh {
  795. color: #86C372;
  796. }
  797. /* Literal.String.Heredoc */
  798. .code-highlight .si {
  799. color: #BB6688;
  800. font-weight: bold;
  801. }
  802. /* Literal.String.Interpol */
  803. .code-highlight .sx {
  804. color: #BE74D5;
  805. }
  806. /* Literal.String.Other */
  807. .code-highlight .sr {
  808. color: #BB6688;
  809. }
  810. /* Literal.String.Regex */
  811. .code-highlight .s1 {
  812. color: #86C372;
  813. }
  814. /* Literal.String.Single */
  815. .code-highlight .ss {
  816. color: #DFC06F;
  817. }
  818. /* Literal.String.Symbol */
  819. .code-highlight .bp {
  820. color: #BE74D5;
  821. }
  822. /* Name.Builtin.Pseudo */
  823. .code-highlight .fm {
  824. color: #61AFEF;
  825. }
  826. /* Name.Function.Magic */
  827. .code-highlight .vc {
  828. color: #DFC06F;
  829. }
  830. /* Name.Variable.Class */
  831. .code-highlight .vg {
  832. color: #DFC06F;
  833. }
  834. /* Name.Variable.Global */
  835. .code-highlight .vi {
  836. color: #DFC06F;
  837. }
  838. /* Name.Variable.Instance */
  839. .code-highlight .vm {
  840. color: #DFC06F;
  841. }
  842. /* Name.Variable.Magic */
  843. .code-highlight .il {
  844. color: #D19A66;
  845. }
  846. /* Literal.Number.Integer.Long */
  847. .code-highlight pre {
  848. margin-bottom: 25px;
  849. padding: 20px 10px;
  850. background-color: inherit;
  851. color: inherit;
  852. border: inherit;
  853. color: #D7DAE0;
  854. }
  855. .table > tbody > tr > td,
  856. .table > tbody > tr > th {
  857. vertical-align: middle !important;
  858. }
  859. .nav-tabs.nav-justified {
  860. margin-bottom: 20px;
  861. }
  862. p {
  863. margin: 10px 0;
  864. }
  865. input.cursor-text {
  866. margin: 10px 0;
  867. }
  868. .engine-tooltip {
  869. display: none;
  870. position: absolute;
  871. padding: 0.5rem 1rem;
  872. margin: 0rem 0 0 2rem;
  873. border: 1px solid #ddd;
  874. background: white;
  875. font-size: 14px;
  876. font-weight: normal;
  877. z-index: 1000000;
  878. }
  879. th:hover .engine-tooltip,
  880. .engine-tooltip:hover {
  881. display: inline-block;
  882. }
  883. /*Global*/
  884. body {
  885. background: #1d1f21 none !important;
  886. color: #D5D8D7 !important;
  887. }
  888. a {
  889. color: #41a2ce !important;
  890. text-decoration: none !important;
  891. }
  892. a:hover {
  893. color: #5F89AC !important;
  894. }
  895. input,
  896. button,
  897. textarea,
  898. select {
  899. border: 1px solid #282a2e !important;
  900. background-color: #444 !important;
  901. color: #BBB !important;
  902. }
  903. input:focus,
  904. button:focus,
  905. textarea:focus,
  906. select:focus {
  907. border: 1px solid #C5C8C6 !important;
  908. box-shadow: initial !important;
  909. }
  910. div#advanced-search-container div#categories label {
  911. background: none;
  912. border: 1px solid #282a2e;
  913. }
  914. ul.nav li a {
  915. border: 0 !important;
  916. border-bottom: 1px solid #4d3f43 !important;
  917. }
  918. #categories *,
  919. .modal-wrapper * {
  920. background: #1d1f21 none !important;
  921. color: #D5D8D7 !important;
  922. }
  923. #categories * {
  924. border: 1px solid #3d3f43 !important;
  925. }
  926. #categories *:checked + label {
  927. border-bottom: 4px solid #3d9f94 !important;
  928. }
  929. .result-content,
  930. .result-source,
  931. .result-format {
  932. color: #B5B8B7 !important;
  933. }
  934. .external-link {
  935. color: #35B887 !important;
  936. }
  937. .table-striped tr td,
  938. .table-striped tr th {
  939. border-color: #4d3f43 !important;
  940. }
  941. /*nav*/
  942. .navbar {
  943. background: #1d1f21 none;
  944. border: none;
  945. }
  946. .navbar .active,
  947. .menu {
  948. background: none !important;
  949. }
  950. .label-default {
  951. background: none;
  952. color: #BBB;
  953. }
  954. .navbar-default .navbar-nav > .active > a,
  955. .navbar-default .navbar-nav > .active > a:hover,
  956. .navbar-default .navbar-nav > .active > a:focus,
  957. .nav-tabs.nav-justified > .active > a {
  958. background-color: #282a2e !important;
  959. }
  960. /*Search Page*/
  961. .result-default:hover,
  962. .result-code:hover,
  963. .result-torrent:hover,
  964. .result-videos:hover,
  965. .result-map:hover {
  966. background-color: #222426;
  967. }
  968. /*buttons*/
  969. .btn {
  970. color: #BBB;
  971. background-color: #444;
  972. border: 1px solid #282a2e;
  973. }
  974. .btn:hover {
  975. color: #444 !important;
  976. background-color: #BBB !important;
  977. }
  978. .btn-primary.active {
  979. color: #C5C8C6;
  980. background-color: #5F89AC;
  981. border-color: #5F89AC;
  982. }
  983. /*Right Pannels*/
  984. .panel {
  985. border: 1px solid #111;
  986. background: none;
  987. }
  988. .panel-heading {
  989. color: #C5C8C6 !important;
  990. background: #282a2e !important;
  991. border-bottom: none;
  992. }
  993. .panel-body {
  994. color: #C5C8C6 !important;
  995. background: #1d1f21 !important;
  996. border-color: #111 !important;
  997. }
  998. .panel-footer {
  999. color: #C5C8C6 !important;
  1000. background: #282a2e !important;
  1001. border-top: 1px solid #111 !important;
  1002. }
  1003. .infobox_toggle:hover {
  1004. background: #3d3f43 !important;
  1005. }
  1006. p.btn.btn-default {
  1007. background: none;
  1008. }
  1009. .table-striped > tbody > tr:nth-child(odd) > td,
  1010. .table-striped > tbody > tr:nth-child(odd) > th,
  1011. .table-striped > thead > tr:nth-child(odd) > th {
  1012. background: #2d2f32 none !important;
  1013. color: #D5D8D7 !important;
  1014. }
  1015. .label-success {
  1016. background: #1d6f42 none !important;
  1017. }
  1018. .label-danger {
  1019. background: #ad1f12 none !important;
  1020. }
  1021. .searx-navbar {
  1022. background: #333334;
  1023. height: 2.3rem;
  1024. font-size: 1.3rem;
  1025. line-height: 1.3rem;
  1026. padding: 0.5rem;
  1027. font-weight: bold;
  1028. margin-bottom: 0.8rem;
  1029. }
  1030. .searx-navbar a,
  1031. .searx-navbar a:hover {
  1032. margin-right: 2rem;
  1033. color: white;
  1034. text-decoration: none;
  1035. }
  1036. .searx-navbar .instance a {
  1037. color: #01D7D4;
  1038. margin-left: 2rem;
  1039. }
  1040. #main-logo {
  1041. margin-top: 20vh;
  1042. margin-bottom: 25px;
  1043. }
  1044. #main-logo > img {
  1045. max-width: 350px;
  1046. width: 80%;
  1047. }
  1048. .onoffswitch-inner:before,
  1049. .onoffswitch-inner:after {
  1050. background: #1d1f21 none !important;
  1051. }
  1052. .onoffswitch-switch,
  1053. .onoffswitch-label {
  1054. border: 2px solid #3d3f43 !important;
  1055. }
  1056. .nav > li > a:hover,
  1057. .nav > li > a:focus {
  1058. background-color: #3d3f43 !important;
  1059. }
  1060. /*Images search*/
  1061. .img-thumbnail,
  1062. .thumbnail {
  1063. padding: 0px;
  1064. line-height: 1.42857143;
  1065. background: none;
  1066. border: none;
  1067. }
  1068. .modal-content {
  1069. background: #1d1f21 none !important;
  1070. }
  1071. /*Preferences*/
  1072. .table > thead > tr > td.danger,
  1073. .table > tbody > tr > td.danger,
  1074. .table > tfoot > tr > td.danger,
  1075. .table > thead > tr > th.danger,
  1076. .table > tbody > tr > th.danger,
  1077. .table > tfoot > tr > th.danger,
  1078. .table > thead > tr.danger > td,
  1079. .table > tbody > tr.danger > td,
  1080. .table > tfoot > tr.danger > td,
  1081. .table > thead > tr.danger > th,
  1082. .table > tbody > tr.danger > th,
  1083. .table > tfoot > tr.danger > th {
  1084. background: rgba(240, 0, 0, 0.56) !important;
  1085. color: #C5C8C6 !important;
  1086. }
  1087. .table-hover > tbody > tr > td.danger:hover,
  1088. .table-hover > tbody > tr > th.danger:hover,
  1089. .table-hover > tbody > tr.danger:hover > td,
  1090. .table-hover > tbody > tr:hover > .danger,
  1091. .table-hover > tbody > tr.danger:hover > th {
  1092. background: rgba(237, 59, 59, 0.61) !important;
  1093. color: #C5C8C6 !important;
  1094. }
  1095. .table-hover > tbody > tr:hover > td,
  1096. .table-hover > tbody > tr:hover > th {
  1097. background: #66696e !important;
  1098. }
  1099. .btn-success {
  1100. color: #C5C8C6;
  1101. background: #449d44;
  1102. }
  1103. .btn-danger {
  1104. color: #C5C8C6;
  1105. background: #d9534f;
  1106. }
  1107. .well {
  1108. background: #444;
  1109. border-color: #282a2e;
  1110. }
  1111. .highlight {
  1112. background-color: transparent !important;
  1113. }
  1114. /* engine tooltip */
  1115. .engine-tooltip {
  1116. border: 1px solid #3d3f43;
  1117. background: #1d1f21;
  1118. }