pointhi.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180
  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. .osm-map-box {
  373. height: 300px;
  374. width: 100%;
  375. margin: 10px 0;
  376. }
  377. .default-image-style {
  378. width: auto;
  379. max-height: 60px;
  380. min-height: 60px;
  381. }
  382. .col-stat {
  383. width: 10rem;
  384. }
  385. @keyframes rotate-forever {
  386. 0% {
  387. transform: rotate(0deg);
  388. }
  389. 100% {
  390. transform: rotate(360deg);
  391. }
  392. }
  393. .loading-spinner {
  394. animation-duration: 0.75s;
  395. animation-iteration-count: infinite;
  396. animation-name: rotate-forever;
  397. animation-timing-function: linear;
  398. height: 30px;
  399. width: 30px;
  400. border: 8px solid #666;
  401. border-right-color: transparent;
  402. border-radius: 50% !important;
  403. margin: 0 auto;
  404. }
  405. html.infinite_scroll #pagination button {
  406. visibility: hidden;
  407. }
  408. /*
  409. this file is generated automatically by searxng_extra/update/update_pygments.py
  410. using pygments version 2.11.2
  411. */
  412. .code-highlight .linenos {
  413. -webkit-touch-callout: none;
  414. -webkit-user-select: none;
  415. -khtml-user-select: none;
  416. -moz-user-select: none;
  417. -ms-user-select: none;
  418. user-select: none;
  419. cursor: default;
  420. margin-right: 8px;
  421. text-align: right;
  422. }
  423. .code-highlight .linenos::selection {
  424. background: transparent;
  425. /* WebKit/Blink Browsers */
  426. }
  427. .code-highlight .linenos::-moz-selection {
  428. background: transparent;
  429. /* Gecko Browsers */
  430. }
  431. .code-highlight pre {
  432. line-height: 125%;
  433. }
  434. .code-highlight td.linenos .normal {
  435. color: inherit;
  436. background-color: transparent;
  437. padding-left: 5px;
  438. padding-right: 5px;
  439. }
  440. .code-highlight span.linenos {
  441. color: inherit;
  442. background-color: transparent;
  443. padding-left: 5px;
  444. padding-right: 5px;
  445. }
  446. .code-highlight td.linenos .special {
  447. color: #000000;
  448. background-color: #ffffc0;
  449. padding-left: 5px;
  450. padding-right: 5px;
  451. }
  452. .code-highlight span.linenos.special {
  453. color: #000000;
  454. background-color: #ffffc0;
  455. padding-left: 5px;
  456. padding-right: 5px;
  457. }
  458. .code-highlight .hll {
  459. background-color: #ffffcc;
  460. }
  461. .code-highlight {
  462. background: #f8f8f8;
  463. }
  464. .code-highlight .c {
  465. color: #3D7B7B;
  466. font-style: italic;
  467. }
  468. /* Comment */
  469. .code-highlight .err {
  470. border: 1px solid #FF0000;
  471. }
  472. /* Error */
  473. .code-highlight .k {
  474. color: #008000;
  475. font-weight: bold;
  476. }
  477. /* Keyword */
  478. .code-highlight .o {
  479. color: #666666;
  480. }
  481. /* Operator */
  482. .code-highlight .ch {
  483. color: #3D7B7B;
  484. font-style: italic;
  485. }
  486. /* Comment.Hashbang */
  487. .code-highlight .cm {
  488. color: #3D7B7B;
  489. font-style: italic;
  490. }
  491. /* Comment.Multiline */
  492. .code-highlight .cp {
  493. color: #9C6500;
  494. }
  495. /* Comment.Preproc */
  496. .code-highlight .cpf {
  497. color: #3D7B7B;
  498. font-style: italic;
  499. }
  500. /* Comment.PreprocFile */
  501. .code-highlight .c1 {
  502. color: #3D7B7B;
  503. font-style: italic;
  504. }
  505. /* Comment.Single */
  506. .code-highlight .cs {
  507. color: #3D7B7B;
  508. font-style: italic;
  509. }
  510. /* Comment.Special */
  511. .code-highlight .gd {
  512. color: #A00000;
  513. }
  514. /* Generic.Deleted */
  515. .code-highlight .ge {
  516. font-style: italic;
  517. }
  518. /* Generic.Emph */
  519. .code-highlight .gr {
  520. color: #E40000;
  521. }
  522. /* Generic.Error */
  523. .code-highlight .gh {
  524. color: #000080;
  525. font-weight: bold;
  526. }
  527. /* Generic.Heading */
  528. .code-highlight .gi {
  529. color: #008400;
  530. }
  531. /* Generic.Inserted */
  532. .code-highlight .go {
  533. color: #717171;
  534. }
  535. /* Generic.Output */
  536. .code-highlight .gp {
  537. color: #000080;
  538. font-weight: bold;
  539. }
  540. /* Generic.Prompt */
  541. .code-highlight .gs {
  542. font-weight: bold;
  543. }
  544. /* Generic.Strong */
  545. .code-highlight .gu {
  546. color: #800080;
  547. font-weight: bold;
  548. }
  549. /* Generic.Subheading */
  550. .code-highlight .gt {
  551. color: #0044DD;
  552. }
  553. /* Generic.Traceback */
  554. .code-highlight .kc {
  555. color: #008000;
  556. font-weight: bold;
  557. }
  558. /* Keyword.Constant */
  559. .code-highlight .kd {
  560. color: #008000;
  561. font-weight: bold;
  562. }
  563. /* Keyword.Declaration */
  564. .code-highlight .kn {
  565. color: #008000;
  566. font-weight: bold;
  567. }
  568. /* Keyword.Namespace */
  569. .code-highlight .kp {
  570. color: #008000;
  571. }
  572. /* Keyword.Pseudo */
  573. .code-highlight .kr {
  574. color: #008000;
  575. font-weight: bold;
  576. }
  577. /* Keyword.Reserved */
  578. .code-highlight .kt {
  579. color: #B00040;
  580. }
  581. /* Keyword.Type */
  582. .code-highlight .m {
  583. color: #666666;
  584. }
  585. /* Literal.Number */
  586. .code-highlight .s {
  587. color: #BA2121;
  588. }
  589. /* Literal.String */
  590. .code-highlight .na {
  591. color: #687822;
  592. }
  593. /* Name.Attribute */
  594. .code-highlight .nb {
  595. color: #008000;
  596. }
  597. /* Name.Builtin */
  598. .code-highlight .nc {
  599. color: #0000FF;
  600. font-weight: bold;
  601. }
  602. /* Name.Class */
  603. .code-highlight .no {
  604. color: #880000;
  605. }
  606. /* Name.Constant */
  607. .code-highlight .nd {
  608. color: #AA22FF;
  609. }
  610. /* Name.Decorator */
  611. .code-highlight .ni {
  612. color: #717171;
  613. font-weight: bold;
  614. }
  615. /* Name.Entity */
  616. .code-highlight .ne {
  617. color: #CB3F38;
  618. font-weight: bold;
  619. }
  620. /* Name.Exception */
  621. .code-highlight .nf {
  622. color: #0000FF;
  623. }
  624. /* Name.Function */
  625. .code-highlight .nl {
  626. color: #767600;
  627. }
  628. /* Name.Label */
  629. .code-highlight .nn {
  630. color: #0000FF;
  631. font-weight: bold;
  632. }
  633. /* Name.Namespace */
  634. .code-highlight .nt {
  635. color: #008000;
  636. font-weight: bold;
  637. }
  638. /* Name.Tag */
  639. .code-highlight .nv {
  640. color: #19177C;
  641. }
  642. /* Name.Variable */
  643. .code-highlight .ow {
  644. color: #AA22FF;
  645. font-weight: bold;
  646. }
  647. /* Operator.Word */
  648. .code-highlight .w {
  649. color: #bbbbbb;
  650. }
  651. /* Text.Whitespace */
  652. .code-highlight .mb {
  653. color: #666666;
  654. }
  655. /* Literal.Number.Bin */
  656. .code-highlight .mf {
  657. color: #666666;
  658. }
  659. /* Literal.Number.Float */
  660. .code-highlight .mh {
  661. color: #666666;
  662. }
  663. /* Literal.Number.Hex */
  664. .code-highlight .mi {
  665. color: #666666;
  666. }
  667. /* Literal.Number.Integer */
  668. .code-highlight .mo {
  669. color: #666666;
  670. }
  671. /* Literal.Number.Oct */
  672. .code-highlight .sa {
  673. color: #BA2121;
  674. }
  675. /* Literal.String.Affix */
  676. .code-highlight .sb {
  677. color: #BA2121;
  678. }
  679. /* Literal.String.Backtick */
  680. .code-highlight .sc {
  681. color: #BA2121;
  682. }
  683. /* Literal.String.Char */
  684. .code-highlight .dl {
  685. color: #BA2121;
  686. }
  687. /* Literal.String.Delimiter */
  688. .code-highlight .sd {
  689. color: #BA2121;
  690. font-style: italic;
  691. }
  692. /* Literal.String.Doc */
  693. .code-highlight .s2 {
  694. color: #BA2121;
  695. }
  696. /* Literal.String.Double */
  697. .code-highlight .se {
  698. color: #AA5D1F;
  699. font-weight: bold;
  700. }
  701. /* Literal.String.Escape */
  702. .code-highlight .sh {
  703. color: #BA2121;
  704. }
  705. /* Literal.String.Heredoc */
  706. .code-highlight .si {
  707. color: #A45A77;
  708. font-weight: bold;
  709. }
  710. /* Literal.String.Interpol */
  711. .code-highlight .sx {
  712. color: #008000;
  713. }
  714. /* Literal.String.Other */
  715. .code-highlight .sr {
  716. color: #A45A77;
  717. }
  718. /* Literal.String.Regex */
  719. .code-highlight .s1 {
  720. color: #BA2121;
  721. }
  722. /* Literal.String.Single */
  723. .code-highlight .ss {
  724. color: #19177C;
  725. }
  726. /* Literal.String.Symbol */
  727. .code-highlight .bp {
  728. color: #008000;
  729. }
  730. /* Name.Builtin.Pseudo */
  731. .code-highlight .fm {
  732. color: #0000FF;
  733. }
  734. /* Name.Function.Magic */
  735. .code-highlight .vc {
  736. color: #19177C;
  737. }
  738. /* Name.Variable.Class */
  739. .code-highlight .vg {
  740. color: #19177C;
  741. }
  742. /* Name.Variable.Global */
  743. .code-highlight .vi {
  744. color: #19177C;
  745. }
  746. /* Name.Variable.Instance */
  747. .code-highlight .vm {
  748. color: #19177C;
  749. }
  750. /* Name.Variable.Magic */
  751. .code-highlight .il {
  752. color: #666666;
  753. }
  754. /* Literal.Number.Integer.Long */
  755. html {
  756. position: relative;
  757. min-height: 100%;
  758. }
  759. body {
  760. /* Margin bottom by footer height */
  761. margin-bottom: 80px;
  762. }
  763. .footer {
  764. position: absolute;
  765. bottom: 0;
  766. width: 100%;
  767. /* Set the fixed height of the footer here */
  768. height: 60px;
  769. }
  770. input[type=checkbox]:checked + .label_hide_if_checked,
  771. input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
  772. display: none;
  773. }
  774. input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
  775. input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
  776. display: none;
  777. }
  778. .onoff-checkbox {
  779. width: 15%;
  780. }
  781. .onoffswitch {
  782. position: relative;
  783. width: 110px;
  784. -webkit-user-select: none;
  785. -moz-user-select: none;
  786. -ms-user-select: none;
  787. }
  788. .onoffswitch-checkbox {
  789. display: none;
  790. }
  791. .onoffswitch-label {
  792. display: block;
  793. overflow: hidden;
  794. cursor: pointer;
  795. border: 2px solid #FFFFFF !important;
  796. border-radius: 50px !important;
  797. }
  798. .onoffswitch-inner {
  799. display: block;
  800. transition: margin 0.3s ease-in 0s;
  801. }
  802. .onoffswitch-inner:before,
  803. .onoffswitch-inner:after {
  804. display: block;
  805. float: left;
  806. width: 50%;
  807. height: 30px;
  808. padding: 0;
  809. line-height: 40px;
  810. font-size: 20px;
  811. box-sizing: border-box;
  812. content: "";
  813. background-color: #EEEEEE;
  814. }
  815. .onoffswitch-switch {
  816. display: block;
  817. width: 37px;
  818. background-color: #00CC00;
  819. position: absolute;
  820. top: 0;
  821. bottom: 0;
  822. right: 0px;
  823. border: 2px solid #FFFFFF !important;
  824. border-radius: 50px !important;
  825. transition: all 0.3s ease-in 0s;
  826. }
  827. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  828. margin-right: 0;
  829. }
  830. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  831. right: 71px;
  832. background-color: #A1A1A1;
  833. }
  834. .result_header {
  835. margin-bottom: 5px;
  836. margin-top: 20px;
  837. }
  838. .result_header .favicon {
  839. margin-bottom: -3px;
  840. }
  841. .result_header a {
  842. vertical-align: bottom;
  843. }
  844. .result_header a .highlight {
  845. font-weight: bold;
  846. }
  847. .result-content {
  848. margin-top: 5px;
  849. word-wrap: break-word;
  850. }
  851. .result-content .highlight {
  852. font-weight: bold;
  853. }
  854. .result-default {
  855. clear: both;
  856. }
  857. .result-images {
  858. float: left !important;
  859. height: 138px;
  860. }
  861. .img-thumbnail {
  862. margin: 5px;
  863. max-height: 128px;
  864. }
  865. .result-videos {
  866. clear: both;
  867. }
  868. .result-torrents {
  869. clear: both;
  870. }
  871. .result-map {
  872. clear: both;
  873. }
  874. .result-code {
  875. clear: both;
  876. }
  877. .suggestion_item {
  878. margin: 2px 5px;
  879. max-width: 100%;
  880. }
  881. .suggestion_item .btn {
  882. max-width: 100%;
  883. white-space: normal;
  884. word-wrap: break-word;
  885. text-align: left;
  886. }
  887. .result_download {
  888. margin-right: 5px;
  889. }
  890. #pagination {
  891. margin-top: 30px;
  892. padding-bottom: 50px;
  893. }
  894. .label-default {
  895. color: #AAA;
  896. background: #FFF;
  897. }
  898. .result .text-muted small {
  899. word-wrap: break-word;
  900. }
  901. .modal-wrapper {
  902. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  903. }
  904. .modal-wrapper {
  905. background-clip: padding-box;
  906. background-color: #fff;
  907. border: 1px solid rgba(0, 0, 0, 0.2);
  908. border-radius: 6px;
  909. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  910. outline: 0 none;
  911. position: relative;
  912. }
  913. .highlight {
  914. font-weight: 700;
  915. }
  916. .infobox img {
  917. max-height: 250px;
  918. }
  919. .infobox .infobox_part {
  920. margin-bottom: 20px;
  921. word-wrap: break-word;
  922. table-layout: fixed;
  923. }
  924. .infobox .infobox_part:last-child {
  925. margin-bottom: 0;
  926. }
  927. .infobox .header_url {
  928. white-space: nowrap;
  929. overflow: hidden;
  930. text-overflow: ellipsis;
  931. display: block;
  932. }
  933. .infobox .infobox_toggle {
  934. width: 100%;
  935. text-align: center;
  936. margin-bottom: 0px;
  937. }
  938. .infobox .infobox_checkbox ~ .infobox_body {
  939. max-height: 300px;
  940. overflow: hidden;
  941. }
  942. .infobox .infobox_checkbox:checked ~ .infobox_body {
  943. max-height: none;
  944. }
  945. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  946. display: block;
  947. }
  948. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  949. display: none;
  950. }
  951. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  952. display: block;
  953. }
  954. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  955. display: none;
  956. }
  957. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  958. display: none;
  959. }
  960. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  961. display: block;
  962. }
  963. .search_categories,
  964. #categories {
  965. text-transform: capitalize;
  966. margin-bottom: 1.5rem;
  967. margin-top: 1.5rem;
  968. display: flex;
  969. flex-wrap: wrap;
  970. align-content: stretch;
  971. }
  972. .search_categories label,
  973. #categories label,
  974. .search_categories .input-group-addon,
  975. #categories .input-group-addon {
  976. flex-grow: 1;
  977. flex-basis: auto;
  978. font-size: 1.3rem;
  979. font-weight: normal;
  980. background-color: white;
  981. border: #DDD 1px solid;
  982. border-right: none;
  983. color: #333;
  984. padding-bottom: 0.8rem;
  985. padding-top: 0.8rem;
  986. text-align: center;
  987. min-width: 50px;
  988. }
  989. .search_categories label:last-child,
  990. #categories label:last-child,
  991. .search_categories .input-group-addon:last-child,
  992. #categories .input-group-addon:last-child {
  993. border-right: #DDD 1px solid;
  994. }
  995. .search_categories input[type="checkbox"]:checked + label,
  996. #categories input[type="checkbox"]:checked + label {
  997. color: black;
  998. font-weight: bold;
  999. background-color: #EEE;
  1000. }
  1001. .visually-hidden {
  1002. position: absolute !important;
  1003. height: 1px;
  1004. width: 1px;
  1005. overflow: hidden;
  1006. clip: rect(1px 1px 1px 1px);
  1007. /* IE6, IE7 */
  1008. clip: rect(1px, 1px, 1px, 1px);
  1009. white-space: nowrap;
  1010. /* added line */
  1011. }
  1012. #advanced-search-container {
  1013. display: none;
  1014. text-align: center;
  1015. margin-bottom: 1rem;
  1016. clear: both;
  1017. }
  1018. #advanced-search-container label,
  1019. #advanced-search-container .input-group-addon {
  1020. font-size: 1.3rem;
  1021. font-weight: normal;
  1022. background-color: white;
  1023. border: #DDD 1px solid;
  1024. border-right: none;
  1025. color: #333;
  1026. padding-bottom: 0.8rem;
  1027. padding-left: 1.2rem;
  1028. padding-right: 1.2rem;
  1029. }
  1030. #advanced-search-container label:last-child,
  1031. #advanced-search-container .input-group-addon:last-child {
  1032. border-right: #DDD 1px solid;
  1033. }
  1034. #advanced-search-container input[type="radio"] {
  1035. display: none;
  1036. }
  1037. #advanced-search-container input[type="radio"]:checked + label {
  1038. color: black;
  1039. font-weight: bold;
  1040. background-color: #EEE;
  1041. }
  1042. #check-advanced {
  1043. display: none;
  1044. }
  1045. #check-advanced:checked ~ #advanced-search-container {
  1046. display: block;
  1047. }
  1048. .advanced {
  1049. padding: 0;
  1050. margin-top: 0.3rem;
  1051. text-align: right;
  1052. }
  1053. .advanced label,
  1054. .advanced select {
  1055. cursor: pointer;
  1056. }
  1057. .cursor-text {
  1058. cursor: text !important;
  1059. }
  1060. .cursor-pointer {
  1061. cursor: pointer !important;
  1062. }
  1063. .searxng-navbar {
  1064. background: #eee;
  1065. color: #aaa;
  1066. height: 2.3rem;
  1067. font-size: 1.3rem;
  1068. line-height: 1.3rem;
  1069. padding: 0.5rem;
  1070. font-weight: bold;
  1071. margin-bottom: 1.3rem;
  1072. }
  1073. .searxng-navbar a,
  1074. .searxng-navbar a:hover {
  1075. margin-right: 2rem;
  1076. text-decoration: none;
  1077. }
  1078. .searxng-navbar .instance a {
  1079. color: #444;
  1080. margin-left: 2rem;
  1081. }
  1082. .table > tbody > tr > td,
  1083. .table > tbody > tr > th {
  1084. vertical-align: middle !important;
  1085. }
  1086. .engine-tooltip {
  1087. display: none;
  1088. position: absolute;
  1089. padding: 0.5rem 1rem;
  1090. margin: 0rem 0 0 2rem;
  1091. border: 1px solid #ddd;
  1092. box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  1093. background: white;
  1094. font-size: 14px;
  1095. font-weight: normal;
  1096. z-index: 1000000;
  1097. }
  1098. th:hover .engine-tooltip,
  1099. td:hover .engine-tooltip,
  1100. .engine-tooltip:hover {
  1101. display: inline-block;
  1102. }
  1103. /* stacked-bar-chart */
  1104. .stacked-bar-chart {
  1105. margin: 0;
  1106. padding: 0 0.125rem 0 3rem;
  1107. width: 100%;
  1108. width: -moz-available;
  1109. width: -webkit-fill-available;
  1110. width: fill;
  1111. flex-direction: row;
  1112. flex-wrap: nowrap;
  1113. flex-grow: 1;
  1114. align-items: center;
  1115. display: inline-flex;
  1116. }
  1117. .stacked-bar-chart-value {
  1118. width: 3rem;
  1119. display: inline-block;
  1120. position: absolute;
  1121. padding: 0 0.5rem;
  1122. text-align: right;
  1123. }
  1124. .stacked-bar-chart-base {
  1125. display: flex;
  1126. flex-shrink: 0;
  1127. flex-grow: 0;
  1128. flex-basis: unset;
  1129. }
  1130. .stacked-bar-chart-median {
  1131. display: flex;
  1132. flex-shrink: 0;
  1133. flex-grow: 0;
  1134. flex-basis: unset;
  1135. background: #000000;
  1136. border: 1px solid rgba(0, 0, 0, 0.9);
  1137. padding: 0.3rem 0;
  1138. }
  1139. .stacked-bar-chart-rate80 {
  1140. display: flex;
  1141. flex-shrink: 0;
  1142. flex-grow: 0;
  1143. flex-basis: unset;
  1144. background: transparent;
  1145. border: 1px solid rgba(0, 0, 0, 0.3);
  1146. padding: 0.3rem 0;
  1147. }
  1148. .stacked-bar-chart-rate95 {
  1149. display: flex;
  1150. flex-shrink: 0;
  1151. flex-grow: 0;
  1152. flex-basis: unset;
  1153. background: transparent;
  1154. border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  1155. padding: 0;
  1156. }
  1157. .stacked-bar-chart-rate100 {
  1158. display: flex;
  1159. flex-shrink: 0;
  1160. flex-grow: 0;
  1161. flex-basis: unset;
  1162. background: transparent;
  1163. border-left: 1px solid rgba(0, 0, 0, 0.9);
  1164. padding: 0.4rem 0;
  1165. width: 1px;
  1166. }
  1167. /* Safari 9+
  1168. Conditional/Hack CSS from https://browserstrangeness.github.io/css_hacks.html
  1169. */
  1170. @supports (-webkit-marquee-repetition:infinite) and (object-fit:fill) {
  1171. .twitter-typeahead .tt-input:focus {
  1172. z-index: 2;
  1173. }
  1174. .input-group-btn:last-child > .btn,
  1175. .input-group-btn:last-child > .btn-group {
  1176. margin-left: inherit !important;
  1177. }
  1178. }