logicodev.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395
  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. /*
  373. this file is generated automatically by searx_extra/update/update_pygments.py
  374. using pygments version 2.9.0
  375. */
  376. .code-highlight .linenos {
  377. -webkit-touch-callout: none;
  378. -webkit-user-select: none;
  379. -khtml-user-select: none;
  380. -moz-user-select: none;
  381. -ms-user-select: none;
  382. user-select: none;
  383. cursor: default;
  384. margin-right: 8px;
  385. text-align: right;
  386. }
  387. .code-highlight .linenos::selection {
  388. background: transparent;
  389. /* WebKit/Blink Browsers */
  390. }
  391. .code-highlight .linenos::-moz-selection {
  392. background: transparent;
  393. /* Gecko Browsers */
  394. }
  395. .code-highlight pre {
  396. line-height: 125%;
  397. }
  398. .code-highlight td.linenos .normal {
  399. color: inherit;
  400. background-color: transparent;
  401. padding-left: 5px;
  402. padding-right: 5px;
  403. }
  404. .code-highlight span.linenos {
  405. color: inherit;
  406. background-color: transparent;
  407. padding-left: 5px;
  408. padding-right: 5px;
  409. }
  410. .code-highlight td.linenos .special {
  411. color: #000000;
  412. background-color: #ffffc0;
  413. padding-left: 5px;
  414. padding-right: 5px;
  415. }
  416. .code-highlight span.linenos.special {
  417. color: #000000;
  418. background-color: #ffffc0;
  419. padding-left: 5px;
  420. padding-right: 5px;
  421. }
  422. .code-highlight .hll {
  423. background-color: #ffffcc;
  424. }
  425. .code-highlight {
  426. background: #282C34;
  427. }
  428. .code-highlight .c {
  429. color: #556366;
  430. font-style: italic;
  431. }
  432. /* Comment */
  433. .code-highlight .err {
  434. border: 1px solid #ff0000;
  435. }
  436. /* Error */
  437. .code-highlight .k {
  438. color: #BE74D5;
  439. font-weight: bold;
  440. }
  441. /* Keyword */
  442. .code-highlight .o {
  443. color: #D19A66;
  444. }
  445. /* Operator */
  446. .code-highlight .ch {
  447. color: #556366;
  448. font-style: italic;
  449. }
  450. /* Comment.Hashbang */
  451. .code-highlight .cm {
  452. color: #556366;
  453. font-style: italic;
  454. }
  455. /* Comment.Multiline */
  456. .code-highlight .cp {
  457. color: #BC7A00;
  458. font-style: italic;
  459. }
  460. /* Comment.Preproc */
  461. .code-highlight .cpf {
  462. color: #556366;
  463. font-style: italic;
  464. }
  465. /* Comment.PreprocFile */
  466. .code-highlight .c1 {
  467. color: #556366;
  468. font-style: italic;
  469. }
  470. /* Comment.Single */
  471. .code-highlight .cs {
  472. color: #556366;
  473. font-style: italic;
  474. }
  475. /* Comment.Special */
  476. .code-highlight .gd {
  477. color: #A00000;
  478. }
  479. /* Generic.Deleted */
  480. .code-highlight .ge {
  481. font-style: italic;
  482. }
  483. /* Generic.Emph */
  484. .code-highlight .gr {
  485. color: #FF0000;
  486. }
  487. /* Generic.Error */
  488. .code-highlight .gh {
  489. color: #000080;
  490. font-weight: bold;
  491. }
  492. /* Generic.Heading */
  493. .code-highlight .gi {
  494. color: #00A000;
  495. }
  496. /* Generic.Inserted */
  497. .code-highlight .go {
  498. color: #888888;
  499. }
  500. /* Generic.Output */
  501. .code-highlight .gp {
  502. color: #000080;
  503. font-weight: bold;
  504. }
  505. /* Generic.Prompt */
  506. .code-highlight .gs {
  507. font-weight: bold;
  508. }
  509. /* Generic.Strong */
  510. .code-highlight .gu {
  511. color: #800080;
  512. font-weight: bold;
  513. }
  514. /* Generic.Subheading */
  515. .code-highlight .gt {
  516. color: #0044DD;
  517. }
  518. /* Generic.Traceback */
  519. .code-highlight .kc {
  520. color: #BE74D5;
  521. font-weight: bold;
  522. }
  523. /* Keyword.Constant */
  524. .code-highlight .kd {
  525. color: #BE74D5;
  526. font-weight: bold;
  527. }
  528. /* Keyword.Declaration */
  529. .code-highlight .kn {
  530. color: #BE74D5;
  531. font-weight: bold;
  532. }
  533. /* Keyword.Namespace */
  534. .code-highlight .kp {
  535. color: #BE74D5;
  536. font-weight: bold;
  537. }
  538. /* Keyword.Pseudo */
  539. .code-highlight .kr {
  540. color: #BE74D5;
  541. font-weight: bold;
  542. }
  543. /* Keyword.Reserved */
  544. .code-highlight .kt {
  545. color: #D46C72;
  546. font-weight: bold;
  547. }
  548. /* Keyword.Type */
  549. .code-highlight .m {
  550. color: #D19A66;
  551. }
  552. /* Literal.Number */
  553. .code-highlight .s {
  554. color: #86C372;
  555. }
  556. /* Literal.String */
  557. .code-highlight .na {
  558. color: #7D9029;
  559. }
  560. /* Name.Attribute */
  561. .code-highlight .nb {
  562. color: #BE74D5;
  563. }
  564. /* Name.Builtin */
  565. .code-highlight .nc {
  566. color: #61AFEF;
  567. font-weight: bold;
  568. }
  569. /* Name.Class */
  570. .code-highlight .no {
  571. color: #D19A66;
  572. }
  573. /* Name.Constant */
  574. .code-highlight .nd {
  575. color: #AA22FF;
  576. }
  577. /* Name.Decorator */
  578. .code-highlight .ni {
  579. color: #999999;
  580. font-weight: bold;
  581. }
  582. /* Name.Entity */
  583. .code-highlight .ne {
  584. color: #D2413A;
  585. font-weight: bold;
  586. }
  587. /* Name.Exception */
  588. .code-highlight .nf {
  589. color: #61AFEF;
  590. }
  591. /* Name.Function */
  592. .code-highlight .nl {
  593. color: #A0A000;
  594. }
  595. /* Name.Label */
  596. .code-highlight .nn {
  597. color: #61AFEF;
  598. font-weight: bold;
  599. }
  600. /* Name.Namespace */
  601. .code-highlight .nt {
  602. color: #BE74D5;
  603. font-weight: bold;
  604. }
  605. /* Name.Tag */
  606. .code-highlight .nv {
  607. color: #DFC06F;
  608. }
  609. /* Name.Variable */
  610. .code-highlight .ow {
  611. color: #AA22FF;
  612. font-weight: bold;
  613. }
  614. /* Operator.Word */
  615. .code-highlight .w {
  616. color: #D7DAE0;
  617. }
  618. /* Text.Whitespace */
  619. .code-highlight .mb {
  620. color: #D19A66;
  621. }
  622. /* Literal.Number.Bin */
  623. .code-highlight .mf {
  624. color: #D19A66;
  625. }
  626. /* Literal.Number.Float */
  627. .code-highlight .mh {
  628. color: #D19A66;
  629. }
  630. /* Literal.Number.Hex */
  631. .code-highlight .mi {
  632. color: #D19A66;
  633. }
  634. /* Literal.Number.Integer */
  635. .code-highlight .mo {
  636. color: #D19A66;
  637. }
  638. /* Literal.Number.Oct */
  639. .code-highlight .sa {
  640. color: #86C372;
  641. }
  642. /* Literal.String.Affix */
  643. .code-highlight .sb {
  644. color: #86C372;
  645. }
  646. /* Literal.String.Backtick */
  647. .code-highlight .sc {
  648. color: #86C372;
  649. }
  650. /* Literal.String.Char */
  651. .code-highlight .dl {
  652. color: #86C372;
  653. }
  654. /* Literal.String.Delimiter */
  655. .code-highlight .sd {
  656. color: #86C372;
  657. font-style: italic;
  658. }
  659. /* Literal.String.Doc */
  660. .code-highlight .s2 {
  661. color: #86C372;
  662. }
  663. /* Literal.String.Double */
  664. .code-highlight .se {
  665. color: #BB6622;
  666. font-weight: bold;
  667. }
  668. /* Literal.String.Escape */
  669. .code-highlight .sh {
  670. color: #86C372;
  671. }
  672. /* Literal.String.Heredoc */
  673. .code-highlight .si {
  674. color: #BB6688;
  675. font-weight: bold;
  676. }
  677. /* Literal.String.Interpol */
  678. .code-highlight .sx {
  679. color: #BE74D5;
  680. }
  681. /* Literal.String.Other */
  682. .code-highlight .sr {
  683. color: #BB6688;
  684. }
  685. /* Literal.String.Regex */
  686. .code-highlight .s1 {
  687. color: #86C372;
  688. }
  689. /* Literal.String.Single */
  690. .code-highlight .ss {
  691. color: #DFC06F;
  692. }
  693. /* Literal.String.Symbol */
  694. .code-highlight .bp {
  695. color: #BE74D5;
  696. }
  697. /* Name.Builtin.Pseudo */
  698. .code-highlight .fm {
  699. color: #61AFEF;
  700. }
  701. /* Name.Function.Magic */
  702. .code-highlight .vc {
  703. color: #DFC06F;
  704. }
  705. /* Name.Variable.Class */
  706. .code-highlight .vg {
  707. color: #DFC06F;
  708. }
  709. /* Name.Variable.Global */
  710. .code-highlight .vi {
  711. color: #DFC06F;
  712. }
  713. /* Name.Variable.Instance */
  714. .code-highlight .vm {
  715. color: #DFC06F;
  716. }
  717. /* Name.Variable.Magic */
  718. .code-highlight .il {
  719. color: #D19A66;
  720. }
  721. /* Literal.Number.Integer.Long */
  722. .searx-navbar {
  723. background: #29314D;
  724. height: 2.3rem;
  725. font-size: 1.3rem;
  726. line-height: 1.3rem;
  727. padding: 0.5rem;
  728. font-weight: bold;
  729. margin-bottom: 0.8rem;
  730. }
  731. .searx-navbar a,
  732. .searx-navbar a:hover {
  733. margin-right: 2rem;
  734. color: white;
  735. text-decoration: none;
  736. }
  737. .searx-navbar .instance a {
  738. color: #01D7D4;
  739. margin-left: 2rem;
  740. }
  741. #main-logo {
  742. margin-top: 20vh;
  743. margin-bottom: 25px;
  744. }
  745. #main-logo > img {
  746. max-width: 350px;
  747. width: 80%;
  748. }
  749. * {
  750. border-radius: 0 !important;
  751. }
  752. html {
  753. position: relative;
  754. min-height: 100%;
  755. color: #29314D;
  756. }
  757. body {
  758. /* Margin bottom by footer height */
  759. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  760. margin-bottom: 80px;
  761. background-color: white;
  762. }
  763. body a {
  764. color: #0088CC;
  765. }
  766. .footer {
  767. position: absolute;
  768. bottom: 0;
  769. width: 100%;
  770. /* Set the fixed height of the footer here */
  771. height: 60px;
  772. text-align: center;
  773. color: #999;
  774. }
  775. input[type=checkbox]:checked + .label_hide_if_checked,
  776. input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
  777. display: none;
  778. }
  779. input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
  780. input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
  781. display: none;
  782. }
  783. .onoff-checkbox {
  784. width: 15%;
  785. }
  786. .onoffswitch {
  787. position: relative;
  788. width: 110px;
  789. -webkit-user-select: none;
  790. -moz-user-select: none;
  791. -ms-user-select: none;
  792. }
  793. .onoffswitch-checkbox {
  794. opacity: 0;
  795. position: absolute;
  796. }
  797. .onoffswitch-checkbox:before {
  798. content: "";
  799. display: inline-block;
  800. width: 16px;
  801. height: 16px;
  802. margin-right: 10px;
  803. position: absolute;
  804. left: 0;
  805. bottom: 1px;
  806. background-color: #fff;
  807. border: 1px solid #ccc;
  808. border-radius: 0px;
  809. }
  810. .onoffswitch-label {
  811. display: block;
  812. overflow: hidden;
  813. cursor: pointer;
  814. border: 2px solid #FFFFFF !important;
  815. border-radius: 50px !important;
  816. }
  817. .onoffswitch-inner {
  818. display: block;
  819. transition: margin 0.3s ease-in 0s;
  820. }
  821. .onoffswitch-inner:before,
  822. .onoffswitch-inner:after {
  823. display: block;
  824. float: left;
  825. width: 50%;
  826. height: 30px;
  827. padding: 0;
  828. line-height: 40px;
  829. font-size: 20px;
  830. box-sizing: border-box;
  831. content: "";
  832. background-color: #EEEEEE;
  833. }
  834. .onoffswitch-switch {
  835. display: block;
  836. width: 37px;
  837. background-color: #01D7D4;
  838. position: absolute;
  839. top: 0;
  840. bottom: 0;
  841. right: 0px;
  842. border: 2px solid #FFFFFF;
  843. border-radius: 50px !important;
  844. transition: all 0.3s ease-in 0s;
  845. }
  846. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  847. margin-right: 0;
  848. }
  849. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  850. right: 71px;
  851. background-color: #A1A1A1;
  852. }
  853. .onoffswitch-checkbox:focus + .onoffswitch-label .onoffswitch-switch {
  854. border: 3px solid #444444;
  855. }
  856. .result_header {
  857. margin-top: 0px;
  858. margin-bottom: 2px;
  859. font-size: 16px;
  860. }
  861. .result_header .favicon {
  862. margin-bottom: -3px;
  863. }
  864. .result_header a {
  865. color: #29314D;
  866. text-decoration: none;
  867. }
  868. .result_header a:hover {
  869. color: #0088CC;
  870. }
  871. .result_header a:visited {
  872. color: #684898;
  873. }
  874. .result_header a .highlight {
  875. background-color: #F6F9FA;
  876. }
  877. .result-content,
  878. .result-format,
  879. .result-source {
  880. margin-top: 2px;
  881. margin-bottom: 0;
  882. word-wrap: break-word;
  883. color: #666;
  884. font-size: 13px;
  885. }
  886. .result .highlight {
  887. font-weight: bold;
  888. }
  889. .result-source {
  890. font-size: 10px;
  891. float: left;
  892. }
  893. .result-format {
  894. font-size: 10px;
  895. float: right;
  896. }
  897. .result-abstract {
  898. margin-top: 0.5em;
  899. margin-bottom: 0.8em;
  900. }
  901. .external-link {
  902. color: #068922;
  903. font-size: 12px;
  904. margin-bottom: 15px;
  905. }
  906. .external-link a {
  907. margin-right: 3px;
  908. }
  909. .result-default,
  910. .result-code,
  911. .result-torrent,
  912. .result-videos,
  913. .result-map {
  914. clear: both;
  915. padding: 0.5em 4px;
  916. }
  917. .result-default:hover,
  918. .result-code:hover,
  919. .result-torrent:hover,
  920. .result-videos:hover,
  921. .result-map:hover {
  922. background-color: #F6F9FA;
  923. }
  924. .result-images {
  925. float: left !important;
  926. margin: 0;
  927. padding: 0;
  928. }
  929. .result-images a {
  930. display: block;
  931. width: 100%;
  932. background-size: cover;
  933. }
  934. .result-images a .img-thumbnail {
  935. border: none !important;
  936. padding: 0;
  937. }
  938. .result-images a:hover,
  939. .result-images a:focus {
  940. outline: 0;
  941. }
  942. .result-images a:hover .img-thumbnail,
  943. .result-images a:focus .img-thumbnail {
  944. box-shadow: 5px 5px 15px 0px black;
  945. }
  946. .result-images.js a .img-thumbnail {
  947. max-height: inherit;
  948. min-height: inherit;
  949. }
  950. .result-images:not(.js) {
  951. width: 25%;
  952. padding: 3px 13px 13px 3px;
  953. }
  954. .result-images:not(.js) a .img-thumbnail {
  955. margin: 0;
  956. max-height: 128px;
  957. min-height: 128px;
  958. }
  959. .img-thumbnail {
  960. margin: 5px;
  961. max-height: 128px;
  962. min-height: 128px;
  963. }
  964. .result-videos {
  965. clear: both;
  966. }
  967. .result-videos hr {
  968. margin: 5px 0 15px 0;
  969. }
  970. .result-videos .collapse {
  971. width: 100%;
  972. }
  973. .result-videos .in {
  974. margin-bottom: 8px;
  975. }
  976. .result-torrent {
  977. clear: both;
  978. }
  979. .result-torrent b {
  980. margin-right: 5px;
  981. margin-left: 5px;
  982. }
  983. .result-torrent .seeders {
  984. color: #2ecc71;
  985. }
  986. .result-torrent .leechers {
  987. color: #F35E77;
  988. }
  989. .result-metadata {
  990. clear: both;
  991. margin: 1em;
  992. }
  993. .result-metadata td {
  994. padding-right: 1em;
  995. color: #A4A4A4;
  996. }
  997. .result-metadata td:first-of-type {
  998. color: #666;
  999. }
  1000. .result-map {
  1001. clear: both;
  1002. }
  1003. .result-map .img-thumbnail {
  1004. float: right;
  1005. width: auto;
  1006. height: 120px;
  1007. border: 0;
  1008. background: inherit;
  1009. }
  1010. .result-map .img-type {
  1011. width: 20px;
  1012. max-height: 20px;
  1013. }
  1014. .result-map .result-map-details {
  1015. font-size: 13px;
  1016. border-collapse: separate;
  1017. border-spacing: 0 0.35rem;
  1018. }
  1019. .result-map .result-map-details th {
  1020. font-weight: inherit;
  1021. width: 20rem;
  1022. vertical-align: top;
  1023. }
  1024. .result-map .result-map-details td {
  1025. vertical-align: top;
  1026. }
  1027. .result-code {
  1028. clear: both;
  1029. }
  1030. .result-code .code-fork,
  1031. .result-code .code-fork a {
  1032. color: #666;
  1033. }
  1034. .suggestion_item {
  1035. margin: 2px 5px;
  1036. max-width: 100%;
  1037. }
  1038. .suggestion_item .btn {
  1039. max-width: 100%;
  1040. white-space: normal;
  1041. word-wrap: break-word;
  1042. text-align: left;
  1043. }
  1044. .result_download {
  1045. margin-right: 5px;
  1046. }
  1047. #pagination {
  1048. margin-top: 30px;
  1049. padding-bottom: 60px;
  1050. }
  1051. .label-default {
  1052. color: #666;
  1053. background: transparent;
  1054. }
  1055. .result .text-muted small {
  1056. word-wrap: break-word;
  1057. }
  1058. .modal-wrapper {
  1059. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  1060. }
  1061. .modal-wrapper {
  1062. background-clip: padding-box;
  1063. background-color: #fff;
  1064. border: 1px solid rgba(0, 0, 0, 0.2);
  1065. border-radius: 6px;
  1066. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  1067. outline: 0 none;
  1068. position: relative;
  1069. }
  1070. @media screen and (max-width: 75em) {
  1071. .img-thumbnail {
  1072. object-fit: cover;
  1073. }
  1074. }
  1075. .infobox .panel-heading {
  1076. background-color: #F6F9FA;
  1077. }
  1078. .infobox .panel-heading .panel-title {
  1079. font-weight: 700;
  1080. }
  1081. .infobox .header_url {
  1082. white-space: nowrap;
  1083. overflow: hidden;
  1084. text-overflow: ellipsis;
  1085. display: block;
  1086. }
  1087. .infobox p {
  1088. font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
  1089. font-style: italic;
  1090. }
  1091. .infobox img {
  1092. max-height: "250px";
  1093. }
  1094. .infobox .btn {
  1095. background-color: #007AB8;
  1096. border: none;
  1097. }
  1098. .infobox .btn a {
  1099. color: white;
  1100. margin: 5px;
  1101. }
  1102. .infobox .infobox_part {
  1103. margin-bottom: 20px;
  1104. word-wrap: break-word;
  1105. table-layout: fixed;
  1106. }
  1107. .infobox .infobox_part:last-child {
  1108. margin-bottom: 0;
  1109. }
  1110. .infobox .infobox_toggle {
  1111. width: 100%;
  1112. text-align: center;
  1113. margin-bottom: 0px;
  1114. cursor: pointer;
  1115. }
  1116. .infobox .infobox_toggle:hover {
  1117. background: #DDD;
  1118. }
  1119. .infobox .infobox_checkbox ~ .infobox_body {
  1120. max-height: 300px;
  1121. overflow: hidden;
  1122. }
  1123. .infobox .infobox_checkbox:checked ~ .infobox_body {
  1124. max-height: none;
  1125. }
  1126. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  1127. display: block;
  1128. }
  1129. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  1130. display: none;
  1131. }
  1132. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  1133. display: block;
  1134. }
  1135. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  1136. display: none;
  1137. }
  1138. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  1139. display: none;
  1140. }
  1141. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  1142. display: block;
  1143. }
  1144. .search_categories,
  1145. #categories {
  1146. text-transform: capitalize;
  1147. margin-bottom: 0.5rem;
  1148. display: flex;
  1149. flex-wrap: wrap;
  1150. flex-flow: row wrap;
  1151. align-content: stretch;
  1152. }
  1153. .search_categories label,
  1154. #categories label,
  1155. .search_categories .input-group-addon,
  1156. #categories .input-group-addon {
  1157. flex-grow: 1;
  1158. flex-basis: auto;
  1159. font-size: 1.2rem;
  1160. font-weight: normal;
  1161. background-color: white;
  1162. border: #DDD 1px solid;
  1163. border-right: none;
  1164. color: #666;
  1165. padding-bottom: 0.4rem;
  1166. padding-top: 0.4rem;
  1167. text-align: center;
  1168. min-width: 50px;
  1169. }
  1170. .search_categories label:last-child,
  1171. #categories label:last-child,
  1172. .search_categories .input-group-addon:last-child,
  1173. #categories .input-group-addon:last-child {
  1174. border-right: #DDD 1px solid;
  1175. }
  1176. .search_categories input[type="checkbox"]:checked + label,
  1177. #categories input[type="checkbox"]:checked + label {
  1178. color: #29314D;
  1179. font-weight: bold;
  1180. border-bottom: #01D7D4 5px solid;
  1181. }
  1182. #main-logo {
  1183. margin-top: 10vh;
  1184. margin-bottom: 25px;
  1185. }
  1186. #main-logo > img {
  1187. max-width: 350px;
  1188. width: 80%;
  1189. }
  1190. #q {
  1191. box-shadow: none;
  1192. border-right: none;
  1193. border-color: #888;
  1194. }
  1195. #search_form .input-group-btn .btn {
  1196. border-color: #888;
  1197. }
  1198. #search_form .input-group-btn .btn:hover {
  1199. background-color: #068922;
  1200. color: white;
  1201. }
  1202. .custom-select,
  1203. .custom-select-rtl {
  1204. appearance: none;
  1205. -webkit-appearance: none;
  1206. -moz-appearance: none;
  1207. font-size: 1.2rem;
  1208. font-weight: normal;
  1209. background-color: white;
  1210. border: #888 1px solid;
  1211. color: #666;
  1212. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGnsAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW86/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wNy0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
  1213. }
  1214. .custom-select-rtl {
  1215. background-position-x: 4%;
  1216. }
  1217. .search-margin {
  1218. margin-bottom: 0.6em;
  1219. }
  1220. .visually-hidden {
  1221. position: absolute !important;
  1222. height: 1px;
  1223. width: 1px;
  1224. overflow: hidden;
  1225. clip: rect(1px, 1px, 1px, 1px);
  1226. white-space: nowrap;
  1227. }
  1228. .label-danger,
  1229. .btn-danger {
  1230. background: #c9432f;
  1231. }
  1232. .label-success,
  1233. .btn-success {
  1234. background: #068922;
  1235. }
  1236. select.form-control {
  1237. border-color: #888 !important;
  1238. }
  1239. #advanced-search-container {
  1240. display: none;
  1241. text-align: left;
  1242. margin-bottom: 1rem;
  1243. clear: both;
  1244. }
  1245. #advanced-search-container label,
  1246. #advanced-search-container .input-group-addon {
  1247. font-size: 1.2rem;
  1248. font-weight: normal;
  1249. background-color: white;
  1250. border: #DDD 1px solid;
  1251. border-right: none;
  1252. color: #666;
  1253. padding-bottom: 0.4rem;
  1254. padding-right: 0.7rem;
  1255. padding-left: 0.7rem;
  1256. }
  1257. #advanced-search-container label:last-child,
  1258. #advanced-search-container .input-group-addon:last-child {
  1259. border-right: #DDD 1px solid;
  1260. }
  1261. #advanced-search-container input[type="radio"] {
  1262. display: none;
  1263. }
  1264. #advanced-search-container input[type="radio"]:checked + label {
  1265. color: #29314D;
  1266. font-weight: bold;
  1267. border-bottom: #01D7D4 5px solid;
  1268. }
  1269. #check-advanced:focus + label {
  1270. text-decoration: underline;
  1271. }
  1272. #check-advanced:checked ~ #advanced-search-container {
  1273. display: block;
  1274. }
  1275. .advanced {
  1276. padding: 0;
  1277. margin-top: 0.3rem;
  1278. text-align: right;
  1279. }
  1280. .advanced label,
  1281. .advanced select {
  1282. cursor: pointer;
  1283. }
  1284. .cursor-text {
  1285. cursor: text !important;
  1286. }
  1287. .cursor-pointer {
  1288. cursor: pointer !important;
  1289. }
  1290. pre,
  1291. code {
  1292. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  1293. }
  1294. .code-highlight pre {
  1295. margin-bottom: 25px;
  1296. padding: 20px 10px;
  1297. background-color: inherit;
  1298. color: inherit;
  1299. border: inherit;
  1300. color: #D7DAE0;
  1301. }
  1302. .table > tbody > tr > td,
  1303. .table > tbody > tr > th {
  1304. vertical-align: middle !important;
  1305. }
  1306. .nav-tabs.nav-justified {
  1307. margin-bottom: 20px;
  1308. }
  1309. p {
  1310. margin: 10px 0;
  1311. }
  1312. input.cursor-text {
  1313. margin: 10px 0;
  1314. }
  1315. .engine-tooltip {
  1316. display: none;
  1317. position: absolute;
  1318. padding: 0.5rem 1rem;
  1319. margin: 0rem 0 0 2rem;
  1320. border: 1px solid #ddd;
  1321. box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  1322. background: white;
  1323. font-size: 14px;
  1324. font-weight: normal;
  1325. z-index: 1000000;
  1326. }
  1327. td:hover .engine-tooltip,
  1328. th:hover .engine-tooltip,
  1329. .engine-tooltip:hover {
  1330. display: inline-block;
  1331. }
  1332. /* stacked-bar-chart */
  1333. .stacked-bar-chart {
  1334. margin: 0;
  1335. padding: 0 0.125rem 0 3rem;
  1336. width: 100%;
  1337. width: -moz-available;
  1338. width: -webkit-fill-available;
  1339. width: fill;
  1340. flex-direction: row;
  1341. flex-wrap: nowrap;
  1342. flex-grow: 1;
  1343. align-items: center;
  1344. display: inline-flex;
  1345. }
  1346. .stacked-bar-chart-value {
  1347. width: 3rem;
  1348. display: inline-block;
  1349. position: absolute;
  1350. padding: 0 0.5rem;
  1351. text-align: right;
  1352. }
  1353. .stacked-bar-chart-base {
  1354. display: flex;
  1355. flex-shrink: 0;
  1356. flex-grow: 0;
  1357. flex-basis: unset;
  1358. }
  1359. .stacked-bar-chart-median {
  1360. display: flex;
  1361. flex-shrink: 0;
  1362. flex-grow: 0;
  1363. flex-basis: unset;
  1364. background: #000000;
  1365. border: 1px solid rgba(0, 0, 0, 0.9);
  1366. padding: 0.3rem 0;
  1367. }
  1368. .stacked-bar-chart-rate80 {
  1369. display: flex;
  1370. flex-shrink: 0;
  1371. flex-grow: 0;
  1372. flex-basis: unset;
  1373. background: transparent;
  1374. border: 1px solid rgba(0, 0, 0, 0.3);
  1375. padding: 0.3rem 0;
  1376. }
  1377. .stacked-bar-chart-rate95 {
  1378. display: flex;
  1379. flex-shrink: 0;
  1380. flex-grow: 0;
  1381. flex-basis: unset;
  1382. background: transparent;
  1383. border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  1384. padding: 0;
  1385. }
  1386. .stacked-bar-chart-rate100 {
  1387. display: flex;
  1388. flex-shrink: 0;
  1389. flex-grow: 0;
  1390. flex-basis: unset;
  1391. background: transparent;
  1392. border-left: 1px solid rgba(0, 0, 0, 0.9);
  1393. padding: 0.4rem 0;
  1394. width: 1px;
  1395. }