searx-rtl.css 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772
  1. /*
  2. * searx, A privacy-respecting, hackable metasearch engine
  3. *
  4. * To convert "style.less" to "style.css" run: $make styles
  5. */
  6. .github-issue-button {
  7. display: block;
  8. padding: 8px 16px;
  9. font-family: sans-serif;
  10. font-size: 16px;
  11. color: white;
  12. background-color: #238636 !important;
  13. /* important is needed cause to an !important in logicodev-dark */
  14. border: #2ea043;
  15. border-radius: 10px !important;
  16. box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
  17. }
  18. .github-issue-button:hover {
  19. background-color: #2ea043;
  20. }
  21. .issue-hide {
  22. display: none;
  23. }
  24. .engine-stats .engine-name {
  25. width: 20rem;
  26. }
  27. .engine-stats .engine-score {
  28. width: 7rem;
  29. text-align: right;
  30. }
  31. .engine-stats .engine-reliability {
  32. text-align: right;
  33. }
  34. .engine-stats table.engine-error {
  35. max-width: 1280px;
  36. margin: 1rem;
  37. border: 1px solid gray;
  38. }
  39. .engine-stats table.engine-error th.engine-error-type,
  40. .engine-stats table.engine-error td.engine-error-type,
  41. .engine-stats failed-test {
  42. width: 10rem;
  43. }
  44. .engine-stats table.engine-error span.log_parameters {
  45. border-right: 1px solid gray;
  46. padding: 0 1rem 0 0;
  47. margin: 0 0 0 0.5rem;
  48. }
  49. .bar-chart-value {
  50. width: 3em;
  51. display: inline-block;
  52. text-align: right;
  53. padding-right: 0.5rem;
  54. }
  55. .bar-chart-graph {
  56. width: calc(100% - 5rem);
  57. display: inline-block;
  58. }
  59. .bar-chart-bar {
  60. border: 3px solid #5bc0de;
  61. margin: 1px 0;
  62. }
  63. .bar-chart-serie1 {
  64. border: 3px solid #5bc0de;
  65. margin: 1px 0;
  66. float: left;
  67. }
  68. .bar-chart-serie2 {
  69. border: 3px solid #deb15b;
  70. margin: 1px 0;
  71. float: left;
  72. }
  73. .bar0 {
  74. width: 0;
  75. border: 0;
  76. }
  77. .bar1 {
  78. width: 1%;
  79. }
  80. .bar2 {
  81. width: 2%;
  82. }
  83. .bar3 {
  84. width: 3%;
  85. }
  86. .bar4 {
  87. width: 4%;
  88. }
  89. .bar5 {
  90. width: 5%;
  91. }
  92. .bar6 {
  93. width: 6%;
  94. }
  95. .bar7 {
  96. width: 7%;
  97. }
  98. .bar8 {
  99. width: 8%;
  100. }
  101. .bar9 {
  102. width: 9%;
  103. }
  104. .bar10 {
  105. width: 10%;
  106. }
  107. .bar11 {
  108. width: 11%;
  109. }
  110. .bar12 {
  111. width: 12%;
  112. }
  113. .bar13 {
  114. width: 13%;
  115. }
  116. .bar14 {
  117. width: 14%;
  118. }
  119. .bar15 {
  120. width: 15%;
  121. }
  122. .bar16 {
  123. width: 16%;
  124. }
  125. .bar17 {
  126. width: 17%;
  127. }
  128. .bar18 {
  129. width: 18%;
  130. }
  131. .bar19 {
  132. width: 19%;
  133. }
  134. .bar20 {
  135. width: 20%;
  136. }
  137. .bar21 {
  138. width: 21%;
  139. }
  140. .bar22 {
  141. width: 22%;
  142. }
  143. .bar23 {
  144. width: 23%;
  145. }
  146. .bar24 {
  147. width: 24%;
  148. }
  149. .bar25 {
  150. width: 25%;
  151. }
  152. .bar26 {
  153. width: 26%;
  154. }
  155. .bar27 {
  156. width: 27%;
  157. }
  158. .bar28 {
  159. width: 28%;
  160. }
  161. .bar29 {
  162. width: 29%;
  163. }
  164. .bar30 {
  165. width: 30%;
  166. }
  167. .bar31 {
  168. width: 31%;
  169. }
  170. .bar32 {
  171. width: 32%;
  172. }
  173. .bar33 {
  174. width: 33%;
  175. }
  176. .bar34 {
  177. width: 34%;
  178. }
  179. .bar35 {
  180. width: 35%;
  181. }
  182. .bar36 {
  183. width: 36%;
  184. }
  185. .bar37 {
  186. width: 37%;
  187. }
  188. .bar38 {
  189. width: 38%;
  190. }
  191. .bar39 {
  192. width: 39%;
  193. }
  194. .bar40 {
  195. width: 40%;
  196. }
  197. .bar41 {
  198. width: 41%;
  199. }
  200. .bar42 {
  201. width: 42%;
  202. }
  203. .bar43 {
  204. width: 43%;
  205. }
  206. .bar44 {
  207. width: 44%;
  208. }
  209. .bar45 {
  210. width: 45%;
  211. }
  212. .bar46 {
  213. width: 46%;
  214. }
  215. .bar47 {
  216. width: 47%;
  217. }
  218. .bar48 {
  219. width: 48%;
  220. }
  221. .bar49 {
  222. width: 49%;
  223. }
  224. .bar50 {
  225. width: 50%;
  226. }
  227. .bar51 {
  228. width: 51%;
  229. }
  230. .bar52 {
  231. width: 52%;
  232. }
  233. .bar53 {
  234. width: 53%;
  235. }
  236. .bar54 {
  237. width: 54%;
  238. }
  239. .bar55 {
  240. width: 55%;
  241. }
  242. .bar56 {
  243. width: 56%;
  244. }
  245. .bar57 {
  246. width: 57%;
  247. }
  248. .bar58 {
  249. width: 58%;
  250. }
  251. .bar59 {
  252. width: 59%;
  253. }
  254. .bar60 {
  255. width: 60%;
  256. }
  257. .bar61 {
  258. width: 61%;
  259. }
  260. .bar62 {
  261. width: 62%;
  262. }
  263. .bar63 {
  264. width: 63%;
  265. }
  266. .bar64 {
  267. width: 64%;
  268. }
  269. .bar65 {
  270. width: 65%;
  271. }
  272. .bar66 {
  273. width: 66%;
  274. }
  275. .bar67 {
  276. width: 67%;
  277. }
  278. .bar68 {
  279. width: 68%;
  280. }
  281. .bar69 {
  282. width: 69%;
  283. }
  284. .bar70 {
  285. width: 70%;
  286. }
  287. .bar71 {
  288. width: 71%;
  289. }
  290. .bar72 {
  291. width: 72%;
  292. }
  293. .bar73 {
  294. width: 73%;
  295. }
  296. .bar74 {
  297. width: 74%;
  298. }
  299. .bar75 {
  300. width: 75%;
  301. }
  302. .bar76 {
  303. width: 76%;
  304. }
  305. .bar77 {
  306. width: 77%;
  307. }
  308. .bar78 {
  309. width: 78%;
  310. }
  311. .bar79 {
  312. width: 79%;
  313. }
  314. .bar80 {
  315. width: 80%;
  316. }
  317. .bar81 {
  318. width: 81%;
  319. }
  320. .bar82 {
  321. width: 82%;
  322. }
  323. .bar83 {
  324. width: 83%;
  325. }
  326. .bar84 {
  327. width: 84%;
  328. }
  329. .bar85 {
  330. width: 85%;
  331. }
  332. .bar86 {
  333. width: 86%;
  334. }
  335. .bar87 {
  336. width: 87%;
  337. }
  338. .bar88 {
  339. width: 88%;
  340. }
  341. .bar89 {
  342. width: 89%;
  343. }
  344. .bar90 {
  345. width: 90%;
  346. }
  347. .bar91 {
  348. width: 91%;
  349. }
  350. .bar92 {
  351. width: 92%;
  352. }
  353. .bar93 {
  354. width: 93%;
  355. }
  356. .bar94 {
  357. width: 94%;
  358. }
  359. .bar95 {
  360. width: 95%;
  361. }
  362. .bar96 {
  363. width: 96%;
  364. }
  365. .bar97 {
  366. width: 97%;
  367. }
  368. .bar98 {
  369. width: 98%;
  370. }
  371. .bar99 {
  372. width: 99%;
  373. }
  374. .bar100 {
  375. width: 100%;
  376. }
  377. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  378. /* Document
  379. ========================================================================== */
  380. /**
  381. * 1. Correct the line height in all browsers.
  382. * 2. Prevent adjustments of font size after orientation changes in iOS.
  383. */
  384. html {
  385. line-height: 1.15; /* 1 */
  386. -webkit-text-size-adjust: 100%; /* 2 */
  387. }
  388. /* Sections
  389. ========================================================================== */
  390. /**
  391. * Remove the margin in all browsers.
  392. */
  393. body {
  394. margin: 0;
  395. }
  396. /**
  397. * Render the `main` element consistently in IE.
  398. */
  399. main {
  400. display: block;
  401. }
  402. /**
  403. * Correct the font size and margin on `h1` elements within `section` and
  404. * `article` contexts in Chrome, Firefox, and Safari.
  405. */
  406. h1 {
  407. font-size: 2em;
  408. margin: 0.67em 0;
  409. }
  410. /* Grouping content
  411. ========================================================================== */
  412. /**
  413. * 1. Add the correct box sizing in Firefox.
  414. * 2. Show the overflow in Edge and IE.
  415. */
  416. hr {
  417. box-sizing: content-box; /* 1 */
  418. height: 0; /* 1 */
  419. overflow: visible; /* 2 */
  420. }
  421. /**
  422. * 1. Correct the inheritance and scaling of font size in all browsers.
  423. * 2. Correct the odd `em` font sizing in all browsers.
  424. */
  425. pre {
  426. font-family: monospace, monospace; /* 1 */
  427. font-size: 1em; /* 2 */
  428. }
  429. /* Text-level semantics
  430. ========================================================================== */
  431. /**
  432. * Remove the gray background on active links in IE 10.
  433. */
  434. a {
  435. background-color: transparent;
  436. }
  437. /**
  438. * 1. Remove the bottom border in Chrome 57-
  439. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  440. */
  441. abbr[title] {
  442. border-bottom: none; /* 1 */
  443. text-decoration: underline; /* 2 */
  444. text-decoration: underline dotted; /* 2 */
  445. }
  446. /**
  447. * Add the correct font weight in Chrome, Edge, and Safari.
  448. */
  449. b,
  450. strong {
  451. font-weight: bolder;
  452. }
  453. /**
  454. * 1. Correct the inheritance and scaling of font size in all browsers.
  455. * 2. Correct the odd `em` font sizing in all browsers.
  456. */
  457. code,
  458. kbd,
  459. samp {
  460. font-family: monospace, monospace; /* 1 */
  461. font-size: 1em; /* 2 */
  462. }
  463. /**
  464. * Add the correct font size in all browsers.
  465. */
  466. small {
  467. font-size: 80%;
  468. }
  469. /**
  470. * Prevent `sub` and `sup` elements from affecting the line height in
  471. * all browsers.
  472. */
  473. sub,
  474. sup {
  475. font-size: 75%;
  476. line-height: 0;
  477. position: relative;
  478. vertical-align: baseline;
  479. }
  480. sub {
  481. bottom: -0.25em;
  482. }
  483. sup {
  484. top: -0.5em;
  485. }
  486. /* Embedded content
  487. ========================================================================== */
  488. /**
  489. * Remove the border on images inside links in IE 10.
  490. */
  491. img {
  492. border-style: none;
  493. }
  494. /* Forms
  495. ========================================================================== */
  496. /**
  497. * 1. Change the font styles in all browsers.
  498. * 2. Remove the margin in Firefox and Safari.
  499. */
  500. button,
  501. input,
  502. optgroup,
  503. select,
  504. textarea {
  505. font-family: inherit; /* 1 */
  506. font-size: 100%; /* 1 */
  507. line-height: 1.15; /* 1 */
  508. margin: 0; /* 2 */
  509. }
  510. /**
  511. * Show the overflow in IE.
  512. * 1. Show the overflow in Edge.
  513. */
  514. button,
  515. input { /* 1 */
  516. overflow: visible;
  517. }
  518. /**
  519. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  520. * 1. Remove the inheritance of text transform in Firefox.
  521. */
  522. button,
  523. select { /* 1 */
  524. text-transform: none;
  525. }
  526. /**
  527. * Correct the inability to style clickable types in iOS and Safari.
  528. */
  529. button,
  530. [type="button"],
  531. [type="reset"],
  532. [type="submit"] {
  533. -webkit-appearance: button;
  534. }
  535. /**
  536. * Remove the inner border and padding in Firefox.
  537. */
  538. button::-moz-focus-inner,
  539. [type="button"]::-moz-focus-inner,
  540. [type="reset"]::-moz-focus-inner,
  541. [type="submit"]::-moz-focus-inner {
  542. border-style: none;
  543. padding: 0;
  544. }
  545. /**
  546. * Restore the focus styles unset by the previous rule.
  547. */
  548. button:-moz-focusring,
  549. [type="button"]:-moz-focusring,
  550. [type="reset"]:-moz-focusring,
  551. [type="submit"]:-moz-focusring {
  552. outline: 1px dotted ButtonText;
  553. }
  554. /**
  555. * Correct the padding in Firefox.
  556. */
  557. fieldset {
  558. padding: 0.35em 0.75em 0.625em;
  559. }
  560. /**
  561. * 1. Correct the text wrapping in Edge and IE.
  562. * 2. Correct the color inheritance from `fieldset` elements in IE.
  563. * 3. Remove the padding so developers are not caught out when they zero out
  564. * `fieldset` elements in all browsers.
  565. */
  566. legend {
  567. box-sizing: border-box; /* 1 */
  568. color: inherit; /* 2 */
  569. display: table; /* 1 */
  570. max-width: 100%; /* 1 */
  571. padding: 0; /* 3 */
  572. white-space: normal; /* 1 */
  573. }
  574. /**
  575. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  576. */
  577. progress {
  578. vertical-align: baseline;
  579. }
  580. /**
  581. * Remove the default vertical scrollbar in IE 10+.
  582. */
  583. textarea {
  584. overflow: auto;
  585. }
  586. /**
  587. * 1. Add the correct box sizing in IE 10.
  588. * 2. Remove the padding in IE 10.
  589. */
  590. [type="checkbox"],
  591. [type="radio"] {
  592. box-sizing: border-box; /* 1 */
  593. padding: 0; /* 2 */
  594. }
  595. /**
  596. * Correct the cursor style of increment and decrement buttons in Chrome.
  597. */
  598. [type="number"]::-webkit-inner-spin-button,
  599. [type="number"]::-webkit-outer-spin-button {
  600. height: auto;
  601. }
  602. /**
  603. * 1. Correct the odd appearance in Chrome and Safari.
  604. * 2. Correct the outline style in Safari.
  605. */
  606. [type="search"] {
  607. -webkit-appearance: textfield; /* 1 */
  608. outline-offset: -2px; /* 2 */
  609. }
  610. /**
  611. * Remove the inner padding in Chrome and Safari on macOS.
  612. */
  613. [type="search"]::-webkit-search-decoration {
  614. -webkit-appearance: none;
  615. }
  616. /**
  617. * 1. Correct the inability to style clickable types in iOS and Safari.
  618. * 2. Change font properties to `inherit` in Safari.
  619. */
  620. ::-webkit-file-upload-button {
  621. -webkit-appearance: button; /* 1 */
  622. font: inherit; /* 2 */
  623. }
  624. /* Interactive
  625. ========================================================================== */
  626. /*
  627. * Add the correct display in Edge, IE 10+, and Firefox.
  628. */
  629. details {
  630. display: block;
  631. }
  632. /*
  633. * Add the correct display in all browsers.
  634. */
  635. summary {
  636. display: list-item;
  637. }
  638. /* Misc
  639. ========================================================================== */
  640. /**
  641. * Add the correct display in IE 10+.
  642. */
  643. template {
  644. display: none;
  645. }
  646. /**
  647. * Add the correct display in IE 10.
  648. */
  649. [hidden] {
  650. display: none;
  651. }
  652. @font-face {
  653. font-family: "ion";
  654. src: url("../fonts/ion.eot?31a1b735188db616a2142d17947e8a45");
  655. src: url("../fonts/ion.eot?31a1b735188db616a2142d17947e8a45#iefix") format("embedded-opentype"), url("../fonts/ion.woff2?31a1b735188db616a2142d17947e8a45") format("woff2"), url("../fonts/ion.woff?31a1b735188db616a2142d17947e8a45") format("woff"), url("../fonts/ion.ttf?31a1b735188db616a2142d17947e8a45") format("truetype"), url("../fonts/ion.svg?31a1b735188db616a2142d17947e8a45#ion") format("svg");
  656. font-weight: normal;
  657. font-style: normal;
  658. }
  659. .ion-icon {
  660. display: inline-block;
  661. line-height: 1;
  662. font-weight: normal;
  663. font-style: normal;
  664. speak: none;
  665. text-decoration: inherit;
  666. text-transform: none;
  667. text-rendering: auto;
  668. -webkit-font-smoothing: antialiased;
  669. -moz-osx-font-smoothing: grayscale;
  670. }
  671. .ion-icon:before {
  672. font-family: "ion";
  673. }
  674. .ion-navicon-round:before {
  675. content: "\f101";
  676. }
  677. .ion-search:before {
  678. content: "\f102";
  679. }
  680. .ion-play:before {
  681. content: "\f103";
  682. }
  683. .ion-link:before {
  684. content: "\f104";
  685. }
  686. .ion-chevron-up:before {
  687. content: "\f105";
  688. }
  689. .ion-chevron-left:before {
  690. content: "\f106";
  691. }
  692. .ion-chevron-right:before {
  693. content: "\f107";
  694. }
  695. .ion-arrow-down-a:before {
  696. content: "\f108";
  697. }
  698. .ion-arrow-up-a:before {
  699. content: "\f109";
  700. }
  701. .ion-arrow-swap:before {
  702. content: "\f10a";
  703. }
  704. .ion-arrow-dropdown:before {
  705. content: "\f10b";
  706. }
  707. .ion-globe:before {
  708. content: "\f10c";
  709. }
  710. .ion-time:before {
  711. content: "\f10d";
  712. }
  713. .ion-location:before {
  714. content: "\f10e";
  715. }
  716. .ion-warning:before {
  717. content: "\f10f";
  718. }
  719. .ion-error:before {
  720. content: "\f110";
  721. }
  722. .ion-film-outline:before {
  723. content: "\f111";
  724. }
  725. .ion-music-note:before {
  726. content: "\f112";
  727. }
  728. .ion-more-vertical:before {
  729. content: "\f113";
  730. }
  731. .ion-magnet:before {
  732. content: "\f114";
  733. }
  734. .ion-close:before {
  735. content: "\f115";
  736. }
  737. /*
  738. * searx, A privacy-respecting, hackable metasearch engine
  739. *
  740. * To change the colors of the site, simple edit this variables
  741. */
  742. /*
  743. * searx, A privacy-respecting, hackable metasearch engine
  744. */
  745. .code-highlight pre {
  746. overflow: auto;
  747. background-color: inherit;
  748. color: inherit;
  749. border: inherit;
  750. }
  751. /*
  752. this file is generated automatically by searx_extra/update/update_pygments.py
  753. using pygments version 2.9.0
  754. */
  755. .code-highlight .linenos {
  756. -webkit-touch-callout: none;
  757. -webkit-user-select: none;
  758. -khtml-user-select: none;
  759. -moz-user-select: none;
  760. -ms-user-select: none;
  761. user-select: none;
  762. cursor: default;
  763. margin-right: 8px;
  764. text-align: right;
  765. }
  766. .code-highlight .linenos::selection {
  767. background: transparent;
  768. /* WebKit/Blink Browsers */
  769. }
  770. .code-highlight .linenos::-moz-selection {
  771. background: transparent;
  772. /* Gecko Browsers */
  773. }
  774. .code-highlight pre {
  775. line-height: 125%;
  776. }
  777. .code-highlight td.linenos .normal {
  778. color: inherit;
  779. background-color: transparent;
  780. padding-left: 5px;
  781. padding-right: 5px;
  782. }
  783. .code-highlight span.linenos {
  784. color: inherit;
  785. background-color: transparent;
  786. padding-left: 5px;
  787. padding-right: 5px;
  788. }
  789. .code-highlight td.linenos .special {
  790. color: #000000;
  791. background-color: #ffffc0;
  792. padding-left: 5px;
  793. padding-right: 5px;
  794. }
  795. .code-highlight span.linenos.special {
  796. color: #000000;
  797. background-color: #ffffc0;
  798. padding-left: 5px;
  799. padding-right: 5px;
  800. }
  801. .code-highlight .hll {
  802. background-color: #ffffcc;
  803. }
  804. .code-highlight {
  805. background: #f8f8f8;
  806. }
  807. .code-highlight .c {
  808. color: #408080;
  809. font-style: italic;
  810. }
  811. /* Comment */
  812. .code-highlight .err {
  813. border: 1px solid #FF0000;
  814. }
  815. /* Error */
  816. .code-highlight .k {
  817. color: #008000;
  818. font-weight: bold;
  819. }
  820. /* Keyword */
  821. .code-highlight .o {
  822. color: #666666;
  823. }
  824. /* Operator */
  825. .code-highlight .ch {
  826. color: #408080;
  827. font-style: italic;
  828. }
  829. /* Comment.Hashbang */
  830. .code-highlight .cm {
  831. color: #408080;
  832. font-style: italic;
  833. }
  834. /* Comment.Multiline */
  835. .code-highlight .cp {
  836. color: #BC7A00;
  837. }
  838. /* Comment.Preproc */
  839. .code-highlight .cpf {
  840. color: #408080;
  841. font-style: italic;
  842. }
  843. /* Comment.PreprocFile */
  844. .code-highlight .c1 {
  845. color: #408080;
  846. font-style: italic;
  847. }
  848. /* Comment.Single */
  849. .code-highlight .cs {
  850. color: #408080;
  851. font-style: italic;
  852. }
  853. /* Comment.Special */
  854. .code-highlight .gd {
  855. color: #A00000;
  856. }
  857. /* Generic.Deleted */
  858. .code-highlight .ge {
  859. font-style: italic;
  860. }
  861. /* Generic.Emph */
  862. .code-highlight .gr {
  863. color: #FF0000;
  864. }
  865. /* Generic.Error */
  866. .code-highlight .gh {
  867. color: #000080;
  868. font-weight: bold;
  869. }
  870. /* Generic.Heading */
  871. .code-highlight .gi {
  872. color: #00A000;
  873. }
  874. /* Generic.Inserted */
  875. .code-highlight .go {
  876. color: #888888;
  877. }
  878. /* Generic.Output */
  879. .code-highlight .gp {
  880. color: #000080;
  881. font-weight: bold;
  882. }
  883. /* Generic.Prompt */
  884. .code-highlight .gs {
  885. font-weight: bold;
  886. }
  887. /* Generic.Strong */
  888. .code-highlight .gu {
  889. color: #800080;
  890. font-weight: bold;
  891. }
  892. /* Generic.Subheading */
  893. .code-highlight .gt {
  894. color: #0044DD;
  895. }
  896. /* Generic.Traceback */
  897. .code-highlight .kc {
  898. color: #008000;
  899. font-weight: bold;
  900. }
  901. /* Keyword.Constant */
  902. .code-highlight .kd {
  903. color: #008000;
  904. font-weight: bold;
  905. }
  906. /* Keyword.Declaration */
  907. .code-highlight .kn {
  908. color: #008000;
  909. font-weight: bold;
  910. }
  911. /* Keyword.Namespace */
  912. .code-highlight .kp {
  913. color: #008000;
  914. }
  915. /* Keyword.Pseudo */
  916. .code-highlight .kr {
  917. color: #008000;
  918. font-weight: bold;
  919. }
  920. /* Keyword.Reserved */
  921. .code-highlight .kt {
  922. color: #B00040;
  923. }
  924. /* Keyword.Type */
  925. .code-highlight .m {
  926. color: #666666;
  927. }
  928. /* Literal.Number */
  929. .code-highlight .s {
  930. color: #BA2121;
  931. }
  932. /* Literal.String */
  933. .code-highlight .na {
  934. color: #7D9029;
  935. }
  936. /* Name.Attribute */
  937. .code-highlight .nb {
  938. color: #008000;
  939. }
  940. /* Name.Builtin */
  941. .code-highlight .nc {
  942. color: #0000FF;
  943. font-weight: bold;
  944. }
  945. /* Name.Class */
  946. .code-highlight .no {
  947. color: #880000;
  948. }
  949. /* Name.Constant */
  950. .code-highlight .nd {
  951. color: #AA22FF;
  952. }
  953. /* Name.Decorator */
  954. .code-highlight .ni {
  955. color: #999999;
  956. font-weight: bold;
  957. }
  958. /* Name.Entity */
  959. .code-highlight .ne {
  960. color: #D2413A;
  961. font-weight: bold;
  962. }
  963. /* Name.Exception */
  964. .code-highlight .nf {
  965. color: #0000FF;
  966. }
  967. /* Name.Function */
  968. .code-highlight .nl {
  969. color: #A0A000;
  970. }
  971. /* Name.Label */
  972. .code-highlight .nn {
  973. color: #0000FF;
  974. font-weight: bold;
  975. }
  976. /* Name.Namespace */
  977. .code-highlight .nt {
  978. color: #008000;
  979. font-weight: bold;
  980. }
  981. /* Name.Tag */
  982. .code-highlight .nv {
  983. color: #19177C;
  984. }
  985. /* Name.Variable */
  986. .code-highlight .ow {
  987. color: #AA22FF;
  988. font-weight: bold;
  989. }
  990. /* Operator.Word */
  991. .code-highlight .w {
  992. color: #bbbbbb;
  993. }
  994. /* Text.Whitespace */
  995. .code-highlight .mb {
  996. color: #666666;
  997. }
  998. /* Literal.Number.Bin */
  999. .code-highlight .mf {
  1000. color: #666666;
  1001. }
  1002. /* Literal.Number.Float */
  1003. .code-highlight .mh {
  1004. color: #666666;
  1005. }
  1006. /* Literal.Number.Hex */
  1007. .code-highlight .mi {
  1008. color: #666666;
  1009. }
  1010. /* Literal.Number.Integer */
  1011. .code-highlight .mo {
  1012. color: #666666;
  1013. }
  1014. /* Literal.Number.Oct */
  1015. .code-highlight .sa {
  1016. color: #BA2121;
  1017. }
  1018. /* Literal.String.Affix */
  1019. .code-highlight .sb {
  1020. color: #BA2121;
  1021. }
  1022. /* Literal.String.Backtick */
  1023. .code-highlight .sc {
  1024. color: #BA2121;
  1025. }
  1026. /* Literal.String.Char */
  1027. .code-highlight .dl {
  1028. color: #BA2121;
  1029. }
  1030. /* Literal.String.Delimiter */
  1031. .code-highlight .sd {
  1032. color: #BA2121;
  1033. font-style: italic;
  1034. }
  1035. /* Literal.String.Doc */
  1036. .code-highlight .s2 {
  1037. color: #BA2121;
  1038. }
  1039. /* Literal.String.Double */
  1040. .code-highlight .se {
  1041. color: #BB6622;
  1042. font-weight: bold;
  1043. }
  1044. /* Literal.String.Escape */
  1045. .code-highlight .sh {
  1046. color: #BA2121;
  1047. }
  1048. /* Literal.String.Heredoc */
  1049. .code-highlight .si {
  1050. color: #BB6688;
  1051. font-weight: bold;
  1052. }
  1053. /* Literal.String.Interpol */
  1054. .code-highlight .sx {
  1055. color: #008000;
  1056. }
  1057. /* Literal.String.Other */
  1058. .code-highlight .sr {
  1059. color: #BB6688;
  1060. }
  1061. /* Literal.String.Regex */
  1062. .code-highlight .s1 {
  1063. color: #BA2121;
  1064. }
  1065. /* Literal.String.Single */
  1066. .code-highlight .ss {
  1067. color: #19177C;
  1068. }
  1069. /* Literal.String.Symbol */
  1070. .code-highlight .bp {
  1071. color: #008000;
  1072. }
  1073. /* Name.Builtin.Pseudo */
  1074. .code-highlight .fm {
  1075. color: #0000FF;
  1076. }
  1077. /* Name.Function.Magic */
  1078. .code-highlight .vc {
  1079. color: #19177C;
  1080. }
  1081. /* Name.Variable.Class */
  1082. .code-highlight .vg {
  1083. color: #19177C;
  1084. }
  1085. /* Name.Variable.Global */
  1086. .code-highlight .vi {
  1087. color: #19177C;
  1088. }
  1089. /* Name.Variable.Instance */
  1090. .code-highlight .vm {
  1091. color: #19177C;
  1092. }
  1093. /* Name.Variable.Magic */
  1094. .code-highlight .il {
  1095. color: #666666;
  1096. }
  1097. /* Literal.Number.Integer.Long */
  1098. html.no-js .hide_if_nojs {
  1099. display: none;
  1100. }
  1101. html.js .show_if_nojs {
  1102. display: none;
  1103. }
  1104. .center {
  1105. text-align: center;
  1106. }
  1107. .right {
  1108. float: right;
  1109. }
  1110. .left {
  1111. float: left;
  1112. }
  1113. .invisible {
  1114. display: none !important;
  1115. }
  1116. .list-unstyled {
  1117. list-style-type: none;
  1118. }
  1119. .list-unstyled li {
  1120. margin-top: 4px;
  1121. margin-bottom: 4px;
  1122. }
  1123. .danger {
  1124. background-color: #fae1e1;
  1125. }
  1126. .warning {
  1127. background: #faf5e1;
  1128. }
  1129. .success {
  1130. background: #e3fae1;
  1131. }
  1132. .badge {
  1133. display: inline-block;
  1134. color: #fff;
  1135. background-color: #777;
  1136. text-align: center;
  1137. white-space: nowrap;
  1138. vertical-align: baseline;
  1139. min-width: 10px;
  1140. padding: 1px 5px;
  1141. border-radius: 5px;
  1142. }
  1143. kbd {
  1144. padding: 2px 4px;
  1145. margin: 1px;
  1146. font-size: 90%;
  1147. color: white;
  1148. background: black;
  1149. }
  1150. table {
  1151. width: 100%;
  1152. }
  1153. table.striped tr {
  1154. border-bottom: 1px solid #ececec;
  1155. }
  1156. th {
  1157. padding: 0.4em;
  1158. }
  1159. td {
  1160. padding: 0 4px;
  1161. }
  1162. tr:hover {
  1163. background: #ececec;
  1164. }
  1165. div.selectable_url {
  1166. display: block;
  1167. border: 1px solid #888;
  1168. padding: 4px;
  1169. color: #444;
  1170. width: 100%;
  1171. margin: 0.1em;
  1172. overflow: hidden;
  1173. height: 1.2em;
  1174. line-height: 1.2em;
  1175. }
  1176. div.selectable_url pre {
  1177. display: block;
  1178. font-size: 0.8em;
  1179. word-break: break-all;
  1180. margin: 0.1em;
  1181. -webkit-user-select: all;
  1182. -moz-user-select: all;
  1183. -ms-user-select: element;
  1184. user-select: all;
  1185. }
  1186. .dialog-error {
  1187. position: relative;
  1188. width: 70%;
  1189. padding: 1em 1em 1em 2.7em;
  1190. margin: 0 8% 1em 8%;
  1191. border: 1px solid black;
  1192. border-radius: 4px;
  1193. text-align: left;
  1194. color: #db3434;
  1195. background: #fae1e1;
  1196. border-color: #db3434;
  1197. }
  1198. .dialog-error::before {
  1199. position: absolute;
  1200. top: 0.5em;
  1201. left: 0.5em;
  1202. font-family: "ion";
  1203. font-size: 1.5em;
  1204. }
  1205. .dialog-error .close {
  1206. float: right;
  1207. position: relative;
  1208. top: -3px;
  1209. color: inherit;
  1210. font-size: 1.5em;
  1211. }
  1212. .dialog-error ul,
  1213. .dialog-error ol,
  1214. .dialog-error p {
  1215. margin: 1px 0 0 0;
  1216. }
  1217. .dialog-error table {
  1218. width: auto;
  1219. }
  1220. .dialog-error tr {
  1221. vertical-align: text-top;
  1222. }
  1223. .dialog-error tr:hover {
  1224. background: transparent;
  1225. }
  1226. .dialog-error td {
  1227. padding: 0 1em 0 0;
  1228. }
  1229. .dialog-error h4 {
  1230. margin-top: 0.3em;
  1231. margin-bottom: 0.3em;
  1232. }
  1233. .dialog-error:before {
  1234. content: "\f110";
  1235. }
  1236. .dialog-warning {
  1237. position: relative;
  1238. width: 70%;
  1239. padding: 1em 1em 1em 2.7em;
  1240. margin: 0 8% 1em 8%;
  1241. border: 1px solid black;
  1242. border-radius: 4px;
  1243. text-align: left;
  1244. color: #dbba34;
  1245. background: #faf5e1;
  1246. border-color: #dbba34;
  1247. }
  1248. .dialog-warning::before {
  1249. position: absolute;
  1250. top: 0.5em;
  1251. left: 0.5em;
  1252. font-family: "ion";
  1253. font-size: 1.5em;
  1254. }
  1255. .dialog-warning .close {
  1256. float: right;
  1257. position: relative;
  1258. top: -3px;
  1259. color: inherit;
  1260. font-size: 1.5em;
  1261. }
  1262. .dialog-warning ul,
  1263. .dialog-warning ol,
  1264. .dialog-warning p {
  1265. margin: 1px 0 0 0;
  1266. }
  1267. .dialog-warning table {
  1268. width: auto;
  1269. }
  1270. .dialog-warning tr {
  1271. vertical-align: text-top;
  1272. }
  1273. .dialog-warning tr:hover {
  1274. background: transparent;
  1275. }
  1276. .dialog-warning td {
  1277. padding: 0 1em 0 0;
  1278. }
  1279. .dialog-warning h4 {
  1280. margin-top: 0.3em;
  1281. margin-bottom: 0.3em;
  1282. }
  1283. .dialog-warning:before {
  1284. content: "\f10f";
  1285. }
  1286. .dialog-modal {
  1287. position: relative;
  1288. width: 70%;
  1289. padding: 1em 1em 1em 2.7em;
  1290. margin: 0 8% 1em 8%;
  1291. border: 1px solid black;
  1292. border-radius: 4px;
  1293. text-align: left;
  1294. background: white;
  1295. position: fixed;
  1296. top: 50%;
  1297. left: 50%;
  1298. /* bring your own prefixes */
  1299. transform: translate(-50%, -50%);
  1300. z-index: 100000;
  1301. margin: 0 50% 0 0;
  1302. box-shadow: 0 0 1em;
  1303. }
  1304. .dialog-modal::before {
  1305. position: absolute;
  1306. top: 0.5em;
  1307. left: 0.5em;
  1308. font-family: "ion";
  1309. font-size: 1.5em;
  1310. }
  1311. .dialog-modal .close {
  1312. float: right;
  1313. position: relative;
  1314. top: -3px;
  1315. color: inherit;
  1316. font-size: 1.5em;
  1317. }
  1318. .dialog-modal ul,
  1319. .dialog-modal ol,
  1320. .dialog-modal p {
  1321. margin: 1px 0 0 0;
  1322. }
  1323. .dialog-modal table {
  1324. width: auto;
  1325. }
  1326. .dialog-modal tr {
  1327. vertical-align: text-top;
  1328. }
  1329. .dialog-modal tr:hover {
  1330. background: transparent;
  1331. }
  1332. .dialog-modal td {
  1333. padding: 0 1em 0 0;
  1334. }
  1335. .dialog-modal h4 {
  1336. margin-top: 0.3em;
  1337. margin-bottom: 0.3em;
  1338. }
  1339. .btn-collapse {
  1340. cursor: pointer;
  1341. }
  1342. .scrollx {
  1343. overflow-x: auto;
  1344. overflow-y: hidden;
  1345. display: block;
  1346. padding: 0;
  1347. margin: 0;
  1348. border: none;
  1349. }
  1350. /* -- tabs -- */
  1351. .tabs .tabs > label {
  1352. font-size: 90%;
  1353. }
  1354. .tabs {
  1355. display: -webkit-box;
  1356. display: -moz-box;
  1357. display: -webkit-flex;
  1358. display: -ms-flexbox;
  1359. display: flex;
  1360. flex-wrap: wrap;
  1361. width: 100%;
  1362. min-width: 100%;
  1363. }
  1364. .tabs > * {
  1365. order: 2;
  1366. }
  1367. .tabs > input[type=radio] {
  1368. display: none;
  1369. }
  1370. .tabs > label {
  1371. order: 1;
  1372. padding: 0.7em;
  1373. margin: 0 0.7em;
  1374. letter-spacing: 0.5px;
  1375. text-transform: uppercase;
  1376. border: solid white;
  1377. border-width: 0 0 2px 0;
  1378. -webkit-touch-callout: none;
  1379. -webkit-user-select: none;
  1380. -khtml-user-select: none;
  1381. -moz-user-select: none;
  1382. -ms-user-select: none;
  1383. user-select: none;
  1384. cursor: pointer;
  1385. }
  1386. .tabs > label:hover {
  1387. border-bottom: 2px solid #084999;
  1388. }
  1389. .tabs > section {
  1390. min-width: 100%;
  1391. padding: 0.7rem 0;
  1392. box-sizing: border-box;
  1393. border-top: 1px solid black;
  1394. display: none;
  1395. }
  1396. .tabs > label:last-of-type {
  1397. border-bottom: 2px solid #084999;
  1398. background: #3498DB;
  1399. color: #FFF;
  1400. font-weight: bold;
  1401. letter-spacing: -0.1px;
  1402. }
  1403. .tabs > section:last-of-type {
  1404. display: block;
  1405. }
  1406. html body .tabs > input:checked ~ section {
  1407. display: none;
  1408. }
  1409. html body .tabs > input:checked ~ label {
  1410. position: inherited;
  1411. background: inherit;
  1412. border-bottom: 2px solid transparent;
  1413. font-weight: normal;
  1414. color: inherit;
  1415. }
  1416. html body .tabs > input:checked ~ label:hover {
  1417. border-bottom: 2px solid #084999;
  1418. }
  1419. html body .tabs > input:checked + label {
  1420. border-bottom: 2px solid #084999;
  1421. background: #3498DB;
  1422. color: #FFF;
  1423. font-weight: bold;
  1424. letter-spacing: -0.1px;
  1425. }
  1426. html body .tabs > input:checked + label + section {
  1427. display: block;
  1428. }
  1429. /* -- select -- */
  1430. select {
  1431. height: 28px;
  1432. margin: 0 1em 0 0;
  1433. padding: 2px 8px 2px 0 !important;
  1434. color: #222;
  1435. font-size: 12px;
  1436. z-index: 2;
  1437. }
  1438. select:hover,
  1439. select:focus {
  1440. cursor: pointer;
  1441. }
  1442. @supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {
  1443. select {
  1444. appearance: none;
  1445. -webkit-appearance: none;
  1446. -moz-appearance: none;
  1447. border: none;
  1448. border-bottom: 1px solid #d7d7d7;
  1449. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI1MTJweCIgaGVpZ2h0PSI1MTJweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwb2x5Z29uIHBvaW50cz0iMTI4LDE5MiAyNTYsMzIwIDM4NCwxOTIiLz48L2c+PC9zdmc+Cg==) no-repeat;
  1450. background-position-x: 105%;
  1451. background-size: 2em;
  1452. background-origin: content-box;
  1453. outline: medium none;
  1454. }
  1455. select:hover,
  1456. select:focus {
  1457. border-bottom: 1px solid #3498DB;
  1458. }
  1459. }
  1460. /* -- checkbox-onoff -- */
  1461. @supports (border-radius: 50px) {
  1462. .checkbox-onoff {
  1463. display: inline-block;
  1464. width: 40px;
  1465. height: 10px;
  1466. background: #dcdcdc;
  1467. margin: 8px auto;
  1468. position: relative;
  1469. border-radius: 50px;
  1470. }
  1471. .checkbox-onoff label {
  1472. display: block;
  1473. width: 20px;
  1474. height: 20px;
  1475. position: absolute;
  1476. top: -5px;
  1477. cursor: pointer;
  1478. border-radius: 50px;
  1479. box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
  1480. transition: all 0.4s ease;
  1481. left: 27px;
  1482. background-color: #3498db;
  1483. }
  1484. .checkbox-onoff input[type=checkbox] {
  1485. visibility: hidden;
  1486. }
  1487. .checkbox-onoff input[type=checkbox]:checked + label {
  1488. left: -5px;
  1489. background: #dcdcdc;
  1490. }
  1491. }
  1492. /* -- checkbox -- */
  1493. @supports (transform: rotate(-45deg)) {
  1494. .checkbox {
  1495. width: 20px;
  1496. position: relative;
  1497. margin: 20px auto;
  1498. }
  1499. .checkbox label {
  1500. width: 20px;
  1501. height: 20px;
  1502. cursor: pointer;
  1503. position: absolute;
  1504. top: 0;
  1505. left: 0;
  1506. background: white;
  1507. border-radius: 4px;
  1508. box-shadow: inset 0 1px 1px white, 0 1px 4px rgba(0, 0, 0, 0.5);
  1509. }
  1510. .checkbox label::after {
  1511. content: '';
  1512. width: 9px;
  1513. height: 5px;
  1514. position: absolute;
  1515. top: 4px;
  1516. left: 4px;
  1517. border: 3px solid #333;
  1518. border-top: none;
  1519. border-right: none;
  1520. background: transparent;
  1521. opacity: 0;
  1522. transform: rotate(-45deg);
  1523. }
  1524. .checkbox input[type=checkbox] {
  1525. visibility: hidden;
  1526. }
  1527. .checkbox input[type=checkbox]:checked + label::after {
  1528. border-color: #3498db;
  1529. opacity: 1;
  1530. }
  1531. .checkbox input[disabled] + label {
  1532. background-color: transparent !important;
  1533. box-shadow: none !important;
  1534. cursor: inherit;
  1535. }
  1536. .checkbox input:not(:checked):not([readonly]):not([disabled]) + label:hover::after {
  1537. opacity: 0.5;
  1538. }
  1539. }
  1540. @media screen and (max-width: 50em) {
  1541. .tabs > label {
  1542. width: 100%;
  1543. }
  1544. }
  1545. /* -- loader -- */
  1546. .loader,
  1547. .loader::after {
  1548. border-radius: 50%;
  1549. width: 2em;
  1550. height: 2em;
  1551. }
  1552. .loader {
  1553. margin: 1em auto;
  1554. font-size: 10px;
  1555. position: relative;
  1556. text-indent: -9999em;
  1557. border-top: 0.5em solid rgba(0, 0, 0, 0.2);
  1558. border-right: 0.5em solid rgba(0, 0, 0, 0.2);
  1559. border-bottom: 0.5em solid rgba(0, 0, 0, 0.2);
  1560. border-left: 0.5em solid rgba(255, 255, 255, 0);
  1561. -webkit-transform: translateZ(0);
  1562. -ms-transform: translateZ(0);
  1563. transform: translateZ(0);
  1564. -webkit-animation: load8 1.2s infinite linear;
  1565. animation: load8 1.2s infinite linear;
  1566. }
  1567. @-webkit-keyframes load8 {
  1568. 0% {
  1569. -webkit-transform: rotate(0deg);
  1570. transform: rotate(0deg);
  1571. }
  1572. 100% {
  1573. -webkit-transform: rotate(360deg);
  1574. transform: rotate(360deg);
  1575. }
  1576. }
  1577. @keyframes load8 {
  1578. 0% {
  1579. -webkit-transform: rotate(0deg);
  1580. transform: rotate(0deg);
  1581. }
  1582. 100% {
  1583. -webkit-transform: rotate(360deg);
  1584. transform: rotate(360deg);
  1585. }
  1586. }
  1587. /* -- engine-tooltip -- */
  1588. .engine-tooltip {
  1589. display: none;
  1590. position: absolute;
  1591. padding: 0.5rem 1rem;
  1592. margin: 0 0 0 2rem;
  1593. border: 1px solid #ddd;
  1594. box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  1595. background: white;
  1596. font-size: 14px;
  1597. font-weight: normal;
  1598. z-index: 1000000;
  1599. text-align: left;
  1600. }
  1601. th:hover .engine-tooltip,
  1602. td:hover .engine-tooltip,
  1603. .engine-tooltip:hover {
  1604. display: inline-block;
  1605. }
  1606. /* -- stacked bar chart -- */
  1607. .stacked-bar-chart {
  1608. margin: 0;
  1609. padding: 0 0.125rem 0 4rem;
  1610. width: 100%;
  1611. width: -moz-available;
  1612. width: -webkit-fill-available;
  1613. width: fill;
  1614. flex-direction: row;
  1615. flex-wrap: nowrap;
  1616. align-items: center;
  1617. display: inline-flex;
  1618. }
  1619. .stacked-bar-chart-value {
  1620. width: 3rem;
  1621. display: inline-block;
  1622. position: absolute;
  1623. padding: 0 0.5rem;
  1624. text-align: right;
  1625. }
  1626. .stacked-bar-chart-base {
  1627. display: flex;
  1628. flex-shrink: 0;
  1629. flex-grow: 0;
  1630. flex-basis: unset;
  1631. }
  1632. .stacked-bar-chart-median {
  1633. display: flex;
  1634. flex-shrink: 0;
  1635. flex-grow: 0;
  1636. flex-basis: unset;
  1637. background: #000000;
  1638. border: 1px solid rgba(0, 0, 0, 0.9);
  1639. padding: 0.3rem 0;
  1640. }
  1641. .stacked-bar-chart-rate80 {
  1642. display: flex;
  1643. flex-shrink: 0;
  1644. flex-grow: 0;
  1645. flex-basis: unset;
  1646. background: transparent;
  1647. border: 1px solid rgba(0, 0, 0, 0.3);
  1648. padding: 0.3rem 0;
  1649. }
  1650. .stacked-bar-chart-rate95 {
  1651. display: flex;
  1652. flex-shrink: 0;
  1653. flex-grow: 0;
  1654. flex-basis: unset;
  1655. background: transparent;
  1656. border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  1657. padding: 0;
  1658. }
  1659. .stacked-bar-chart-rate100 {
  1660. display: flex;
  1661. flex-shrink: 0;
  1662. flex-grow: 0;
  1663. flex-basis: unset;
  1664. background: transparent;
  1665. border-left: 1px solid rgba(0, 0, 0, 0.9);
  1666. padding: 0.4rem 0;
  1667. width: 1px;
  1668. }
  1669. /*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */
  1670. .autocomplete {
  1671. position: absolute;
  1672. max-height: 0;
  1673. overflow-y: hidden;
  1674. text-align: left;
  1675. }
  1676. .autocomplete:active,
  1677. .autocomplete:focus,
  1678. .autocomplete:hover {
  1679. background-color: white;
  1680. }
  1681. .autocomplete:empty {
  1682. display: none;
  1683. }
  1684. .autocomplete > ul {
  1685. list-style-type: none;
  1686. margin: 0;
  1687. padding: 0;
  1688. }
  1689. .autocomplete > ul > li {
  1690. cursor: pointer;
  1691. padding: 5px 0 5px 10px;
  1692. }
  1693. .autocomplete > ul > li.active,
  1694. .autocomplete > ul > li:active,
  1695. .autocomplete > ul > li:focus {
  1696. background-color: #3498DB;
  1697. }
  1698. .autocomplete > ul > li.active a:active,
  1699. .autocomplete > ul > li:active a:active,
  1700. .autocomplete > ul > li:focus a:active,
  1701. .autocomplete > ul > li.active a:focus,
  1702. .autocomplete > ul > li:active a:focus,
  1703. .autocomplete > ul > li:focus a:focus,
  1704. .autocomplete > ul > li.active a:hover,
  1705. .autocomplete > ul > li:active a:hover,
  1706. .autocomplete > ul > li:focus a:hover {
  1707. text-decoration: none;
  1708. }
  1709. .autocomplete > ul > li.locked {
  1710. cursor: inherit;
  1711. }
  1712. .autocomplete.open {
  1713. display: block;
  1714. background-color: white;
  1715. border: 1px solid #3498DB;
  1716. max-height: 500px;
  1717. overflow-y: auto;
  1718. z-index: 100;
  1719. }
  1720. .autocomplete.open:empty {
  1721. display: none;
  1722. }
  1723. @media screen and (max-width: 50em) {
  1724. .autocomplete {
  1725. bottom: 0;
  1726. }
  1727. .autocomplete > ul > li {
  1728. padding: 7px 0 7px 10px;
  1729. border-bottom: 1px solid #E8E7E6;
  1730. text-align: left;
  1731. }
  1732. }
  1733. .index {
  1734. text-align: center;
  1735. }
  1736. .index .title {
  1737. background: url('../img/searx.png') no-repeat;
  1738. width: 100%;
  1739. min-height: 80px;
  1740. background-position: center;
  1741. }
  1742. .index h1 {
  1743. font-size: 5em;
  1744. visibility: hidden;
  1745. }
  1746. .index #search {
  1747. margin: 0 auto;
  1748. background: inherit;
  1749. border: inherit;
  1750. }
  1751. .index .search_filters {
  1752. display: block;
  1753. margin: 1em 0;
  1754. }
  1755. .index .category label {
  1756. padding: 6px 10px;
  1757. border-bottom: initial !important;
  1758. }
  1759. @media screen and (max-width: 75em) {
  1760. div.title h1 {
  1761. font-size: 1em;
  1762. }
  1763. }
  1764. #main_preferences form {
  1765. width: 100%;
  1766. }
  1767. #main_preferences fieldset {
  1768. margin: 8px;
  1769. border: none;
  1770. }
  1771. #main_preferences legend {
  1772. margin: 0;
  1773. padding: 5px 0 0 0;
  1774. display: block;
  1775. float: left;
  1776. width: 300px;
  1777. }
  1778. #main_preferences .value {
  1779. margin: 0;
  1780. padding: 0;
  1781. float: left;
  1782. width: 15em;
  1783. }
  1784. #main_preferences .description {
  1785. margin: 0;
  1786. padding: 5px 0 0 0;
  1787. float: left;
  1788. width: 50%;
  1789. color: #909090;
  1790. font-size: 90%;
  1791. }
  1792. #main_preferences select {
  1793. width: 200px;
  1794. font-size: inherit !important;
  1795. }
  1796. #main_preferences table {
  1797. border-collapse: collapse;
  1798. }
  1799. #main_preferences table td {
  1800. text-align: center;
  1801. }
  1802. #main_preferences table.cookies {
  1803. width: auto;
  1804. }
  1805. #main_preferences table.cookies th,
  1806. #main_preferences table.cookies td {
  1807. text-align: left;
  1808. padding: 0.25em;
  1809. }
  1810. #main_preferences table.cookies th:first-child,
  1811. #main_preferences table.cookies td:first-child {
  1812. padding-right: 4em;
  1813. }
  1814. #main_preferences table.cookies > tbody > tr:nth-child(even) > th,
  1815. #main_preferences table.cookies > tbody > tr:nth-child(even) > td {
  1816. background-color: #ececec;
  1817. }
  1818. #main_preferences .name,
  1819. #main_preferences .shortcut {
  1820. text-align: left;
  1821. }
  1822. #main_preferences .preferences_back {
  1823. background: none repeat scroll 0 0 #3498DB;
  1824. color: white;
  1825. border: 0 none;
  1826. -webkit-border-radius: 4px;
  1827. -moz-border-radius: 4px;
  1828. border-radius: 4px;
  1829. cursor: pointer;
  1830. display: inline-block;
  1831. margin: 2px 4px;
  1832. padding: 0.5em;
  1833. }
  1834. #main_preferences .preferences_back a {
  1835. display: block;
  1836. color: #FFF;
  1837. }
  1838. #main_preferences .preferences_back a::first-letter {
  1839. text-transform: uppercase;
  1840. }
  1841. #main_preferences div.selectable_url pre {
  1842. width: 100%;
  1843. }
  1844. @media screen and (max-width: 75em) {
  1845. .preferences_back {
  1846. clear: both;
  1847. }
  1848. }
  1849. /*
  1850. * searx, A privacy-respecting, hackable metasearch engine
  1851. */
  1852. #search {
  1853. padding: 0 2em;
  1854. margin: 0;
  1855. background: #f7f7f7;
  1856. border-bottom: 1px solid #d7d7d7;
  1857. }
  1858. #search_wrapper {
  1859. padding: 10px 0;
  1860. }
  1861. .search_box {
  1862. margin: 0 12px 0 0;
  1863. display: inline-flex;
  1864. flex-direction: row;
  1865. white-space: nowrap;
  1866. /*
  1867. &:has(q:focus) {
  1868. box-shadow: 0px 0px 5px #CCC;
  1869. }
  1870. */
  1871. }
  1872. #clear_search {
  1873. display: block;
  1874. border-collapse: separate;
  1875. box-sizing: border-box;
  1876. width: 1.8em;
  1877. margin: 0;
  1878. padding: 2px;
  1879. height: 2.2em;
  1880. background: none repeat scroll 0 0 #FFF;
  1881. border-top: 1px solid #3498DB;
  1882. border-bottom: 1px solid #3498DB;
  1883. border-right: none;
  1884. border-left: none;
  1885. border-radius: 0;
  1886. outline: none;
  1887. color: #222;
  1888. font-size: 16px;
  1889. z-index: 10000;
  1890. }
  1891. #clear_search:hover {
  1892. color: #3498DB;
  1893. }
  1894. #clear_search.empty * {
  1895. display: none;
  1896. }
  1897. #q,
  1898. #send_search {
  1899. display: block !important;
  1900. border-collapse: separate;
  1901. box-sizing: border-box;
  1902. margin: 0;
  1903. padding: 2px;
  1904. height: 2.2em;
  1905. background: none repeat scroll 0 0 #FFF;
  1906. border: 1px solid #3498DB;
  1907. border-radius: 0;
  1908. outline: none;
  1909. color: #222;
  1910. font-size: 16px;
  1911. z-index: 2;
  1912. }
  1913. #q {
  1914. outline: medium none;
  1915. padding-left: 8px;
  1916. padding-right: 0 !important;
  1917. border-right: none;
  1918. width: 40em;
  1919. }
  1920. #q::-ms-clear,
  1921. #q::-webkit-search-cancel-button {
  1922. display: none;
  1923. }
  1924. #send_search {
  1925. border-left: none;
  1926. width: 2.2em;
  1927. }
  1928. #send_search:hover {
  1929. cursor: pointer;
  1930. background-color: #3498DB;
  1931. color: #ECF0F1;
  1932. }
  1933. .no-js #send_search {
  1934. width: auto !important;
  1935. }
  1936. .search_filters {
  1937. display: inline-block;
  1938. vertical-align: middle;
  1939. }
  1940. @media screen and (max-width: 75em) {
  1941. #categories {
  1942. font-size: 90%;
  1943. clear: both;
  1944. }
  1945. #categories .checkbox_container {
  1946. margin: auto;
  1947. margin-top: 2px;
  1948. }
  1949. html.touch #main_index #categories_container,
  1950. html.touch #main_results #categories_container {
  1951. width: 1000px;
  1952. width: -moz-max-content;
  1953. width: -webkit-max-content;
  1954. width: max-content;
  1955. }
  1956. html.touch #main_index #categories_container .category,
  1957. html.touch #main_results #categories_container .category {
  1958. display: inline-block;
  1959. width: auto;
  1960. }
  1961. html.touch #main_index #categories,
  1962. html.touch #main_results #categories {
  1963. width: 100%;
  1964. margin: 0;
  1965. text-align: left;
  1966. overflow-x: scroll;
  1967. overflow-y: hidden;
  1968. -webkit-overflow-scrolling: touch;
  1969. }
  1970. }
  1971. @media screen and (max-width: 50em) {
  1972. #search {
  1973. width: 100%;
  1974. margin: 0;
  1975. padding: 0.1em 0 0 0;
  1976. }
  1977. #search_wrapper {
  1978. width: 100%;
  1979. margin: 0 0 0.7em 0;
  1980. padding: 0;
  1981. }
  1982. .search_box {
  1983. width: 99%;
  1984. margin: 0.1em;
  1985. padding: 0 0.1em 0 0;
  1986. display: flex;
  1987. flex-direction: row;
  1988. }
  1989. #q {
  1990. width: auto !important;
  1991. flex: 1;
  1992. }
  1993. .search_filters {
  1994. display: block;
  1995. margin: 0.5em;
  1996. }
  1997. .language,
  1998. .time_range {
  1999. width: 45%;
  2000. }
  2001. .category {
  2002. display: block;
  2003. width: 90%;
  2004. }
  2005. .category label {
  2006. border-bottom: 0;
  2007. }
  2008. }
  2009. #categories {
  2010. margin: 0 10px 0 0;
  2011. -webkit-touch-callout: none;
  2012. -webkit-user-select: none;
  2013. -khtml-user-select: none;
  2014. -moz-user-select: none;
  2015. -ms-user-select: none;
  2016. user-select: none;
  2017. }
  2018. #categories::-webkit-scrollbar {
  2019. width: 0;
  2020. height: 0;
  2021. }
  2022. .category {
  2023. display: inline-block;
  2024. position: relative;
  2025. margin: 0 3px;
  2026. padding: 0;
  2027. /* label:hover {
  2028. border-bottom: 2px solid @color-categories-item-border-unselected-hover;
  2029. } */
  2030. }
  2031. .category input {
  2032. display: none;
  2033. }
  2034. .category label {
  2035. cursor: pointer;
  2036. padding: 4px 10px;
  2037. margin: 0;
  2038. display: block;
  2039. text-transform: capitalize;
  2040. font-size: 0.9em;
  2041. border-bottom: 2px solid transparent;
  2042. -webkit-touch-callout: none;
  2043. -webkit-user-select: none;
  2044. -khtml-user-select: none;
  2045. -moz-user-select: none;
  2046. -ms-user-select: none;
  2047. user-select: none;
  2048. }
  2049. .category input[type="checkbox"]:focus + label {
  2050. box-shadow: 0 0 8px #3498db;
  2051. }
  2052. .category input[type="checkbox"]:checked + label {
  2053. background: #3498DB;
  2054. color: #FFF;
  2055. border-bottom: 2px solid #084999;
  2056. }
  2057. #categories_container {
  2058. position: relative;
  2059. }
  2060. #categories_container .help {
  2061. position: absolute;
  2062. width: 100%;
  2063. bottom: -20px;
  2064. overflow: hidden;
  2065. opacity: 0;
  2066. transition: opacity 1s ease;
  2067. font-size: 0.8em;
  2068. text-align: center;
  2069. background: white;
  2070. }
  2071. #categories_container:hover .help {
  2072. opacity: 0.8;
  2073. transition: opacity 1s ease;
  2074. }
  2075. .ion-icon-big {
  2076. display: inline-block;
  2077. line-height: 1;
  2078. font-weight: normal;
  2079. font-style: normal;
  2080. speak: none;
  2081. text-decoration: inherit;
  2082. text-transform: none;
  2083. text-rendering: auto;
  2084. -webkit-font-smoothing: antialiased;
  2085. -moz-osx-font-smoothing: grayscale;
  2086. font-size: 149%;
  2087. }
  2088. .ion-icon-big:before {
  2089. font-family: "ion";
  2090. }
  2091. html {
  2092. font-family: arial, sans-serif;
  2093. font-size: 0.9em;
  2094. -webkit-text-size-adjust: 100%;
  2095. -ms-text-size-adjust: 100%;
  2096. -moz-text-size-adjust: 100%;
  2097. text-size-adjust: 100%;
  2098. color: #444;
  2099. padding: 0;
  2100. margin: 0;
  2101. }
  2102. body,
  2103. main {
  2104. padding: 0;
  2105. margin: 0;
  2106. }
  2107. main {
  2108. width: 100%;
  2109. }
  2110. #main_preferences,
  2111. #main_about,
  2112. #main_stats {
  2113. margin: 3em;
  2114. width: auto;
  2115. }
  2116. footer {
  2117. bottom: 0;
  2118. height: 3em;
  2119. margin: 1em 0;
  2120. padding: 1em 0;
  2121. clear: both;
  2122. width: 100%;
  2123. text-align: center;
  2124. }
  2125. footer p {
  2126. font-size: 0.9em;
  2127. }
  2128. #main_preferences h1,
  2129. #main_stats h1 {
  2130. background: url('../img/searx.png') no-repeat;
  2131. background-size: auto 75%;
  2132. min-height: 40px;
  2133. margin: 0 auto;
  2134. }
  2135. #main_preferences h1 span,
  2136. #main_stats h1 span {
  2137. visibility: hidden;
  2138. }
  2139. input[type="submit"],
  2140. #results button[type="submit"] {
  2141. padding: 0.5rem;
  2142. margin: 2px 4px;
  2143. display: inline-block;
  2144. background: #3498DB;
  2145. color: #FFF;
  2146. -webkit-border-radius: 4px;
  2147. -moz-border-radius: 4px;
  2148. border-radius: 4px;
  2149. border: 0;
  2150. cursor: pointer;
  2151. }
  2152. a {
  2153. text-decoration: none;
  2154. color: #29314d;
  2155. }
  2156. a:visited {
  2157. color: #684898;
  2158. }
  2159. a:visited .highlight {
  2160. color: #684898;
  2161. }
  2162. article[data-vim-selected] {
  2163. background: #f7f7f7;
  2164. }
  2165. article[data-vim-selected]::before {
  2166. position: absolute;
  2167. left: 1em;
  2168. padding: 2px;
  2169. content: ">";
  2170. font-weight: bold;
  2171. color: #3498DB;
  2172. }
  2173. article.result-images[data-vim-selected] {
  2174. background: #3498DB;
  2175. }
  2176. article.result-images[data-vim-selected]::before {
  2177. display: none;
  2178. content: "";
  2179. }
  2180. .result {
  2181. margin: 19px 0 18px 0;
  2182. padding: 0;
  2183. }
  2184. .result h3 {
  2185. font-size: 1.1em;
  2186. word-wrap: break-word;
  2187. margin: 5px 0 1px 0;
  2188. padding: 0;
  2189. margin-bottom: 0;
  2190. }
  2191. .result h3 a {
  2192. color: #084999;
  2193. font-weight: normal;
  2194. font-size: 1.1em;
  2195. }
  2196. .result h3 a:visited {
  2197. color: #684898;
  2198. }
  2199. .result h3 a:focus,
  2200. .result h3 a:hover {
  2201. text-decoration: underline;
  2202. border: none;
  2203. -webkit-box-shadow: none;
  2204. box-shadow: none;
  2205. outline: none;
  2206. }
  2207. .result .cache_link,
  2208. .result .proxyfied_link {
  2209. font-size: 0.9em !important;
  2210. }
  2211. .result .content,
  2212. .result .stat,
  2213. .result .altlink {
  2214. font-size: 0.9em;
  2215. margin: 0;
  2216. padding: 0;
  2217. max-width: 54em;
  2218. word-wrap: break-word;
  2219. line-height: 1.24;
  2220. }
  2221. .result .content .highlight,
  2222. .result .stat .highlight,
  2223. .result .altlink .highlight {
  2224. color: #000000;
  2225. background: inherit;
  2226. font-weight: bold;
  2227. }
  2228. .result .codelines .highlight {
  2229. color: inherit;
  2230. background: inherit;
  2231. font-weight: normal;
  2232. }
  2233. .result .url {
  2234. font-size: 0.9em;
  2235. margin: 0 0 3px 0;
  2236. padding: 0;
  2237. max-width: 54em;
  2238. word-wrap: break-word;
  2239. color: #25a55b;
  2240. }
  2241. .result .published_date {
  2242. font-size: 0.8em;
  2243. color: #888;
  2244. }
  2245. .result img.thumbnail {
  2246. float: left;
  2247. padding: 0 5px 10px 0;
  2248. width: 20em;
  2249. min-width: 20em;
  2250. min-height: 8em;
  2251. }
  2252. .result img.image {
  2253. float: left;
  2254. padding: 0 5px 10px 0;
  2255. width: 100px;
  2256. max-height: 100px;
  2257. object-fit: scale-down;
  2258. object-position: right top;
  2259. }
  2260. .result .break {
  2261. clear: both;
  2262. }
  2263. .category-social .image {
  2264. width: auto !important;
  2265. min-width: 48px;
  2266. min-height: 48px;
  2267. padding: 0 5px 25px 0 !important;
  2268. }
  2269. .result-videos .content {
  2270. overflow: hidden;
  2271. }
  2272. .engines {
  2273. float: right;
  2274. color: #888;
  2275. }
  2276. .engines span {
  2277. font-size: smaller;
  2278. margin: 0 0.5em 0 0;
  2279. }
  2280. .small_font {
  2281. font-size: 0.8em;
  2282. }
  2283. .highlight {
  2284. color: #094089;
  2285. background: inherit;
  2286. font-weight: bold;
  2287. }
  2288. .result-images {
  2289. display: inline-block;
  2290. margin: 0;
  2291. padding: 0;
  2292. position: relative;
  2293. max-height: 200px;
  2294. }
  2295. .result-images img {
  2296. float: inherit;
  2297. margin: 0;
  2298. padding: 0;
  2299. border: none;
  2300. max-height: 200px;
  2301. background: #084999;
  2302. }
  2303. .result-images span a {
  2304. display: none;
  2305. color: #FFF;
  2306. }
  2307. .result-images:hover span a {
  2308. display: block;
  2309. position: absolute;
  2310. bottom: 0;
  2311. right: 0;
  2312. padding: 4px;
  2313. margin: 0 0 4px 4px;
  2314. background-color: rgba(0, 0, 0, 0.6);
  2315. font-size: 0.7em;
  2316. }
  2317. .result-map img.image {
  2318. float: right !important;
  2319. height: 100px !important;
  2320. width: auto !important;
  2321. }
  2322. .result-map table {
  2323. font-size: 0.9em;
  2324. width: auto;
  2325. border-collapse: separate;
  2326. border-spacing: 0 0.35rem;
  2327. }
  2328. .result-map table th {
  2329. font-weight: inherit;
  2330. width: 17rem;
  2331. vertical-align: top;
  2332. text-align: left;
  2333. }
  2334. .result-map table td {
  2335. vertical-align: top;
  2336. text-align: left;
  2337. }
  2338. .hidden {
  2339. display: none !important;
  2340. }
  2341. .torrent_result {
  2342. border-left: 10px solid lightgray;
  2343. padding-left: 3px;
  2344. }
  2345. .torrent_result p {
  2346. margin: 3px;
  2347. font-size: 0.8em;
  2348. }
  2349. .torrent_result a {
  2350. color: #084999;
  2351. }
  2352. .torrent_result a:hover {
  2353. text-decoration: underline;
  2354. }
  2355. .torrent_result a:visited {
  2356. color: #684898;
  2357. }
  2358. #results {
  2359. margin: 2em 2em 20px 2em;
  2360. padding: 0;
  2361. width: 50em;
  2362. }
  2363. #suggestions .wrapper {
  2364. display: flex;
  2365. flex-flow: row wrap;
  2366. justify-content: flex-end;
  2367. }
  2368. #suggestions .wrapper form {
  2369. display: inline-block;
  2370. flex: 1 1 50%;
  2371. }
  2372. #suggestions,
  2373. #answers,
  2374. #corrections {
  2375. max-width: 50em;
  2376. }
  2377. #suggestions input,
  2378. #answers input,
  2379. #infoboxes input,
  2380. #corrections input {
  2381. padding: 0;
  2382. margin: 3px;
  2383. font-size: 0.9em;
  2384. display: inline-block;
  2385. background: transparent;
  2386. color: #444;
  2387. cursor: pointer;
  2388. }
  2389. #suggestions input[type="submit"],
  2390. #answers input[type="submit"],
  2391. #infoboxes input[type="submit"],
  2392. #corrections input[type="submit"],
  2393. #suggestions .infobox .url a,
  2394. #answers .infobox .url a,
  2395. #infoboxes .infobox .url a,
  2396. #corrections .infobox .url a {
  2397. color: #084999;
  2398. text-decoration: none;
  2399. font-size: 0.9rem;
  2400. }
  2401. #suggestions input[type="submit"]:hover,
  2402. #answers input[type="submit"]:hover,
  2403. #infoboxes input[type="submit"]:hover,
  2404. #corrections input[type="submit"]:hover,
  2405. #suggestions .infobox .url a:hover,
  2406. #answers .infobox .url a:hover,
  2407. #infoboxes .infobox .url a:hover,
  2408. #corrections .infobox .url a:hover {
  2409. text-decoration: underline;
  2410. }
  2411. #corrections {
  2412. display: flex;
  2413. flex-flow: row wrap;
  2414. margin: 1em 0;
  2415. }
  2416. #corrections h4,
  2417. #corrections input[type="submit"] {
  2418. display: inline-block;
  2419. margin: 0 0.5em 0 0;
  2420. }
  2421. #corrections input[type="submit"]::after {
  2422. content: ", ";
  2423. }
  2424. #suggestions .title,
  2425. #search_url .title,
  2426. #apis .title {
  2427. margin: 2em 0 0.5em 0;
  2428. color: #444;
  2429. }
  2430. #answers {
  2431. margin: 10px 8px 10px 8px;
  2432. border: 1px solid #ddd;
  2433. padding: 0.9em;
  2434. box-shadow: 0 0 5px #ccc;
  2435. }
  2436. #answers h4 {
  2437. display: none;
  2438. }
  2439. #answers .answer {
  2440. display: block;
  2441. font-size: 1.2em;
  2442. font-weight: bold;
  2443. }
  2444. #answers form,
  2445. #infoboxes form {
  2446. min-width: 210px;
  2447. }
  2448. #sidebar {
  2449. position: absolute;
  2450. top: 100px;
  2451. left: 57em;
  2452. margin: 0 2px 5px 5px;
  2453. padding: 0 2px 2px;
  2454. max-width: 25em;
  2455. word-wrap: break-word;
  2456. }
  2457. #sidebar .infobox {
  2458. margin: 10px 0 10px;
  2459. border: 1px solid #ddd;
  2460. padding: 0.9em;
  2461. font-size: 0.9em;
  2462. box-shadow: 0 0 5px #ccc;
  2463. }
  2464. #sidebar .infobox h2 {
  2465. margin: 0 0 0.5em 0;
  2466. }
  2467. #sidebar .infobox img {
  2468. max-width: 100%;
  2469. max-height: 12em;
  2470. display: block;
  2471. margin: 0;
  2472. padding: 0;
  2473. }
  2474. #sidebar .infobox dl {
  2475. margin: 0.5em 0;
  2476. }
  2477. #sidebar .infobox dt {
  2478. display: inline;
  2479. margin: 0.5em 0.25em 0.5em 0;
  2480. padding: 0;
  2481. font-weight: bold;
  2482. }
  2483. #sidebar .infobox dd {
  2484. display: inline;
  2485. margin: 0.5em 0;
  2486. padding: 0;
  2487. }
  2488. #sidebar .infobox input {
  2489. font-size: 1em;
  2490. }
  2491. #sidebar .infobox br {
  2492. clear: both;
  2493. }
  2494. #sidebar .infobox .attributes,
  2495. #sidebar .infobox .urls {
  2496. clear: both;
  2497. }
  2498. #search_url {
  2499. margin-top: 8px;
  2500. }
  2501. #search_url div.selectable_url pre {
  2502. width: 200em;
  2503. }
  2504. #linkto_preferences {
  2505. position: absolute;
  2506. right: 10px;
  2507. top: 0.9em;
  2508. padding: 0;
  2509. border: 0;
  2510. display: block;
  2511. font-size: 1.2em;
  2512. color: #222;
  2513. }
  2514. #linkto_preferences a:link *,
  2515. #linkto_preferences a:hover *,
  2516. #linkto_preferences a:visited *,
  2517. #linkto_preferences a:active * {
  2518. color: #222;
  2519. }
  2520. #pagination {
  2521. clear: both;
  2522. }
  2523. #pagination br {
  2524. clear: both;
  2525. }
  2526. #apis {
  2527. margin-top: 8px;
  2528. clear: both;
  2529. }
  2530. #backToTop {
  2531. border: 1px solid #ddd;
  2532. margin: 0 0 0 2em;
  2533. padding: 0;
  2534. font-size: 1em;
  2535. box-shadow: 0 0 5px #ccc;
  2536. background: white;
  2537. position: fixed;
  2538. bottom: 85px;
  2539. left: 50em;
  2540. transition: opacity 0.5s;
  2541. opacity: 0;
  2542. }
  2543. #backToTop a {
  2544. display: block;
  2545. margin: 0;
  2546. padding: 0.6em;
  2547. }
  2548. @media screen and (max-width: 75em) {
  2549. #main_preferences,
  2550. #main_about,
  2551. #main_stats {
  2552. margin: 0.5em;
  2553. width: auto;
  2554. }
  2555. #suggestions,
  2556. #answers {
  2557. margin-top: 1em;
  2558. }
  2559. #infoboxes {
  2560. position: inherit;
  2561. max-width: inherit;
  2562. }
  2563. #infoboxes .infobox {
  2564. clear: both;
  2565. }
  2566. #infoboxes .infobox img {
  2567. float: left;
  2568. max-width: 10em;
  2569. margin: 0.5em 0.5em 0.5em 0;
  2570. }
  2571. #sidebar {
  2572. position: static;
  2573. max-width: 50em;
  2574. margin: 0 0 2px 0;
  2575. padding: 0;
  2576. float: none;
  2577. border: none;
  2578. width: auto;
  2579. }
  2580. #sidebar input {
  2581. border: 0;
  2582. }
  2583. #apis {
  2584. display: none;
  2585. }
  2586. #search_url {
  2587. display: none;
  2588. }
  2589. .result {
  2590. border-bottom: 1px solid #E8E7E6;
  2591. margin: 0;
  2592. padding-top: 8px;
  2593. padding-bottom: 6px;
  2594. }
  2595. .result h3 {
  2596. margin: 0 0 1px 0;
  2597. }
  2598. .result .thumbnail {
  2599. max-width: 98%;
  2600. }
  2601. .result .url span.url {
  2602. display: block;
  2603. white-space: nowrap;
  2604. text-overflow: ellipsis;
  2605. overflow: hidden;
  2606. width: 100%;
  2607. }
  2608. .result .url a {
  2609. float: right;
  2610. padding: 0 0.5em;
  2611. }
  2612. .result .engines {
  2613. float: right;
  2614. padding: 0 0 3px 0;
  2615. }
  2616. .result-images {
  2617. border-bottom: none !important;
  2618. }
  2619. .image_result {
  2620. max-width: 98%;
  2621. }
  2622. .image_result img {
  2623. max-width: 98%;
  2624. }
  2625. }
  2626. #main_results div#results.only_template_images {
  2627. flex-direction: column;
  2628. width: auto;
  2629. display: flex;
  2630. }
  2631. #main_results div#results.only_template_images #sidebar {
  2632. position: relative;
  2633. top: auto;
  2634. order: 2;
  2635. }
  2636. #main_results div#results.only_template_images #urls {
  2637. position: relative;
  2638. order: 1;
  2639. }
  2640. #main_results div#results.only_template_images #backToTop {
  2641. right: 0.5em;
  2642. left: auto;
  2643. }
  2644. #main_results div#results.only_template_images #pagination {
  2645. position: relative;
  2646. order: 3;
  2647. }
  2648. @media screen and (max-width: 50em) {
  2649. article[data-vim-selected]::before {
  2650. display: none;
  2651. content: "";
  2652. }
  2653. #linkto_preferences {
  2654. display: none;
  2655. position: fixed !important;
  2656. top: 100px;
  2657. right: 0;
  2658. }
  2659. #sidebar {
  2660. margin: 0 5px 2px 5px;
  2661. }
  2662. #corrections {
  2663. margin: 1em 5px 1em 5px;
  2664. }
  2665. #results {
  2666. margin: 0;
  2667. padding: 0;
  2668. width: initial;
  2669. }
  2670. #backToTop {
  2671. left: 40em;
  2672. bottom: 35px;
  2673. }
  2674. .result {
  2675. padding: 8px 10px 6px 10px;
  2676. }
  2677. .result-images {
  2678. margin: 0;
  2679. padding: 0;
  2680. border: none;
  2681. }
  2682. }
  2683. @media screen and (max-width: 35em) {
  2684. .result-videos img.thumbnail {
  2685. float: none !important;
  2686. }
  2687. .result-videos .content {
  2688. overflow: inherit;
  2689. }
  2690. }
  2691. pre code {
  2692. white-space: pre-wrap;
  2693. }
  2694. #search_submit {
  2695. left: 1px;
  2696. right: auto;
  2697. }