pointhi.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130
  1. .github-issue-button {
  2. display: block;
  3. padding: 8px 16px;
  4. font-family: sans-serif;
  5. font-size: 16px;
  6. color: white;
  7. background-color: #238636 !important;
  8. /* important is needed cause to an !important in logicodev-dark */
  9. border: #2ea043;
  10. border-radius: 10px !important;
  11. box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
  12. }
  13. .github-issue-button:hover {
  14. background-color: #2ea043;
  15. }
  16. .issue-hide {
  17. display: none;
  18. }
  19. .engine-stats .engine-name {
  20. width: 20rem;
  21. }
  22. .engine-stats .engine-score {
  23. width: 7rem;
  24. text-align: right;
  25. }
  26. .engine-stats .engine-reliability {
  27. text-align: right;
  28. }
  29. .engine-stats table.engine-error {
  30. max-width: 1280px;
  31. margin: 1rem;
  32. border: 1px solid gray;
  33. }
  34. .engine-stats table.engine-error th.engine-error-type,
  35. .engine-stats table.engine-error td.engine-error-type,
  36. .engine-stats failed-test {
  37. width: 10rem;
  38. }
  39. .engine-stats table.engine-error span.log_parameters {
  40. border-right: 1px solid gray;
  41. padding: 0 1rem 0 0;
  42. margin: 0 0 0 0.5rem;
  43. }
  44. .bar-chart-value {
  45. width: 3em;
  46. display: inline-block;
  47. text-align: right;
  48. padding-right: 0.5rem;
  49. }
  50. .bar-chart-graph {
  51. width: calc(100% - 5rem);
  52. display: inline-block;
  53. }
  54. .bar-chart-bar {
  55. border: 3px solid #5bc0de;
  56. margin: 1px 0;
  57. }
  58. .bar-chart-serie1 {
  59. border: 3px solid #5bc0de;
  60. margin: 1px 0;
  61. float: left;
  62. }
  63. .bar-chart-serie2 {
  64. border: 3px solid #deb15b;
  65. margin: 1px 0;
  66. float: left;
  67. }
  68. .bar0 {
  69. width: 0;
  70. border: 0;
  71. }
  72. .bar1 {
  73. width: 1%;
  74. }
  75. .bar2 {
  76. width: 2%;
  77. }
  78. .bar3 {
  79. width: 3%;
  80. }
  81. .bar4 {
  82. width: 4%;
  83. }
  84. .bar5 {
  85. width: 5%;
  86. }
  87. .bar6 {
  88. width: 6%;
  89. }
  90. .bar7 {
  91. width: 7%;
  92. }
  93. .bar8 {
  94. width: 8%;
  95. }
  96. .bar9 {
  97. width: 9%;
  98. }
  99. .bar10 {
  100. width: 10%;
  101. }
  102. .bar11 {
  103. width: 11%;
  104. }
  105. .bar12 {
  106. width: 12%;
  107. }
  108. .bar13 {
  109. width: 13%;
  110. }
  111. .bar14 {
  112. width: 14%;
  113. }
  114. .bar15 {
  115. width: 15%;
  116. }
  117. .bar16 {
  118. width: 16%;
  119. }
  120. .bar17 {
  121. width: 17%;
  122. }
  123. .bar18 {
  124. width: 18%;
  125. }
  126. .bar19 {
  127. width: 19%;
  128. }
  129. .bar20 {
  130. width: 20%;
  131. }
  132. .bar21 {
  133. width: 21%;
  134. }
  135. .bar22 {
  136. width: 22%;
  137. }
  138. .bar23 {
  139. width: 23%;
  140. }
  141. .bar24 {
  142. width: 24%;
  143. }
  144. .bar25 {
  145. width: 25%;
  146. }
  147. .bar26 {
  148. width: 26%;
  149. }
  150. .bar27 {
  151. width: 27%;
  152. }
  153. .bar28 {
  154. width: 28%;
  155. }
  156. .bar29 {
  157. width: 29%;
  158. }
  159. .bar30 {
  160. width: 30%;
  161. }
  162. .bar31 {
  163. width: 31%;
  164. }
  165. .bar32 {
  166. width: 32%;
  167. }
  168. .bar33 {
  169. width: 33%;
  170. }
  171. .bar34 {
  172. width: 34%;
  173. }
  174. .bar35 {
  175. width: 35%;
  176. }
  177. .bar36 {
  178. width: 36%;
  179. }
  180. .bar37 {
  181. width: 37%;
  182. }
  183. .bar38 {
  184. width: 38%;
  185. }
  186. .bar39 {
  187. width: 39%;
  188. }
  189. .bar40 {
  190. width: 40%;
  191. }
  192. .bar41 {
  193. width: 41%;
  194. }
  195. .bar42 {
  196. width: 42%;
  197. }
  198. .bar43 {
  199. width: 43%;
  200. }
  201. .bar44 {
  202. width: 44%;
  203. }
  204. .bar45 {
  205. width: 45%;
  206. }
  207. .bar46 {
  208. width: 46%;
  209. }
  210. .bar47 {
  211. width: 47%;
  212. }
  213. .bar48 {
  214. width: 48%;
  215. }
  216. .bar49 {
  217. width: 49%;
  218. }
  219. .bar50 {
  220. width: 50%;
  221. }
  222. .bar51 {
  223. width: 51%;
  224. }
  225. .bar52 {
  226. width: 52%;
  227. }
  228. .bar53 {
  229. width: 53%;
  230. }
  231. .bar54 {
  232. width: 54%;
  233. }
  234. .bar55 {
  235. width: 55%;
  236. }
  237. .bar56 {
  238. width: 56%;
  239. }
  240. .bar57 {
  241. width: 57%;
  242. }
  243. .bar58 {
  244. width: 58%;
  245. }
  246. .bar59 {
  247. width: 59%;
  248. }
  249. .bar60 {
  250. width: 60%;
  251. }
  252. .bar61 {
  253. width: 61%;
  254. }
  255. .bar62 {
  256. width: 62%;
  257. }
  258. .bar63 {
  259. width: 63%;
  260. }
  261. .bar64 {
  262. width: 64%;
  263. }
  264. .bar65 {
  265. width: 65%;
  266. }
  267. .bar66 {
  268. width: 66%;
  269. }
  270. .bar67 {
  271. width: 67%;
  272. }
  273. .bar68 {
  274. width: 68%;
  275. }
  276. .bar69 {
  277. width: 69%;
  278. }
  279. .bar70 {
  280. width: 70%;
  281. }
  282. .bar71 {
  283. width: 71%;
  284. }
  285. .bar72 {
  286. width: 72%;
  287. }
  288. .bar73 {
  289. width: 73%;
  290. }
  291. .bar74 {
  292. width: 74%;
  293. }
  294. .bar75 {
  295. width: 75%;
  296. }
  297. .bar76 {
  298. width: 76%;
  299. }
  300. .bar77 {
  301. width: 77%;
  302. }
  303. .bar78 {
  304. width: 78%;
  305. }
  306. .bar79 {
  307. width: 79%;
  308. }
  309. .bar80 {
  310. width: 80%;
  311. }
  312. .bar81 {
  313. width: 81%;
  314. }
  315. .bar82 {
  316. width: 82%;
  317. }
  318. .bar83 {
  319. width: 83%;
  320. }
  321. .bar84 {
  322. width: 84%;
  323. }
  324. .bar85 {
  325. width: 85%;
  326. }
  327. .bar86 {
  328. width: 86%;
  329. }
  330. .bar87 {
  331. width: 87%;
  332. }
  333. .bar88 {
  334. width: 88%;
  335. }
  336. .bar89 {
  337. width: 89%;
  338. }
  339. .bar90 {
  340. width: 90%;
  341. }
  342. .bar91 {
  343. width: 91%;
  344. }
  345. .bar92 {
  346. width: 92%;
  347. }
  348. .bar93 {
  349. width: 93%;
  350. }
  351. .bar94 {
  352. width: 94%;
  353. }
  354. .bar95 {
  355. width: 95%;
  356. }
  357. .bar96 {
  358. width: 96%;
  359. }
  360. .bar97 {
  361. width: 97%;
  362. }
  363. .bar98 {
  364. width: 98%;
  365. }
  366. .bar99 {
  367. width: 99%;
  368. }
  369. .bar100 {
  370. width: 100%;
  371. }
  372. html {
  373. position: relative;
  374. min-height: 100%;
  375. }
  376. body {
  377. /* Margin bottom by footer height */
  378. margin-bottom: 80px;
  379. }
  380. .footer {
  381. position: absolute;
  382. bottom: 0;
  383. width: 100%;
  384. /* Set the fixed height of the footer here */
  385. height: 60px;
  386. }
  387. input[type=checkbox]:checked + .label_hide_if_checked,
  388. input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
  389. display: none;
  390. }
  391. input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
  392. input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
  393. display: none;
  394. }
  395. .onoff-checkbox {
  396. width: 15%;
  397. }
  398. .onoffswitch {
  399. position: relative;
  400. width: 110px;
  401. -webkit-user-select: none;
  402. -moz-user-select: none;
  403. -ms-user-select: none;
  404. }
  405. .onoffswitch-checkbox {
  406. display: none;
  407. }
  408. .onoffswitch-label {
  409. display: block;
  410. overflow: hidden;
  411. cursor: pointer;
  412. border: 2px solid #FFFFFF !important;
  413. border-radius: 50px !important;
  414. }
  415. .onoffswitch-inner {
  416. display: block;
  417. transition: margin 0.3s ease-in 0s;
  418. }
  419. .onoffswitch-inner:before,
  420. .onoffswitch-inner:after {
  421. display: block;
  422. float: left;
  423. width: 50%;
  424. height: 30px;
  425. padding: 0;
  426. line-height: 40px;
  427. font-size: 20px;
  428. box-sizing: border-box;
  429. content: "";
  430. background-color: #EEEEEE;
  431. }
  432. .onoffswitch-switch {
  433. display: block;
  434. width: 37px;
  435. background-color: #00CC00;
  436. position: absolute;
  437. top: 0;
  438. bottom: 0;
  439. right: 0px;
  440. border: 2px solid #FFFFFF !important;
  441. border-radius: 50px !important;
  442. transition: all 0.3s ease-in 0s;
  443. }
  444. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  445. margin-right: 0;
  446. }
  447. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  448. right: 71px;
  449. background-color: #A1A1A1;
  450. }
  451. .result_header {
  452. margin-bottom: 5px;
  453. margin-top: 20px;
  454. }
  455. .result_header .favicon {
  456. margin-bottom: -3px;
  457. }
  458. .result_header a {
  459. vertical-align: bottom;
  460. }
  461. .result_header a .highlight {
  462. font-weight: bold;
  463. }
  464. .result-content {
  465. margin-top: 5px;
  466. word-wrap: break-word;
  467. }
  468. .result-content .highlight {
  469. font-weight: bold;
  470. }
  471. .result-default {
  472. clear: both;
  473. }
  474. .result-images {
  475. float: left !important;
  476. height: 138px;
  477. }
  478. .img-thumbnail {
  479. margin: 5px;
  480. max-height: 128px;
  481. }
  482. .result-videos {
  483. clear: both;
  484. }
  485. .result-torrents {
  486. clear: both;
  487. }
  488. .result-map {
  489. clear: both;
  490. }
  491. .result-code {
  492. clear: both;
  493. }
  494. .suggestion_item {
  495. margin: 2px 5px;
  496. max-width: 100%;
  497. }
  498. .suggestion_item .btn {
  499. max-width: 100%;
  500. white-space: normal;
  501. word-wrap: break-word;
  502. text-align: left;
  503. }
  504. .result_download {
  505. margin-right: 5px;
  506. }
  507. #pagination {
  508. margin-top: 30px;
  509. padding-bottom: 50px;
  510. }
  511. .label-default {
  512. color: #AAA;
  513. background: #FFF;
  514. }
  515. .result .text-muted small {
  516. word-wrap: break-word;
  517. }
  518. .modal-wrapper {
  519. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  520. }
  521. .modal-wrapper {
  522. background-clip: padding-box;
  523. background-color: #fff;
  524. border: 1px solid rgba(0, 0, 0, 0.2);
  525. border-radius: 6px;
  526. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  527. outline: 0 none;
  528. position: relative;
  529. }
  530. .highlight {
  531. font-weight: 700;
  532. }
  533. .infobox img {
  534. max-height: 250px;
  535. }
  536. .infobox .infobox_part {
  537. margin-bottom: 20px;
  538. word-wrap: break-word;
  539. table-layout: fixed;
  540. }
  541. .infobox .infobox_part:last-child {
  542. margin-bottom: 0;
  543. }
  544. .infobox .header_url {
  545. white-space: nowrap;
  546. overflow: hidden;
  547. text-overflow: ellipsis;
  548. display: block;
  549. }
  550. .infobox .infobox_toggle {
  551. width: 100%;
  552. text-align: center;
  553. margin-bottom: 0px;
  554. }
  555. .infobox .infobox_checkbox ~ .infobox_body {
  556. max-height: 300px;
  557. overflow: hidden;
  558. }
  559. .infobox .infobox_checkbox:checked ~ .infobox_body {
  560. max-height: none;
  561. }
  562. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  563. display: block;
  564. }
  565. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  566. display: none;
  567. }
  568. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  569. display: block;
  570. }
  571. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  572. display: none;
  573. }
  574. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  575. display: none;
  576. }
  577. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  578. display: block;
  579. }
  580. .search_categories,
  581. #categories {
  582. text-transform: capitalize;
  583. margin-bottom: 1.5rem;
  584. margin-top: 1.5rem;
  585. display: flex;
  586. flex-wrap: wrap;
  587. align-content: stretch;
  588. }
  589. .search_categories label,
  590. #categories label,
  591. .search_categories .input-group-addon,
  592. #categories .input-group-addon {
  593. flex-grow: 1;
  594. flex-basis: auto;
  595. font-size: 1.3rem;
  596. font-weight: normal;
  597. background-color: white;
  598. border: #DDD 1px solid;
  599. border-right: none;
  600. color: #333;
  601. padding-bottom: 0.8rem;
  602. padding-top: 0.8rem;
  603. text-align: center;
  604. min-width: 50px;
  605. }
  606. .search_categories label:last-child,
  607. #categories label:last-child,
  608. .search_categories .input-group-addon:last-child,
  609. #categories .input-group-addon:last-child {
  610. border-right: #DDD 1px solid;
  611. }
  612. .search_categories input[type="checkbox"]:checked + label,
  613. #categories input[type="checkbox"]:checked + label {
  614. color: black;
  615. font-weight: bold;
  616. background-color: #EEE;
  617. }
  618. .visually-hidden {
  619. position: absolute !important;
  620. height: 1px;
  621. width: 1px;
  622. overflow: hidden;
  623. clip: rect(1px 1px 1px 1px);
  624. /* IE6, IE7 */
  625. clip: rect(1px, 1px, 1px, 1px);
  626. white-space: nowrap;
  627. /* added line */
  628. }
  629. #advanced-search-container {
  630. display: none;
  631. text-align: center;
  632. margin-bottom: 1rem;
  633. clear: both;
  634. }
  635. #advanced-search-container label,
  636. #advanced-search-container .input-group-addon {
  637. font-size: 1.3rem;
  638. font-weight: normal;
  639. background-color: white;
  640. border: #DDD 1px solid;
  641. border-right: none;
  642. color: #333;
  643. padding-bottom: 0.8rem;
  644. padding-left: 1.2rem;
  645. padding-right: 1.2rem;
  646. }
  647. #advanced-search-container label:last-child,
  648. #advanced-search-container .input-group-addon:last-child {
  649. border-right: #DDD 1px solid;
  650. }
  651. #advanced-search-container input[type="radio"] {
  652. display: none;
  653. }
  654. #advanced-search-container input[type="radio"]:checked + label {
  655. color: black;
  656. font-weight: bold;
  657. background-color: #EEE;
  658. }
  659. #check-advanced {
  660. display: none;
  661. }
  662. #check-advanced:checked ~ #advanced-search-container {
  663. display: block;
  664. }
  665. .advanced {
  666. padding: 0;
  667. margin-top: 0.3rem;
  668. text-align: right;
  669. }
  670. .advanced label,
  671. .advanced select {
  672. cursor: pointer;
  673. }
  674. .cursor-text {
  675. cursor: text !important;
  676. }
  677. .cursor-pointer {
  678. cursor: pointer !important;
  679. }
  680. /*
  681. this file is generated automatically by searx_extra/update/update_pygments.py
  682. using pygments version 2.8.1
  683. */
  684. .code-highlight .linenos {
  685. -webkit-touch-callout: none;
  686. -webkit-user-select: none;
  687. -khtml-user-select: none;
  688. -moz-user-select: none;
  689. -ms-user-select: none;
  690. user-select: none;
  691. cursor: default;
  692. margin-right: 8px;
  693. text-align: right;
  694. }
  695. .code-highlight .linenos::selection {
  696. background: transparent;
  697. /* WebKit/Blink Browsers */
  698. }
  699. .code-highlight .linenos::-moz-selection {
  700. background: transparent;
  701. /* Gecko Browsers */
  702. }
  703. .code-highlight pre {
  704. line-height: 125%;
  705. }
  706. .code-highlight td.linenos .normal {
  707. color: inherit;
  708. background-color: transparent;
  709. padding-left: 5px;
  710. padding-right: 5px;
  711. }
  712. .code-highlight span.linenos {
  713. color: inherit;
  714. background-color: transparent;
  715. padding-left: 5px;
  716. padding-right: 5px;
  717. }
  718. .code-highlight td.linenos .special {
  719. color: #000000;
  720. background-color: #ffffc0;
  721. padding-left: 5px;
  722. padding-right: 5px;
  723. }
  724. .code-highlight span.linenos.special {
  725. color: #000000;
  726. background-color: #ffffc0;
  727. padding-left: 5px;
  728. padding-right: 5px;
  729. }
  730. .code-highlight .hll {
  731. background-color: #ffffcc;
  732. }
  733. .code-highlight {
  734. background: #f8f8f8;
  735. }
  736. .code-highlight .c {
  737. color: #408080;
  738. font-style: italic;
  739. }
  740. /* Comment */
  741. .code-highlight .err {
  742. border: 1px solid #FF0000;
  743. }
  744. /* Error */
  745. .code-highlight .k {
  746. color: #008000;
  747. font-weight: bold;
  748. }
  749. /* Keyword */
  750. .code-highlight .o {
  751. color: #666666;
  752. }
  753. /* Operator */
  754. .code-highlight .ch {
  755. color: #408080;
  756. font-style: italic;
  757. }
  758. /* Comment.Hashbang */
  759. .code-highlight .cm {
  760. color: #408080;
  761. font-style: italic;
  762. }
  763. /* Comment.Multiline */
  764. .code-highlight .cp {
  765. color: #BC7A00;
  766. }
  767. /* Comment.Preproc */
  768. .code-highlight .cpf {
  769. color: #408080;
  770. font-style: italic;
  771. }
  772. /* Comment.PreprocFile */
  773. .code-highlight .c1 {
  774. color: #408080;
  775. font-style: italic;
  776. }
  777. /* Comment.Single */
  778. .code-highlight .cs {
  779. color: #408080;
  780. font-style: italic;
  781. }
  782. /* Comment.Special */
  783. .code-highlight .gd {
  784. color: #A00000;
  785. }
  786. /* Generic.Deleted */
  787. .code-highlight .ge {
  788. font-style: italic;
  789. }
  790. /* Generic.Emph */
  791. .code-highlight .gr {
  792. color: #FF0000;
  793. }
  794. /* Generic.Error */
  795. .code-highlight .gh {
  796. color: #000080;
  797. font-weight: bold;
  798. }
  799. /* Generic.Heading */
  800. .code-highlight .gi {
  801. color: #00A000;
  802. }
  803. /* Generic.Inserted */
  804. .code-highlight .go {
  805. color: #888888;
  806. }
  807. /* Generic.Output */
  808. .code-highlight .gp {
  809. color: #000080;
  810. font-weight: bold;
  811. }
  812. /* Generic.Prompt */
  813. .code-highlight .gs {
  814. font-weight: bold;
  815. }
  816. /* Generic.Strong */
  817. .code-highlight .gu {
  818. color: #800080;
  819. font-weight: bold;
  820. }
  821. /* Generic.Subheading */
  822. .code-highlight .gt {
  823. color: #0044DD;
  824. }
  825. /* Generic.Traceback */
  826. .code-highlight .kc {
  827. color: #008000;
  828. font-weight: bold;
  829. }
  830. /* Keyword.Constant */
  831. .code-highlight .kd {
  832. color: #008000;
  833. font-weight: bold;
  834. }
  835. /* Keyword.Declaration */
  836. .code-highlight .kn {
  837. color: #008000;
  838. font-weight: bold;
  839. }
  840. /* Keyword.Namespace */
  841. .code-highlight .kp {
  842. color: #008000;
  843. }
  844. /* Keyword.Pseudo */
  845. .code-highlight .kr {
  846. color: #008000;
  847. font-weight: bold;
  848. }
  849. /* Keyword.Reserved */
  850. .code-highlight .kt {
  851. color: #B00040;
  852. }
  853. /* Keyword.Type */
  854. .code-highlight .m {
  855. color: #666666;
  856. }
  857. /* Literal.Number */
  858. .code-highlight .s {
  859. color: #BA2121;
  860. }
  861. /* Literal.String */
  862. .code-highlight .na {
  863. color: #7D9029;
  864. }
  865. /* Name.Attribute */
  866. .code-highlight .nb {
  867. color: #008000;
  868. }
  869. /* Name.Builtin */
  870. .code-highlight .nc {
  871. color: #0000FF;
  872. font-weight: bold;
  873. }
  874. /* Name.Class */
  875. .code-highlight .no {
  876. color: #880000;
  877. }
  878. /* Name.Constant */
  879. .code-highlight .nd {
  880. color: #AA22FF;
  881. }
  882. /* Name.Decorator */
  883. .code-highlight .ni {
  884. color: #999999;
  885. font-weight: bold;
  886. }
  887. /* Name.Entity */
  888. .code-highlight .ne {
  889. color: #D2413A;
  890. font-weight: bold;
  891. }
  892. /* Name.Exception */
  893. .code-highlight .nf {
  894. color: #0000FF;
  895. }
  896. /* Name.Function */
  897. .code-highlight .nl {
  898. color: #A0A000;
  899. }
  900. /* Name.Label */
  901. .code-highlight .nn {
  902. color: #0000FF;
  903. font-weight: bold;
  904. }
  905. /* Name.Namespace */
  906. .code-highlight .nt {
  907. color: #008000;
  908. font-weight: bold;
  909. }
  910. /* Name.Tag */
  911. .code-highlight .nv {
  912. color: #19177C;
  913. }
  914. /* Name.Variable */
  915. .code-highlight .ow {
  916. color: #AA22FF;
  917. font-weight: bold;
  918. }
  919. /* Operator.Word */
  920. .code-highlight .w {
  921. color: #bbbbbb;
  922. }
  923. /* Text.Whitespace */
  924. .code-highlight .mb {
  925. color: #666666;
  926. }
  927. /* Literal.Number.Bin */
  928. .code-highlight .mf {
  929. color: #666666;
  930. }
  931. /* Literal.Number.Float */
  932. .code-highlight .mh {
  933. color: #666666;
  934. }
  935. /* Literal.Number.Hex */
  936. .code-highlight .mi {
  937. color: #666666;
  938. }
  939. /* Literal.Number.Integer */
  940. .code-highlight .mo {
  941. color: #666666;
  942. }
  943. /* Literal.Number.Oct */
  944. .code-highlight .sa {
  945. color: #BA2121;
  946. }
  947. /* Literal.String.Affix */
  948. .code-highlight .sb {
  949. color: #BA2121;
  950. }
  951. /* Literal.String.Backtick */
  952. .code-highlight .sc {
  953. color: #BA2121;
  954. }
  955. /* Literal.String.Char */
  956. .code-highlight .dl {
  957. color: #BA2121;
  958. }
  959. /* Literal.String.Delimiter */
  960. .code-highlight .sd {
  961. color: #BA2121;
  962. font-style: italic;
  963. }
  964. /* Literal.String.Doc */
  965. .code-highlight .s2 {
  966. color: #BA2121;
  967. }
  968. /* Literal.String.Double */
  969. .code-highlight .se {
  970. color: #BB6622;
  971. font-weight: bold;
  972. }
  973. /* Literal.String.Escape */
  974. .code-highlight .sh {
  975. color: #BA2121;
  976. }
  977. /* Literal.String.Heredoc */
  978. .code-highlight .si {
  979. color: #BB6688;
  980. font-weight: bold;
  981. }
  982. /* Literal.String.Interpol */
  983. .code-highlight .sx {
  984. color: #008000;
  985. }
  986. /* Literal.String.Other */
  987. .code-highlight .sr {
  988. color: #BB6688;
  989. }
  990. /* Literal.String.Regex */
  991. .code-highlight .s1 {
  992. color: #BA2121;
  993. }
  994. /* Literal.String.Single */
  995. .code-highlight .ss {
  996. color: #19177C;
  997. }
  998. /* Literal.String.Symbol */
  999. .code-highlight .bp {
  1000. color: #008000;
  1001. }
  1002. /* Name.Builtin.Pseudo */
  1003. .code-highlight .fm {
  1004. color: #0000FF;
  1005. }
  1006. /* Name.Function.Magic */
  1007. .code-highlight .vc {
  1008. color: #19177C;
  1009. }
  1010. /* Name.Variable.Class */
  1011. .code-highlight .vg {
  1012. color: #19177C;
  1013. }
  1014. /* Name.Variable.Global */
  1015. .code-highlight .vi {
  1016. color: #19177C;
  1017. }
  1018. /* Name.Variable.Instance */
  1019. .code-highlight .vm {
  1020. color: #19177C;
  1021. }
  1022. /* Name.Variable.Magic */
  1023. .code-highlight .il {
  1024. color: #666666;
  1025. }
  1026. /* Literal.Number.Integer.Long */
  1027. .searx-navbar {
  1028. background: #eee;
  1029. color: #aaa;
  1030. height: 2.3rem;
  1031. font-size: 1.3rem;
  1032. line-height: 1.3rem;
  1033. padding: 0.5rem;
  1034. font-weight: bold;
  1035. margin-bottom: 1.3rem;
  1036. }
  1037. .searx-navbar a,
  1038. .searx-navbar a:hover {
  1039. margin-right: 2rem;
  1040. text-decoration: none;
  1041. }
  1042. .searx-navbar .instance a {
  1043. color: #444;
  1044. margin-left: 2rem;
  1045. }
  1046. .table > tbody > tr > td,
  1047. .table > tbody > tr > th {
  1048. vertical-align: middle !important;
  1049. }
  1050. .engine-tooltip {
  1051. display: none;
  1052. position: absolute;
  1053. padding: 0.5rem 1rem;
  1054. margin: 0rem 0 0 2rem;
  1055. border: 1px solid #ddd;
  1056. box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  1057. background: white;
  1058. font-size: 14px;
  1059. font-weight: normal;
  1060. z-index: 1000000;
  1061. }
  1062. th:hover .engine-tooltip,
  1063. td:hover .engine-tooltip,
  1064. .engine-tooltip:hover {
  1065. display: inline-block;
  1066. }
  1067. /* stacked-bar-chart */
  1068. .stacked-bar-chart {
  1069. margin: 0;
  1070. padding: 0 0.125rem 0 3rem;
  1071. width: 100%;
  1072. width: -moz-available;
  1073. width: -webkit-fill-available;
  1074. width: fill;
  1075. flex-direction: row;
  1076. flex-wrap: nowrap;
  1077. flex-grow: 1;
  1078. align-items: center;
  1079. display: inline-flex;
  1080. }
  1081. .stacked-bar-chart-value {
  1082. width: 3rem;
  1083. display: inline-block;
  1084. position: absolute;
  1085. padding: 0 0.5rem;
  1086. text-align: right;
  1087. }
  1088. .stacked-bar-chart-base {
  1089. display: flex;
  1090. flex-shrink: 0;
  1091. flex-grow: 0;
  1092. flex-basis: unset;
  1093. }
  1094. .stacked-bar-chart-median {
  1095. display: flex;
  1096. flex-shrink: 0;
  1097. flex-grow: 0;
  1098. flex-basis: unset;
  1099. background: #000000;
  1100. border: 1px solid rgba(0, 0, 0, 0.9);
  1101. padding: 0.3rem 0;
  1102. }
  1103. .stacked-bar-chart-rate80 {
  1104. display: flex;
  1105. flex-shrink: 0;
  1106. flex-grow: 0;
  1107. flex-basis: unset;
  1108. background: transparent;
  1109. border: 1px solid rgba(0, 0, 0, 0.3);
  1110. padding: 0.3rem 0;
  1111. }
  1112. .stacked-bar-chart-rate95 {
  1113. display: flex;
  1114. flex-shrink: 0;
  1115. flex-grow: 0;
  1116. flex-basis: unset;
  1117. background: transparent;
  1118. border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  1119. padding: 0;
  1120. }
  1121. .stacked-bar-chart-rate100 {
  1122. display: flex;
  1123. flex-shrink: 0;
  1124. flex-grow: 0;
  1125. flex-basis: unset;
  1126. background: transparent;
  1127. border-left: 1px solid rgba(0, 0, 0, 0.9);
  1128. padding: 0.4rem 0;
  1129. width: 1px;
  1130. }