searxng-rtl.css 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258
  1. /*
  2. * SearXNG, 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. .osm-map-box {
  378. height: 300px;
  379. width: 100%;
  380. margin: 10px 0;
  381. }
  382. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  383. /* Document
  384. ========================================================================== */
  385. /**
  386. * 1. Correct the line height in all browsers.
  387. * 2. Prevent adjustments of font size after orientation changes in iOS.
  388. */
  389. html {
  390. line-height: 1.15; /* 1 */
  391. -webkit-text-size-adjust: 100%; /* 2 */
  392. }
  393. /* Sections
  394. ========================================================================== */
  395. /**
  396. * Remove the margin in all browsers.
  397. */
  398. body {
  399. margin: 0;
  400. }
  401. /**
  402. * Render the `main` element consistently in IE.
  403. */
  404. main {
  405. display: block;
  406. }
  407. /**
  408. * Correct the font size and margin on `h1` elements within `section` and
  409. * `article` contexts in Chrome, Firefox, and Safari.
  410. */
  411. h1 {
  412. font-size: 2em;
  413. margin: 0.67em 0;
  414. }
  415. /* Grouping content
  416. ========================================================================== */
  417. /**
  418. * 1. Add the correct box sizing in Firefox.
  419. * 2. Show the overflow in Edge and IE.
  420. */
  421. hr {
  422. box-sizing: content-box; /* 1 */
  423. height: 0; /* 1 */
  424. overflow: visible; /* 2 */
  425. }
  426. /**
  427. * 1. Correct the inheritance and scaling of font size in all browsers.
  428. * 2. Correct the odd `em` font sizing in all browsers.
  429. */
  430. pre {
  431. font-family: monospace, monospace; /* 1 */
  432. font-size: 1em; /* 2 */
  433. }
  434. /* Text-level semantics
  435. ========================================================================== */
  436. /**
  437. * Remove the gray background on active links in IE 10.
  438. */
  439. a {
  440. background-color: transparent;
  441. }
  442. /**
  443. * 1. Remove the bottom border in Chrome 57-
  444. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  445. */
  446. abbr[title] {
  447. border-bottom: none; /* 1 */
  448. text-decoration: underline; /* 2 */
  449. text-decoration: underline dotted; /* 2 */
  450. }
  451. /**
  452. * Add the correct font weight in Chrome, Edge, and Safari.
  453. */
  454. b,
  455. strong {
  456. font-weight: bolder;
  457. }
  458. /**
  459. * 1. Correct the inheritance and scaling of font size in all browsers.
  460. * 2. Correct the odd `em` font sizing in all browsers.
  461. */
  462. code,
  463. kbd,
  464. samp {
  465. font-family: monospace, monospace; /* 1 */
  466. font-size: 1em; /* 2 */
  467. }
  468. /**
  469. * Add the correct font size in all browsers.
  470. */
  471. small {
  472. font-size: 80%;
  473. }
  474. /**
  475. * Prevent `sub` and `sup` elements from affecting the line height in
  476. * all browsers.
  477. */
  478. sub,
  479. sup {
  480. font-size: 75%;
  481. line-height: 0;
  482. position: relative;
  483. vertical-align: baseline;
  484. }
  485. sub {
  486. bottom: -0.25em;
  487. }
  488. sup {
  489. top: -0.5em;
  490. }
  491. /* Embedded content
  492. ========================================================================== */
  493. /**
  494. * Remove the border on images inside links in IE 10.
  495. */
  496. img {
  497. border-style: none;
  498. }
  499. /* Forms
  500. ========================================================================== */
  501. /**
  502. * 1. Change the font styles in all browsers.
  503. * 2. Remove the margin in Firefox and Safari.
  504. */
  505. button,
  506. input,
  507. optgroup,
  508. select,
  509. textarea {
  510. font-family: inherit; /* 1 */
  511. font-size: 100%; /* 1 */
  512. line-height: 1.15; /* 1 */
  513. margin: 0; /* 2 */
  514. }
  515. /**
  516. * Show the overflow in IE.
  517. * 1. Show the overflow in Edge.
  518. */
  519. button,
  520. input { /* 1 */
  521. overflow: visible;
  522. }
  523. /**
  524. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  525. * 1. Remove the inheritance of text transform in Firefox.
  526. */
  527. button,
  528. select { /* 1 */
  529. text-transform: none;
  530. }
  531. /**
  532. * Correct the inability to style clickable types in iOS and Safari.
  533. */
  534. button,
  535. [type="button"],
  536. [type="reset"],
  537. [type="submit"] {
  538. -webkit-appearance: button;
  539. }
  540. /**
  541. * Remove the inner border and padding in Firefox.
  542. */
  543. button::-moz-focus-inner,
  544. [type="button"]::-moz-focus-inner,
  545. [type="reset"]::-moz-focus-inner,
  546. [type="submit"]::-moz-focus-inner {
  547. border-style: none;
  548. padding: 0;
  549. }
  550. /**
  551. * Restore the focus styles unset by the previous rule.
  552. */
  553. button:-moz-focusring,
  554. [type="button"]:-moz-focusring,
  555. [type="reset"]:-moz-focusring,
  556. [type="submit"]:-moz-focusring {
  557. outline: 1px dotted ButtonText;
  558. }
  559. /**
  560. * Correct the padding in Firefox.
  561. */
  562. fieldset {
  563. padding: 0.35em 0.75em 0.625em;
  564. }
  565. /**
  566. * 1. Correct the text wrapping in Edge and IE.
  567. * 2. Correct the color inheritance from `fieldset` elements in IE.
  568. * 3. Remove the padding so developers are not caught out when they zero out
  569. * `fieldset` elements in all browsers.
  570. */
  571. legend {
  572. box-sizing: border-box; /* 1 */
  573. color: inherit; /* 2 */
  574. display: table; /* 1 */
  575. max-width: 100%; /* 1 */
  576. padding: 0; /* 3 */
  577. white-space: normal; /* 1 */
  578. }
  579. /**
  580. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  581. */
  582. progress {
  583. vertical-align: baseline;
  584. }
  585. /**
  586. * Remove the default vertical scrollbar in IE 10+.
  587. */
  588. textarea {
  589. overflow: auto;
  590. }
  591. /**
  592. * 1. Add the correct box sizing in IE 10.
  593. * 2. Remove the padding in IE 10.
  594. */
  595. [type="checkbox"],
  596. [type="radio"] {
  597. box-sizing: border-box; /* 1 */
  598. padding: 0; /* 2 */
  599. }
  600. /**
  601. * Correct the cursor style of increment and decrement buttons in Chrome.
  602. */
  603. [type="number"]::-webkit-inner-spin-button,
  604. [type="number"]::-webkit-outer-spin-button {
  605. height: auto;
  606. }
  607. /**
  608. * 1. Correct the odd appearance in Chrome and Safari.
  609. * 2. Correct the outline style in Safari.
  610. */
  611. [type="search"] {
  612. -webkit-appearance: textfield; /* 1 */
  613. outline-offset: -2px; /* 2 */
  614. }
  615. /**
  616. * Remove the inner padding in Chrome and Safari on macOS.
  617. */
  618. [type="search"]::-webkit-search-decoration {
  619. -webkit-appearance: none;
  620. }
  621. /**
  622. * 1. Correct the inability to style clickable types in iOS and Safari.
  623. * 2. Change font properties to `inherit` in Safari.
  624. */
  625. ::-webkit-file-upload-button {
  626. -webkit-appearance: button; /* 1 */
  627. font: inherit; /* 2 */
  628. }
  629. /* Interactive
  630. ========================================================================== */
  631. /*
  632. * Add the correct display in Edge, IE 10+, and Firefox.
  633. */
  634. details {
  635. display: block;
  636. }
  637. /*
  638. * Add the correct display in all browsers.
  639. */
  640. summary {
  641. display: list-item;
  642. }
  643. /* Misc
  644. ========================================================================== */
  645. /**
  646. * Add the correct display in IE 10+.
  647. */
  648. template {
  649. display: none;
  650. }
  651. /**
  652. * Add the correct display in IE 10.
  653. */
  654. [hidden] {
  655. display: none;
  656. }
  657. /*
  658. * SearXNG, A privacy-respecting, hackable metasearch engine
  659. *
  660. * To change the colors of the site, simple edit this variables
  661. */
  662. :root {
  663. --color-base-font: #444;
  664. --color-base-font-rgb: 68, 68, 68;
  665. --color-base-background: #fff;
  666. --color-url-font: #29314d;
  667. --color-url-visited-font: #80b;
  668. --color-header-background: #f7f7f7;
  669. --color-header-border: #ddd;
  670. --color-footer-background: #f7f7f7;
  671. --color-footer-border: #ddd;
  672. --color-sidebar-border: #ddd;
  673. --color-sidebar-font: #000;
  674. --color-backtotop-font: #444;
  675. --color-backtotop-border: #ddd;
  676. --color-backtotop-background: #fff;
  677. --color-btn-background: #3050ff;
  678. --color-btn-font: #fff;
  679. --color-search-border: #bbb;
  680. --color-search-background: #fff;
  681. --color-search-font: #222;
  682. --color-search-background-hover: #3050ff;
  683. --color-error: #db3434;
  684. --color-error-background: #fae1e1;
  685. --color-warning: #dbba34;
  686. --color-warning-background: #faf5e1;
  687. --color-success: #42db34;
  688. --color-success-background: #e3fae1;
  689. --color-categories-item-selected-font: #3050ff;
  690. --color-categories-item-border-selected: #3050ff;
  691. --color-autocomplete-font: #000;
  692. --color-autocomplete-border: #bbb;
  693. --color-autocomplete-background: #fff;
  694. --color-autocomplete-background-hover: #f7f7f7;
  695. --color-answer-border: #ddd;
  696. --color-answer-font: #444;
  697. --color-answer-background: #f7f7f7;
  698. --color-result-border: #ddd;
  699. --color-result-url-font: #000;
  700. --color-result-vim-selected: #f7f7f7;
  701. --color-result-vim-arrow: #000bbb;
  702. --color-result-description-highlight-font: #000;
  703. --color-result-link-font: #000bbb;
  704. --color-result-link-font-highlight: #000bbb;
  705. --color-result-link-visited-font: #80b;
  706. --color-result-publishdate-font: #777;
  707. --color-result-engines-font: #777;
  708. --color-result-search-url-border: #ddd;
  709. --color-result-search-url-font: #000;
  710. --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
  711. --color-result-image-span-font: #fff;
  712. --color-result-image-background: #000bbb;
  713. --color-settings-tr-hover: #f7f7f7;
  714. --color-settings-engine-description-font: #909090;
  715. --color-result-detail-font: #fff;
  716. --color-result-detail-label-font: lightgray;
  717. --color-result-detail-background: #000;
  718. --color-result-detail-hr: #555;
  719. --color-result-detail-link: #8af;
  720. --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);
  721. --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);
  722. --color-toolkit-badge-font: #fff;
  723. --color-toolkit-badge-background: #777;
  724. --color-toolkit-kbd-font: #fff;
  725. --color-toolkit-kbd-background: #000;
  726. --color-toolkit-dialog-border: #ddd;
  727. --color-toolkit-dialog-background: #fff;
  728. --color-toolkit-tabs-label-border: #fff;
  729. --color-toolkit-tabs-section-border: #ddd;
  730. --color-toolkit-select-border: #ddd;
  731. --color-toolkit-select-border-hover: #bbb;
  732. --color-toolkit-input-text-font: #222;
  733. --color-toolkit-input-text-border: #ddd;
  734. --color-toolkit-input-text-border-hover: #bbb;
  735. --color-toolkit-checkbox-onoff-background: #ddd;
  736. --color-toolkit-checkbox-onoff-label-background: #3050ff;
  737. --color-toolkit-checkbox-onoff-checked-background: #aaa;
  738. --color-toolkit-checkbox-label-background: #fff;
  739. --color-toolkit-checkbox-label-border: #ddd;
  740. --color-toolkit-checkbox-input-border: #3050ff;
  741. --color-toolkit-engine-tooltip-border: #ddd;
  742. --color-toolkit-engine-tooltip-background: #fff;
  743. --color-toolkit-loader-border: rgba(0, 0, 0, 0.2);
  744. --color-toolkit-loader-borderleft: rgba(255, 255, 255, 0);
  745. }
  746. @media (prefers-color-scheme: dark) {
  747. :root.theme-auto {
  748. --color-base-font: #bbb;
  749. --color-base-font-rgb: 187, 187, 187;
  750. --color-base-background: #222;
  751. --color-url-font: #8af;
  752. --color-url-visited-font: #96b;
  753. --color-header-background: #181818;
  754. --color-header-border: #333;
  755. --color-footer-background: #181818;
  756. --color-footer-border: #333;
  757. --color-sidebar-border: #555;
  758. --color-sidebar-font: #fff;
  759. --color-backtotop-font: #bbb;
  760. --color-backtotop-border: #333;
  761. --color-backtotop-background: #181818;
  762. --color-btn-background: #58f;
  763. --color-btn-font: #222;
  764. --color-search-border: #555;
  765. --color-search-background: #222;
  766. --color-search-font: #fff;
  767. --color-search-background-hover: #58f;
  768. --color-error: #f55b5b;
  769. --color-error-background: #390a0a;
  770. --color-warning: #f1d561;
  771. --color-warning-background: #39300a;
  772. --color-success: #79f56e;
  773. --color-success-background: #0e390a;
  774. --color-categories-item-selected-font: #58f;
  775. --color-categories-item-border-selected: #58f;
  776. --color-autocomplete-font: #fff;
  777. --color-autocomplete-border: #555;
  778. --color-autocomplete-background: #222;
  779. --color-autocomplete-background-hover: #181818;
  780. --color-answer-border: #333;
  781. --color-answer-font: #bbb;
  782. --color-answer-background: #181818;
  783. --color-result-border: #333;
  784. --color-result-url-font: #fff;
  785. --color-result-vim-selected: #181818;
  786. --color-result-vim-arrow: #8af;
  787. --color-result-description-highlight-font: #fff;
  788. --color-result-link-font: #8af;
  789. --color-result-link-font-highlight: #8af;
  790. --color-result-link-visited-font: #96b;
  791. --color-result-publishdate-font: #777;
  792. --color-result-engines-font: #777;
  793. --color-result-search-url-border: #555;
  794. --color-result-search-url-font: #fff;
  795. --color-result-detail-font: #fff;
  796. --color-result-detail-label-font: lightgray;
  797. --color-result-detail-background: #000;
  798. --color-result-detail-hr: #555;
  799. --color-result-detail-link: #8af;
  800. --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);
  801. --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);
  802. --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
  803. --color-result-image-span-font: #fff;
  804. --color-result-image-background: #8af;
  805. --color-settings-tr-hover: #2d2d2d;
  806. --color-settings-engine-description-font: #909090;
  807. --color-toolkit-badge-font: #fff;
  808. --color-toolkit-badge-background: #777;
  809. --color-toolkit-kbd-font: #000;
  810. --color-toolkit-kbd-background: #fff;
  811. --color-toolkit-dialog-border: #555;
  812. --color-toolkit-dialog-background: #222;
  813. --color-toolkit-tabs-label-border: #222;
  814. --color-toolkit-tabs-section-border: #555;
  815. --color-toolkit-select-border: #555;
  816. --color-toolkit-select-border-hover: #777;
  817. --color-toolkit-input-text-font: #fff;
  818. --color-toolkit-input-text-border: #555;
  819. --color-toolkit-input-text-border-hover: #777;
  820. --color-toolkit-checkbox-onoff-background: #3c3b31;
  821. --color-toolkit-checkbox-onoff-label-background: #58f;
  822. --color-toolkit-checkbox-onoff-checked-background: #ddd;
  823. --color-toolkit-checkbox-label-background: #fff;
  824. --color-toolkit-checkbox-label-border: #333;
  825. --color-toolkit-checkbox-input-border: #58f;
  826. --color-toolkit-engine-tooltip-border: #333;
  827. --color-toolkit-engine-tooltip-background: #222;
  828. --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);
  829. --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);
  830. }
  831. }
  832. :root.theme-dark {
  833. --color-base-font: #bbb;
  834. --color-base-font-rgb: 187, 187, 187;
  835. --color-base-background: #222;
  836. --color-url-font: #8af;
  837. --color-url-visited-font: #96b;
  838. --color-header-background: #181818;
  839. --color-header-border: #333;
  840. --color-footer-background: #181818;
  841. --color-footer-border: #333;
  842. --color-sidebar-border: #555;
  843. --color-sidebar-font: #fff;
  844. --color-backtotop-font: #bbb;
  845. --color-backtotop-border: #333;
  846. --color-backtotop-background: #181818;
  847. --color-btn-background: #58f;
  848. --color-btn-font: #222;
  849. --color-search-border: #555;
  850. --color-search-background: #222;
  851. --color-search-font: #fff;
  852. --color-search-background-hover: #58f;
  853. --color-error: #f55b5b;
  854. --color-error-background: #390a0a;
  855. --color-warning: #f1d561;
  856. --color-warning-background: #39300a;
  857. --color-success: #79f56e;
  858. --color-success-background: #0e390a;
  859. --color-categories-item-selected-font: #58f;
  860. --color-categories-item-border-selected: #58f;
  861. --color-autocomplete-font: #fff;
  862. --color-autocomplete-border: #555;
  863. --color-autocomplete-background: #222;
  864. --color-autocomplete-background-hover: #181818;
  865. --color-answer-border: #333;
  866. --color-answer-font: #bbb;
  867. --color-answer-background: #181818;
  868. --color-result-border: #333;
  869. --color-result-url-font: #fff;
  870. --color-result-vim-selected: #181818;
  871. --color-result-vim-arrow: #8af;
  872. --color-result-description-highlight-font: #fff;
  873. --color-result-link-font: #8af;
  874. --color-result-link-font-highlight: #8af;
  875. --color-result-link-visited-font: #96b;
  876. --color-result-publishdate-font: #777;
  877. --color-result-engines-font: #777;
  878. --color-result-search-url-border: #555;
  879. --color-result-search-url-font: #fff;
  880. --color-result-detail-font: #fff;
  881. --color-result-detail-label-font: lightgray;
  882. --color-result-detail-background: #000;
  883. --color-result-detail-hr: #555;
  884. --color-result-detail-link: #8af;
  885. --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);
  886. --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);
  887. --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
  888. --color-result-image-span-font: #fff;
  889. --color-result-image-background: #8af;
  890. --color-settings-tr-hover: #2d2d2d;
  891. --color-settings-engine-description-font: #909090;
  892. --color-toolkit-badge-font: #fff;
  893. --color-toolkit-badge-background: #777;
  894. --color-toolkit-kbd-font: #000;
  895. --color-toolkit-kbd-background: #fff;
  896. --color-toolkit-dialog-border: #555;
  897. --color-toolkit-dialog-background: #222;
  898. --color-toolkit-tabs-label-border: #222;
  899. --color-toolkit-tabs-section-border: #555;
  900. --color-toolkit-select-border: #555;
  901. --color-toolkit-select-border-hover: #777;
  902. --color-toolkit-input-text-font: #fff;
  903. --color-toolkit-input-text-border: #555;
  904. --color-toolkit-input-text-border-hover: #777;
  905. --color-toolkit-checkbox-onoff-background: #3c3b31;
  906. --color-toolkit-checkbox-onoff-label-background: #58f;
  907. --color-toolkit-checkbox-onoff-checked-background: #ddd;
  908. --color-toolkit-checkbox-label-background: #fff;
  909. --color-toolkit-checkbox-label-border: #333;
  910. --color-toolkit-checkbox-input-border: #58f;
  911. --color-toolkit-engine-tooltip-border: #333;
  912. --color-toolkit-engine-tooltip-background: #222;
  913. --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);
  914. --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);
  915. }
  916. /*
  917. * SearXNG, A privacy-respecting, hackable metasearch engine
  918. */
  919. .code-highlight pre {
  920. overflow: auto;
  921. background-color: inherit;
  922. color: inherit;
  923. border: inherit;
  924. }
  925. /*
  926. this file is generated automatically by searxng_extra/update/update_pygments.py
  927. using pygments version 2.10.0
  928. */
  929. .code-highlight .linenos {
  930. -webkit-touch-callout: none;
  931. -webkit-user-select: none;
  932. -khtml-user-select: none;
  933. -moz-user-select: none;
  934. -ms-user-select: none;
  935. user-select: none;
  936. cursor: default;
  937. margin-right: 8px;
  938. text-align: right;
  939. }
  940. .code-highlight .linenos::selection {
  941. background: transparent;
  942. /* WebKit/Blink Browsers */
  943. }
  944. .code-highlight .linenos::-moz-selection {
  945. background: transparent;
  946. /* Gecko Browsers */
  947. }
  948. .code-highlight pre {
  949. line-height: 125%;
  950. }
  951. .code-highlight td.linenos .normal {
  952. color: inherit;
  953. background-color: transparent;
  954. padding-left: 5px;
  955. padding-right: 5px;
  956. }
  957. .code-highlight span.linenos {
  958. color: inherit;
  959. background-color: transparent;
  960. padding-left: 5px;
  961. padding-right: 5px;
  962. }
  963. .code-highlight td.linenos .special {
  964. color: #000000;
  965. background-color: #ffffc0;
  966. padding-left: 5px;
  967. padding-right: 5px;
  968. }
  969. .code-highlight span.linenos.special {
  970. color: #000000;
  971. background-color: #ffffc0;
  972. padding-left: 5px;
  973. padding-right: 5px;
  974. }
  975. .code-highlight .hll {
  976. background-color: #ffffcc;
  977. }
  978. .code-highlight {
  979. background: #f8f8f8;
  980. }
  981. .code-highlight .c {
  982. color: #408080;
  983. font-style: italic;
  984. }
  985. /* Comment */
  986. .code-highlight .err {
  987. border: 1px solid #FF0000;
  988. }
  989. /* Error */
  990. .code-highlight .k {
  991. color: #008000;
  992. font-weight: bold;
  993. }
  994. /* Keyword */
  995. .code-highlight .o {
  996. color: #666666;
  997. }
  998. /* Operator */
  999. .code-highlight .ch {
  1000. color: #408080;
  1001. font-style: italic;
  1002. }
  1003. /* Comment.Hashbang */
  1004. .code-highlight .cm {
  1005. color: #408080;
  1006. font-style: italic;
  1007. }
  1008. /* Comment.Multiline */
  1009. .code-highlight .cp {
  1010. color: #BC7A00;
  1011. }
  1012. /* Comment.Preproc */
  1013. .code-highlight .cpf {
  1014. color: #408080;
  1015. font-style: italic;
  1016. }
  1017. /* Comment.PreprocFile */
  1018. .code-highlight .c1 {
  1019. color: #408080;
  1020. font-style: italic;
  1021. }
  1022. /* Comment.Single */
  1023. .code-highlight .cs {
  1024. color: #408080;
  1025. font-style: italic;
  1026. }
  1027. /* Comment.Special */
  1028. .code-highlight .gd {
  1029. color: #A00000;
  1030. }
  1031. /* Generic.Deleted */
  1032. .code-highlight .ge {
  1033. font-style: italic;
  1034. }
  1035. /* Generic.Emph */
  1036. .code-highlight .gr {
  1037. color: #FF0000;
  1038. }
  1039. /* Generic.Error */
  1040. .code-highlight .gh {
  1041. color: #000080;
  1042. font-weight: bold;
  1043. }
  1044. /* Generic.Heading */
  1045. .code-highlight .gi {
  1046. color: #00A000;
  1047. }
  1048. /* Generic.Inserted */
  1049. .code-highlight .go {
  1050. color: #888888;
  1051. }
  1052. /* Generic.Output */
  1053. .code-highlight .gp {
  1054. color: #000080;
  1055. font-weight: bold;
  1056. }
  1057. /* Generic.Prompt */
  1058. .code-highlight .gs {
  1059. font-weight: bold;
  1060. }
  1061. /* Generic.Strong */
  1062. .code-highlight .gu {
  1063. color: #800080;
  1064. font-weight: bold;
  1065. }
  1066. /* Generic.Subheading */
  1067. .code-highlight .gt {
  1068. color: #0044DD;
  1069. }
  1070. /* Generic.Traceback */
  1071. .code-highlight .kc {
  1072. color: #008000;
  1073. font-weight: bold;
  1074. }
  1075. /* Keyword.Constant */
  1076. .code-highlight .kd {
  1077. color: #008000;
  1078. font-weight: bold;
  1079. }
  1080. /* Keyword.Declaration */
  1081. .code-highlight .kn {
  1082. color: #008000;
  1083. font-weight: bold;
  1084. }
  1085. /* Keyword.Namespace */
  1086. .code-highlight .kp {
  1087. color: #008000;
  1088. }
  1089. /* Keyword.Pseudo */
  1090. .code-highlight .kr {
  1091. color: #008000;
  1092. font-weight: bold;
  1093. }
  1094. /* Keyword.Reserved */
  1095. .code-highlight .kt {
  1096. color: #B00040;
  1097. }
  1098. /* Keyword.Type */
  1099. .code-highlight .m {
  1100. color: #666666;
  1101. }
  1102. /* Literal.Number */
  1103. .code-highlight .s {
  1104. color: #BA2121;
  1105. }
  1106. /* Literal.String */
  1107. .code-highlight .na {
  1108. color: #7D9029;
  1109. }
  1110. /* Name.Attribute */
  1111. .code-highlight .nb {
  1112. color: #008000;
  1113. }
  1114. /* Name.Builtin */
  1115. .code-highlight .nc {
  1116. color: #0000FF;
  1117. font-weight: bold;
  1118. }
  1119. /* Name.Class */
  1120. .code-highlight .no {
  1121. color: #880000;
  1122. }
  1123. /* Name.Constant */
  1124. .code-highlight .nd {
  1125. color: #AA22FF;
  1126. }
  1127. /* Name.Decorator */
  1128. .code-highlight .ni {
  1129. color: #999999;
  1130. font-weight: bold;
  1131. }
  1132. /* Name.Entity */
  1133. .code-highlight .ne {
  1134. color: #D2413A;
  1135. font-weight: bold;
  1136. }
  1137. /* Name.Exception */
  1138. .code-highlight .nf {
  1139. color: #0000FF;
  1140. }
  1141. /* Name.Function */
  1142. .code-highlight .nl {
  1143. color: #A0A000;
  1144. }
  1145. /* Name.Label */
  1146. .code-highlight .nn {
  1147. color: #0000FF;
  1148. font-weight: bold;
  1149. }
  1150. /* Name.Namespace */
  1151. .code-highlight .nt {
  1152. color: #008000;
  1153. font-weight: bold;
  1154. }
  1155. /* Name.Tag */
  1156. .code-highlight .nv {
  1157. color: #19177C;
  1158. }
  1159. /* Name.Variable */
  1160. .code-highlight .ow {
  1161. color: #AA22FF;
  1162. font-weight: bold;
  1163. }
  1164. /* Operator.Word */
  1165. .code-highlight .w {
  1166. color: #bbbbbb;
  1167. }
  1168. /* Text.Whitespace */
  1169. .code-highlight .mb {
  1170. color: #666666;
  1171. }
  1172. /* Literal.Number.Bin */
  1173. .code-highlight .mf {
  1174. color: #666666;
  1175. }
  1176. /* Literal.Number.Float */
  1177. .code-highlight .mh {
  1178. color: #666666;
  1179. }
  1180. /* Literal.Number.Hex */
  1181. .code-highlight .mi {
  1182. color: #666666;
  1183. }
  1184. /* Literal.Number.Integer */
  1185. .code-highlight .mo {
  1186. color: #666666;
  1187. }
  1188. /* Literal.Number.Oct */
  1189. .code-highlight .sa {
  1190. color: #BA2121;
  1191. }
  1192. /* Literal.String.Affix */
  1193. .code-highlight .sb {
  1194. color: #BA2121;
  1195. }
  1196. /* Literal.String.Backtick */
  1197. .code-highlight .sc {
  1198. color: #BA2121;
  1199. }
  1200. /* Literal.String.Char */
  1201. .code-highlight .dl {
  1202. color: #BA2121;
  1203. }
  1204. /* Literal.String.Delimiter */
  1205. .code-highlight .sd {
  1206. color: #BA2121;
  1207. font-style: italic;
  1208. }
  1209. /* Literal.String.Doc */
  1210. .code-highlight .s2 {
  1211. color: #BA2121;
  1212. }
  1213. /* Literal.String.Double */
  1214. .code-highlight .se {
  1215. color: #BB6622;
  1216. font-weight: bold;
  1217. }
  1218. /* Literal.String.Escape */
  1219. .code-highlight .sh {
  1220. color: #BA2121;
  1221. }
  1222. /* Literal.String.Heredoc */
  1223. .code-highlight .si {
  1224. color: #BB6688;
  1225. font-weight: bold;
  1226. }
  1227. /* Literal.String.Interpol */
  1228. .code-highlight .sx {
  1229. color: #008000;
  1230. }
  1231. /* Literal.String.Other */
  1232. .code-highlight .sr {
  1233. color: #BB6688;
  1234. }
  1235. /* Literal.String.Regex */
  1236. .code-highlight .s1 {
  1237. color: #BA2121;
  1238. }
  1239. /* Literal.String.Single */
  1240. .code-highlight .ss {
  1241. color: #19177C;
  1242. }
  1243. /* Literal.String.Symbol */
  1244. .code-highlight .bp {
  1245. color: #008000;
  1246. }
  1247. /* Name.Builtin.Pseudo */
  1248. .code-highlight .fm {
  1249. color: #0000FF;
  1250. }
  1251. /* Name.Function.Magic */
  1252. .code-highlight .vc {
  1253. color: #19177C;
  1254. }
  1255. /* Name.Variable.Class */
  1256. .code-highlight .vg {
  1257. color: #19177C;
  1258. }
  1259. /* Name.Variable.Global */
  1260. .code-highlight .vi {
  1261. color: #19177C;
  1262. }
  1263. /* Name.Variable.Instance */
  1264. .code-highlight .vm {
  1265. color: #19177C;
  1266. }
  1267. /* Name.Variable.Magic */
  1268. .code-highlight .il {
  1269. color: #666666;
  1270. }
  1271. /* Literal.Number.Integer.Long */
  1272. html.no-js .hide_if_nojs {
  1273. display: none;
  1274. }
  1275. html.js .show_if_nojs {
  1276. display: none;
  1277. }
  1278. .center {
  1279. text-align: center;
  1280. }
  1281. .right {
  1282. float: right;
  1283. }
  1284. .left {
  1285. float: left;
  1286. }
  1287. .invisible {
  1288. display: none !important;
  1289. }
  1290. .list-unstyled {
  1291. list-style-type: none;
  1292. }
  1293. .list-unstyled li {
  1294. margin-top: 4px;
  1295. margin-bottom: 4px;
  1296. }
  1297. .danger {
  1298. background-color: var(--color-error-background);
  1299. }
  1300. .warning {
  1301. background: var(--color-warning-background);
  1302. }
  1303. .success {
  1304. background: var(--color-success-background);
  1305. }
  1306. .badge {
  1307. display: inline-block;
  1308. color: var(--color-toolkit-badge-font);
  1309. background-color: var(--color-toolkit-badge-background);
  1310. text-align: center;
  1311. white-space: nowrap;
  1312. vertical-align: baseline;
  1313. min-width: 10px;
  1314. padding: 1px 5px;
  1315. border-radius: 5px;
  1316. }
  1317. kbd {
  1318. padding: 2px 4px;
  1319. margin: 1px;
  1320. font-size: 90%;
  1321. color: var(--color-toolkit-kbd-font);
  1322. background: var(--color-toolkit-kbd-background);
  1323. }
  1324. table {
  1325. width: 100%;
  1326. }
  1327. table.striped tr {
  1328. border-bottom: 1px solid var(--color-settings-tr-hover);
  1329. }
  1330. th {
  1331. padding: 0.4em;
  1332. }
  1333. td {
  1334. padding: 0 4px;
  1335. }
  1336. tr:hover {
  1337. background: var(--color-settings-tr-hover) !important;
  1338. }
  1339. div.selectable_url {
  1340. display: block;
  1341. border: 1px solid var(--color-result-search-url-border);
  1342. padding: 4px;
  1343. color: var(--color-result-search-url-font);
  1344. margin: 0.1em;
  1345. overflow: hidden;
  1346. height: 1.2em;
  1347. line-height: 1.2em;
  1348. -webkit-border-radius: 5px;
  1349. -moz-border-radius: 5px;
  1350. border-radius: 5px;
  1351. }
  1352. div.selectable_url pre {
  1353. display: block;
  1354. font-size: 0.8em;
  1355. word-break: break-all;
  1356. margin: 0.1em;
  1357. -webkit-user-select: all;
  1358. -moz-user-select: all;
  1359. -ms-user-select: element;
  1360. user-select: all;
  1361. }
  1362. .dialog-error {
  1363. position: relative;
  1364. display: flex;
  1365. padding: 1rem;
  1366. margin: 0 0 1em 0;
  1367. border: 1px solid var(--color-toolkit-dialog-border);
  1368. text-align: left;
  1369. -webkit-border-radius: 10px;
  1370. -moz-border-radius: 10px;
  1371. border-radius: 10px;
  1372. color: var(--color-error);
  1373. background: var(--color-error-background);
  1374. border-color: var(--color-error);
  1375. }
  1376. .dialog-error .close {
  1377. float: right;
  1378. position: relative;
  1379. top: -3px;
  1380. color: inherit;
  1381. font-size: 1.5em;
  1382. }
  1383. .dialog-error ul,
  1384. .dialog-error ol,
  1385. .dialog-error p {
  1386. margin: 1px 0 0 0;
  1387. }
  1388. .dialog-error table {
  1389. width: auto;
  1390. }
  1391. .dialog-error tr {
  1392. vertical-align: text-top;
  1393. }
  1394. .dialog-error tr:hover {
  1395. background: transparent !important;
  1396. }
  1397. .dialog-error td {
  1398. padding: 0 1em 0 0;
  1399. }
  1400. .dialog-error h4 {
  1401. margin-top: 0.3em;
  1402. margin-bottom: 0.3em;
  1403. }
  1404. .dialog-warning {
  1405. position: relative;
  1406. display: flex;
  1407. padding: 1rem;
  1408. margin: 0 0 1em 0;
  1409. border: 1px solid var(--color-toolkit-dialog-border);
  1410. text-align: left;
  1411. -webkit-border-radius: 10px;
  1412. -moz-border-radius: 10px;
  1413. border-radius: 10px;
  1414. color: var(--color-warning);
  1415. background: var(--color-warning-background);
  1416. border-color: var(--color-warning);
  1417. }
  1418. .dialog-warning .close {
  1419. float: right;
  1420. position: relative;
  1421. top: -3px;
  1422. color: inherit;
  1423. font-size: 1.5em;
  1424. }
  1425. .dialog-warning ul,
  1426. .dialog-warning ol,
  1427. .dialog-warning p {
  1428. margin: 1px 0 0 0;
  1429. }
  1430. .dialog-warning table {
  1431. width: auto;
  1432. }
  1433. .dialog-warning tr {
  1434. vertical-align: text-top;
  1435. }
  1436. .dialog-warning tr:hover {
  1437. background: transparent !important;
  1438. }
  1439. .dialog-warning td {
  1440. padding: 0 1em 0 0;
  1441. }
  1442. .dialog-warning h4 {
  1443. margin-top: 0.3em;
  1444. margin-bottom: 0.3em;
  1445. }
  1446. .dialog-modal {
  1447. position: relative;
  1448. display: flex;
  1449. padding: 1rem;
  1450. margin: 0 0 1em 0;
  1451. border: 1px solid var(--color-toolkit-dialog-border);
  1452. text-align: left;
  1453. -webkit-border-radius: 10px;
  1454. -moz-border-radius: 10px;
  1455. border-radius: 10px;
  1456. background: var(--color-toolkit-dialog-background);
  1457. position: fixed;
  1458. top: 50%;
  1459. left: 50%;
  1460. margin: 0 auto;
  1461. transform: translate(-50%, -50%);
  1462. z-index: 10000000;
  1463. }
  1464. .dialog-modal .close {
  1465. float: right;
  1466. position: relative;
  1467. top: -3px;
  1468. color: inherit;
  1469. font-size: 1.5em;
  1470. }
  1471. .dialog-modal ul,
  1472. .dialog-modal ol,
  1473. .dialog-modal p {
  1474. margin: 1px 0 0 0;
  1475. }
  1476. .dialog-modal table {
  1477. width: auto;
  1478. }
  1479. .dialog-modal tr {
  1480. vertical-align: text-top;
  1481. }
  1482. .dialog-modal tr:hover {
  1483. background: transparent !important;
  1484. }
  1485. .dialog-modal td {
  1486. padding: 0 1em 0 0;
  1487. }
  1488. .dialog-modal h4 {
  1489. margin-top: 0.3em;
  1490. margin-bottom: 0.3em;
  1491. }
  1492. .btn-collapse {
  1493. cursor: pointer;
  1494. }
  1495. .scrollx {
  1496. overflow-x: auto;
  1497. overflow-y: hidden;
  1498. display: block;
  1499. padding: 0;
  1500. margin: 0;
  1501. border: none;
  1502. }
  1503. /* -- tabs -- */
  1504. .tabs .tabs > label {
  1505. font-size: 90%;
  1506. }
  1507. .tabs {
  1508. display: -webkit-box;
  1509. display: -moz-box;
  1510. display: -webkit-flex;
  1511. display: -ms-flexbox;
  1512. display: flex;
  1513. flex-wrap: wrap;
  1514. width: 100%;
  1515. min-width: 100%;
  1516. }
  1517. .tabs > * {
  1518. order: 2;
  1519. }
  1520. .tabs > input[type=radio] {
  1521. display: none;
  1522. }
  1523. .tabs > label {
  1524. order: 1;
  1525. padding: 0.7em;
  1526. margin: 0 0.7em;
  1527. letter-spacing: 0.5px;
  1528. text-transform: uppercase;
  1529. border: solid var(--color-toolkit-tabs-label-border);
  1530. border-width: 0 0 2px 0;
  1531. -webkit-touch-callout: none;
  1532. -webkit-user-select: none;
  1533. -khtml-user-select: none;
  1534. -moz-user-select: none;
  1535. -ms-user-select: none;
  1536. user-select: none;
  1537. cursor: pointer;
  1538. }
  1539. .tabs > label:hover {
  1540. border-bottom: 2px solid var(--color-categories-item-border-selected);
  1541. }
  1542. .tabs > section {
  1543. min-width: 100%;
  1544. padding: 0.7rem 0;
  1545. box-sizing: border-box;
  1546. border-top: 1px solid var(--color-toolkit-tabs-section-border);
  1547. display: none;
  1548. }
  1549. .tabs > label:last-of-type {
  1550. border-bottom: 2px solid var(--color-categories-item-border-selected);
  1551. background: var(--color-categories-item-selected);
  1552. color: var(--color-categories-item-selected-font);
  1553. letter-spacing: -0.1px;
  1554. }
  1555. .tabs > section:last-of-type {
  1556. display: block;
  1557. }
  1558. html body .tabs > input:checked ~ section {
  1559. display: none;
  1560. }
  1561. html body .tabs > input:checked ~ label {
  1562. position: inherited;
  1563. background: inherit;
  1564. border-bottom: 2px solid transparent;
  1565. font-weight: normal;
  1566. color: inherit;
  1567. }
  1568. html body .tabs > input:checked ~ label:hover {
  1569. border-bottom: 2px solid var(--color-categories-item-border-selected);
  1570. }
  1571. html body .tabs > input:checked + label {
  1572. border-bottom: 2px solid var(--color-categories-item-border-selected);
  1573. background: var(--color-categories-item-selected);
  1574. color: var(--color-categories-item-selected-font);
  1575. }
  1576. html body .tabs > input:checked + label + section {
  1577. display: block;
  1578. }
  1579. /* -- select -- */
  1580. select {
  1581. height: 28px;
  1582. margin: 0 1em 0 0;
  1583. padding: 2px 8px 2px 0 !important;
  1584. color: var(--color-search-font);
  1585. font-size: 12px;
  1586. z-index: 2;
  1587. }
  1588. select:hover,
  1589. select:focus {
  1590. cursor: pointer;
  1591. }
  1592. @supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {
  1593. select {
  1594. appearance: none;
  1595. -webkit-appearance: none;
  1596. -moz-appearance: none;
  1597. border: none;
  1598. border-bottom: 1px solid var(--color-toolkit-select-border);
  1599. background: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat;
  1600. background-position-x: 105%;
  1601. background-size: 2em;
  1602. background-origin: content-box;
  1603. outline: medium none;
  1604. }
  1605. select:hover,
  1606. select:focus {
  1607. border-bottom: 1px solid var(--color-toolkit-select-border-hover);
  1608. }
  1609. select option {
  1610. background-color: var(--color-base-background);
  1611. }
  1612. @media (prefers-color-scheme: dark) {
  1613. html.theme-auto select,
  1614. html.theme-dark select {
  1615. background-image: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  1616. }
  1617. }
  1618. html.theme-dark select {
  1619. background-image: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%0A%3Cg%3E%3Cpolygon%20fill%3D%22%23ddd%22%20points%3D%22128%2C192%20256%2C320%20384%2C192%22%2F%3E%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  1620. }
  1621. }
  1622. /* -- checkbox-onoff -- */
  1623. @supports (border-radius: 50px) {
  1624. .checkbox-onoff {
  1625. display: inline-block;
  1626. width: 40px;
  1627. height: 10px;
  1628. background: var(--color-toolkit-checkbox-onoff-background);
  1629. margin: 8px 1rem;
  1630. position: relative;
  1631. border-radius: 50px;
  1632. }
  1633. .checkbox-onoff label {
  1634. display: block;
  1635. width: 20px;
  1636. height: 20px;
  1637. position: absolute;
  1638. top: -5px;
  1639. cursor: pointer;
  1640. border-radius: 50px;
  1641. transition: all 0.4s ease;
  1642. left: 27px;
  1643. background-color: var(--color-toolkit-checkbox-onoff-label-background);
  1644. }
  1645. .checkbox-onoff input[type=checkbox] {
  1646. visibility: hidden;
  1647. }
  1648. .checkbox-onoff input[type=checkbox]:checked + label {
  1649. left: -5px;
  1650. background: var(--color-toolkit-checkbox-onoff-checked-background);
  1651. }
  1652. }
  1653. /* -- checkbox -- */
  1654. @supports (transform: rotate(-45deg)) {
  1655. .checkbox {
  1656. width: 20px;
  1657. position: relative;
  1658. margin: 20px auto;
  1659. }
  1660. .checkbox label {
  1661. width: 20px;
  1662. height: 20px;
  1663. cursor: pointer;
  1664. position: absolute;
  1665. top: 0;
  1666. left: 0;
  1667. background: var(--color-toolkit-checkbox-label-background);
  1668. -webkit-border-radius: 10px;
  1669. -moz-border-radius: 10px;
  1670. border-radius: 10px;
  1671. }
  1672. .checkbox label::after {
  1673. content: '';
  1674. width: 9px;
  1675. height: 5px;
  1676. position: absolute;
  1677. top: 4px;
  1678. left: 4px;
  1679. border: 3px solid var(--color-toolkit-checkbox-label-border);
  1680. border-top: none;
  1681. border-right: none;
  1682. background: transparent;
  1683. opacity: 0;
  1684. transform: rotate(-45deg);
  1685. }
  1686. .checkbox input[type=checkbox] {
  1687. visibility: hidden;
  1688. }
  1689. .checkbox input[type=checkbox]:checked + label::after {
  1690. border-color: var(--color-toolkit-checkbox-input-border);
  1691. opacity: 1;
  1692. }
  1693. .checkbox input[disabled] + label {
  1694. background-color: transparent !important;
  1695. cursor: inherit;
  1696. }
  1697. .checkbox input:not(:checked):not([readonly]):not([disabled]) + label:hover::after {
  1698. opacity: 0.5;
  1699. }
  1700. }
  1701. @media screen and (max-width: 50em) {
  1702. .tabs > label {
  1703. width: 100%;
  1704. }
  1705. }
  1706. /* -- loader -- */
  1707. .loader,
  1708. .loader::after {
  1709. border-radius: 50%;
  1710. width: 2em;
  1711. height: 2em;
  1712. }
  1713. .loader {
  1714. margin: 1em auto;
  1715. font-size: 10px;
  1716. position: relative;
  1717. text-indent: -9999em;
  1718. border-top: 0.5em solid var(--color-toolkit-loader-border);
  1719. border-right: 0.5em solid var(--color-toolkit-loader-border);
  1720. border-bottom: 0.5em solid var(--color-toolkit-loader-border);
  1721. border-left: 0.5em solid var(--color-toolkit-loader-borderleft);
  1722. -webkit-transform: translateZ(0);
  1723. -ms-transform: translateZ(0);
  1724. transform: translateZ(0);
  1725. -webkit-animation: load8 1.2s infinite linear;
  1726. animation: load8 1.2s infinite linear;
  1727. }
  1728. @-webkit-keyframes load8 {
  1729. 0% {
  1730. -webkit-transform: rotate(0deg);
  1731. transform: rotate(0deg);
  1732. }
  1733. 100% {
  1734. -webkit-transform: rotate(360deg);
  1735. transform: rotate(360deg);
  1736. }
  1737. }
  1738. @keyframes load8 {
  1739. 0% {
  1740. -webkit-transform: rotate(0deg);
  1741. transform: rotate(0deg);
  1742. }
  1743. 100% {
  1744. -webkit-transform: rotate(360deg);
  1745. transform: rotate(360deg);
  1746. }
  1747. }
  1748. /* -- engine-tooltip -- */
  1749. .engine-tooltip {
  1750. display: none;
  1751. position: absolute;
  1752. padding: 0.5rem 1rem;
  1753. margin: 0 0 0 2rem;
  1754. border: 1px solid var(--color-toolkit-engine-tooltip-border);
  1755. background: var(--color-toolkit-engine-tooltip-background);
  1756. font-size: 14px;
  1757. font-weight: normal;
  1758. z-index: 1000000;
  1759. text-align: left;
  1760. -webkit-border-radius: 10px;
  1761. -moz-border-radius: 10px;
  1762. border-radius: 10px;
  1763. }
  1764. th:hover .engine-tooltip,
  1765. td:hover .engine-tooltip,
  1766. .engine-tooltip:hover {
  1767. display: inline-block;
  1768. }
  1769. /* -- stacked bar chart -- */
  1770. .stacked-bar-chart {
  1771. margin: 0;
  1772. padding: 0 0.125rem 0 4rem;
  1773. width: 100%;
  1774. width: -moz-available;
  1775. width: -webkit-fill-available;
  1776. width: fill;
  1777. flex-direction: row;
  1778. flex-wrap: nowrap;
  1779. align-items: center;
  1780. display: inline-flex;
  1781. }
  1782. .stacked-bar-chart-value {
  1783. width: 3rem;
  1784. display: inline-block;
  1785. position: absolute;
  1786. padding: 0 0.5rem;
  1787. text-align: right;
  1788. }
  1789. .stacked-bar-chart-base {
  1790. display: flex;
  1791. flex-shrink: 0;
  1792. flex-grow: 0;
  1793. flex-basis: unset;
  1794. }
  1795. .stacked-bar-chart-median {
  1796. display: flex;
  1797. flex-shrink: 0;
  1798. flex-grow: 0;
  1799. flex-basis: unset;
  1800. background: var(--color-base-font);
  1801. border: 1px solid rgba(var(--color-base-font-rgb), 0.9);
  1802. padding: 0.3rem 0;
  1803. }
  1804. .stacked-bar-chart-rate80 {
  1805. display: flex;
  1806. flex-shrink: 0;
  1807. flex-grow: 0;
  1808. flex-basis: unset;
  1809. background: transparent;
  1810. border: 1px solid rgba(var(--color-base-font-rgb), 0.3);
  1811. padding: 0.3rem 0;
  1812. }
  1813. .stacked-bar-chart-rate95 {
  1814. display: flex;
  1815. flex-shrink: 0;
  1816. flex-grow: 0;
  1817. flex-basis: unset;
  1818. background: transparent;
  1819. border-bottom: 1px dotted rgba(var(--color-base-font-rgb), 0.5);
  1820. padding: 0;
  1821. }
  1822. .stacked-bar-chart-rate100 {
  1823. display: flex;
  1824. flex-shrink: 0;
  1825. flex-grow: 0;
  1826. flex-basis: unset;
  1827. background: transparent;
  1828. border-left: 1px solid rgba(var(--color-base-font-rgb), 0.9);
  1829. padding: 0.4rem 0;
  1830. width: 1px;
  1831. }
  1832. /*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */
  1833. .autocomplete {
  1834. position: absolute;
  1835. max-height: 0;
  1836. overflow-y: hidden;
  1837. text-align: left;
  1838. -webkit-border-radius: 10px;
  1839. -moz-border-radius: 10px;
  1840. border-radius: 10px;
  1841. }
  1842. .autocomplete:active,
  1843. .autocomplete:focus,
  1844. .autocomplete:hover {
  1845. background-color: var(--color-autocomplete-background);
  1846. }
  1847. .autocomplete:empty {
  1848. display: none;
  1849. }
  1850. .autocomplete > ul {
  1851. list-style-type: none;
  1852. margin: 0;
  1853. padding: 0;
  1854. }
  1855. .autocomplete > ul > li {
  1856. cursor: pointer;
  1857. padding: 8px 0 8px 8px;
  1858. }
  1859. .autocomplete > ul > li.active,
  1860. .autocomplete > ul > li:active,
  1861. .autocomplete > ul > li:focus,
  1862. .autocomplete > ul > li:hover {
  1863. background-color: var(--color-autocomplete-background-hover);
  1864. }
  1865. .autocomplete > ul > li.active a:active,
  1866. .autocomplete > ul > li:active a:active,
  1867. .autocomplete > ul > li:focus a:active,
  1868. .autocomplete > ul > li:hover a:active,
  1869. .autocomplete > ul > li.active a:focus,
  1870. .autocomplete > ul > li:active a:focus,
  1871. .autocomplete > ul > li:focus a:focus,
  1872. .autocomplete > ul > li:hover a:focus,
  1873. .autocomplete > ul > li.active a:hover,
  1874. .autocomplete > ul > li:active a:hover,
  1875. .autocomplete > ul > li:focus a:hover,
  1876. .autocomplete > ul > li:hover a:hover {
  1877. text-decoration: none;
  1878. }
  1879. .autocomplete > ul > li.locked {
  1880. cursor: inherit;
  1881. }
  1882. .autocomplete.open {
  1883. display: block;
  1884. background-color: var(--color-autocomplete-background);
  1885. color: var(--color-autocomplete-font);
  1886. border: 1px solid var(--color-autocomplete-border);
  1887. max-height: 500px;
  1888. overflow-y: auto;
  1889. z-index: 100;
  1890. }
  1891. .autocomplete.open:empty {
  1892. display: none;
  1893. }
  1894. @media screen and (max-width: 50em) {
  1895. .autocomplete {
  1896. bottom: 0;
  1897. }
  1898. .autocomplete > ul > li {
  1899. border-bottom: 1px solid var(--color-result-top-border);
  1900. text-align: left;
  1901. }
  1902. }
  1903. #main_results #results.image-detail-open.only_template_images {
  1904. width: min(98%, 59.25rem) !important;
  1905. }
  1906. #main_results #results.only_template_images.image-detail-open #backToTop {
  1907. left: 56.75rem !important;
  1908. right: inherit;
  1909. }
  1910. article.result-images .detail {
  1911. display: none;
  1912. }
  1913. #results.image-detail-open article.result-images[data-vim-selected] .detail {
  1914. display: flex;
  1915. flex-direction: column;
  1916. position: fixed;
  1917. left: 60rem;
  1918. right: 0;
  1919. top: 7.75rem;
  1920. transition: top 0.064s ease-in 0s;
  1921. bottom: 0;
  1922. background: var(--color-result-detail-background);
  1923. border: 1px solid var(--color-result-detail-background);
  1924. z-index: 10000;
  1925. padding: 4rem 3rem 3rem 3rem;
  1926. }
  1927. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source {
  1928. display: block;
  1929. flex: 1;
  1930. text-align: left;
  1931. width: 100%;
  1932. border: none;
  1933. text-decoration: none;
  1934. }
  1935. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img {
  1936. padding: 0;
  1937. margin: 0;
  1938. border: none;
  1939. object-fit: contain;
  1940. width: inherit;
  1941. max-width: 100%;
  1942. min-height: inherit;
  1943. max-height: calc(100vh - 25rem - 7rem);
  1944. background: inherit;
  1945. }
  1946. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels {
  1947. color: var(--color-result-detail-font);
  1948. max-height: 16rem;
  1949. min-height: 16rem;
  1950. }
  1951. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels hr {
  1952. border-top: 1px solid var(--color-result-detail-hr);
  1953. border-bottom: none;
  1954. }
  1955. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4 {
  1956. height: 2rem;
  1957. overflow: hidden;
  1958. text-overflow: ellipsis;
  1959. font-size: 0.9rem;
  1960. }
  1961. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p {
  1962. color: var(--color-result-detail-label-font);
  1963. font-size: 0.9rem;
  1964. }
  1965. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span {
  1966. display: inline-block;
  1967. width: 12rem;
  1968. }
  1969. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4,
  1970. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p,
  1971. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a {
  1972. text-align: left;
  1973. }
  1974. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content {
  1975. height: 2rem;
  1976. overflow: hidden;
  1977. text-overflow: ellipsis;
  1978. }
  1979. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url {
  1980. white-space: nowrap;
  1981. overflow-x: hidden;
  1982. text-overflow: ellipsis;
  1983. }
  1984. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content:hover,
  1985. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url:hover {
  1986. position: relative;
  1987. overflow: inherit !important;
  1988. background: var(--color-result-detail-background);
  1989. text-overflow: inherit !important;
  1990. }
  1991. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,
  1992. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:visited,
  1993. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover,
  1994. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:active {
  1995. color: var(--color-result-detail-link);
  1996. }
  1997. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover {
  1998. text-decoration: underline;
  1999. }
  2000. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close {
  2001. top: 1rem;
  2002. left: 1rem;
  2003. padding: 0.4rem;
  2004. }
  2005. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous {
  2006. top: 1rem;
  2007. right: 6rem;
  2008. padding: 0.4rem 0.5rem 0.4rem 0.3rem;
  2009. }
  2010. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next {
  2011. top: 1rem;
  2012. right: 2rem;
  2013. padding: 0.4rem;
  2014. }
  2015. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,
  2016. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,
  2017. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous {
  2018. border-radius: 50%;
  2019. display: block;
  2020. width: 1.5rem;
  2021. height: 1.5rem;
  2022. position: absolute;
  2023. filter: opacity(40%);
  2024. z-index: 2000002;
  2025. }
  2026. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close span,
  2027. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span,
  2028. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span {
  2029. display: block;
  2030. width: 1.5rem;
  2031. height: 1.5rem;
  2032. text-align: center;
  2033. }
  2034. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span::before,
  2035. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span::before {
  2036. vertical-align: sub;
  2037. }
  2038. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,
  2039. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:visited,
  2040. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,
  2041. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:active,
  2042. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous,
  2043. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:visited,
  2044. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,
  2045. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:active,
  2046. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,
  2047. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:visited,
  2048. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,
  2049. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:active {
  2050. color: var(--color-result-detail-font);
  2051. background: var(--color-result-detail-background);
  2052. border: 1px solid var(--color-result-detail-font);
  2053. }
  2054. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:focus,
  2055. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,
  2056. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:focus,
  2057. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,
  2058. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:focus,
  2059. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover {
  2060. filter: opacity(80%);
  2061. }
  2062. #results.image-detail-open article.result-images[data-vim-selected] .detail .loader {
  2063. position: absolute;
  2064. top: 1rem;
  2065. right: 50%;
  2066. border-top: 0.5em solid var(--color-result-detail-loader-border);
  2067. border-right: 0.5em solid var(--color-result-detail-loader-border);
  2068. border-bottom: 0.5em solid var(--color-result-detail-loader-border);
  2069. border-left: 0.5em solid var(--color-result-detail-loader-borderleft);
  2070. }
  2071. #results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail {
  2072. top: 0;
  2073. }
  2074. #results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail a.result-images-source img {
  2075. max-height: calc(100vh - 25rem);
  2076. }
  2077. @media screen and (max-width: 80em) {
  2078. #results.image-detail-open article.result-images[data-vim-selected] .detail {
  2079. top: 0;
  2080. left: 0;
  2081. }
  2082. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source {
  2083. display: flex;
  2084. flex-direction: column;
  2085. justify-content: center;
  2086. }
  2087. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img {
  2088. width: 100%;
  2089. max-height: calc(100vh - 24rem);
  2090. }
  2091. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next {
  2092. right: 1rem;
  2093. }
  2094. }
  2095. @media screen and (max-width: 50em) {
  2096. #results.image-detail-open article.result-images[data-vim-selected] .detail {
  2097. top: 0;
  2098. left: 0;
  2099. padding: 1rem;
  2100. }
  2101. #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img {
  2102. width: 100%;
  2103. max-height: calc(100vh - 20rem);
  2104. margin: 0;
  2105. }
  2106. #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span {
  2107. width: inherit;
  2108. margin-right: 1rem;
  2109. }
  2110. }
  2111. #main_index {
  2112. margin-top: 26vh;
  2113. }
  2114. #main_index #linkto_preferences {
  2115. right: 1.8rem;
  2116. }
  2117. .index {
  2118. text-align: center;
  2119. }
  2120. .index .title {
  2121. background: url('../img/searxng.png') no-repeat;
  2122. min-height: 4rem;
  2123. margin: 4rem auto;
  2124. background-position: center;
  2125. background-size: contain;
  2126. }
  2127. .index h1 {
  2128. font-size: 4em;
  2129. visibility: hidden;
  2130. }
  2131. .index #search {
  2132. margin: 0 auto;
  2133. background: inherit;
  2134. border: inherit;
  2135. padding: 0;
  2136. display: block;
  2137. }
  2138. .index .search_filters {
  2139. display: block;
  2140. margin: 1em 0;
  2141. }
  2142. .index .category label {
  2143. padding: 6px 10px;
  2144. border-bottom: initial !important;
  2145. }
  2146. @media screen and (max-width: 80em) {
  2147. div.title h1 {
  2148. font-size: 1em;
  2149. }
  2150. #main_index {
  2151. margin-top: 6em;
  2152. }
  2153. }
  2154. @media screen and (max-width: 50em) {
  2155. #main_index {
  2156. margin-top: 0;
  2157. }
  2158. }
  2159. #tab-contentquery table td,
  2160. #tab-contentquery table th {
  2161. text-align: left !important;
  2162. height: 3rem;
  2163. }
  2164. #main_preferences form {
  2165. width: 100%;
  2166. }
  2167. #main_preferences fieldset {
  2168. margin: 8px;
  2169. border: none;
  2170. }
  2171. #main_preferences legend {
  2172. margin: 0;
  2173. padding: 5px 0 0 0;
  2174. display: block;
  2175. float: left;
  2176. width: 300px;
  2177. }
  2178. #main_preferences .value {
  2179. margin: 0;
  2180. padding: 0;
  2181. float: left;
  2182. width: 15em;
  2183. }
  2184. #main_preferences .value select,
  2185. #main_preferences .value input[type="text"] {
  2186. font-size: inherit !important;
  2187. margin: 0 1rem 0 0;
  2188. }
  2189. #main_preferences .value select {
  2190. width: 14rem;
  2191. }
  2192. #main_preferences .value input[type="text"] {
  2193. width: 13.25rem;
  2194. color: var(--color-toolkit-input-text-font);
  2195. border: 1px solid var(--color-toolkit-input-text-border);
  2196. background: none repeat scroll 0 0 var(--color-base-background);
  2197. padding: 0.4rem;
  2198. -webkit-border-radius: 5px;
  2199. -moz-border-radius: 5px;
  2200. border-radius: 5px;
  2201. }
  2202. #main_preferences .value input[type="text"]:hover {
  2203. border: 1px solid var(--color-toolkit-input-text-border-hover);
  2204. }
  2205. #main_preferences .value select:focus,
  2206. #main_preferences .value input:focus {
  2207. outline: none;
  2208. box-shadow: 0 0 1px 1px var(--color-btn-background);
  2209. }
  2210. #main_preferences .description {
  2211. margin: 0;
  2212. padding: 5px 0 0 0;
  2213. float: left;
  2214. width: 50%;
  2215. color: var(--color-settings-engine-description-font);
  2216. font-size: 90%;
  2217. }
  2218. #main_preferences table {
  2219. border-collapse: collapse;
  2220. }
  2221. #main_preferences table td {
  2222. text-align: center;
  2223. }
  2224. #main_preferences table.cookies {
  2225. width: 100%;
  2226. }
  2227. #main_preferences table.cookies th,
  2228. #main_preferences table.cookies td {
  2229. text-align: left;
  2230. font-family: monospace;
  2231. font-size: 1rem;
  2232. padding: 0.5em;
  2233. vertical-align: top;
  2234. }
  2235. #main_preferences table.cookies td:first-child {
  2236. word-break: keep-all;
  2237. width: 14rem;
  2238. padding-right: 1rem;
  2239. }
  2240. #main_preferences table.cookies td:last-child {
  2241. word-break: break-all;
  2242. }
  2243. #main_preferences table.cookies > tbody > tr:nth-child(even) > th,
  2244. #main_preferences table.cookies > tbody > tr:nth-child(even) > td {
  2245. background-color: var(--color-settings-tr-hover);
  2246. }
  2247. #main_preferences .name,
  2248. #main_preferences .shortcut {
  2249. text-align: left;
  2250. }
  2251. #main_preferences .preferences_back {
  2252. background: none repeat scroll 0 0 var(--color-btn-background);
  2253. color: var(--color-btn-font);
  2254. border: 0 none;
  2255. -webkit-border-radius: 10px;
  2256. -moz-border-radius: 10px;
  2257. border-radius: 10px;
  2258. cursor: pointer;
  2259. display: inline-block;
  2260. margin: 2px 4px;
  2261. padding: 0.7em;
  2262. }
  2263. #main_preferences .preferences_back a {
  2264. color: var(--color-settings-return-font);
  2265. }
  2266. #main_preferences .preferences_back a::first-letter {
  2267. text-transform: uppercase;
  2268. }
  2269. #main_preferences div.selectable_url pre {
  2270. width: 100%;
  2271. }
  2272. #main_preferences th.name .engine-tooltip {
  2273. margin-top: 1.8rem;
  2274. left: calc((100% - 85em) / 2 + 10em);
  2275. max-width: 40rem;
  2276. }
  2277. #main_preferences th.name .engine-tooltip .engine-description {
  2278. margin-top: 0.5rem;
  2279. }
  2280. @media screen and (max-width: 80em) {
  2281. .preferences_back {
  2282. clear: both;
  2283. }
  2284. .engine-tooltip {
  2285. left: 10em !important;
  2286. }
  2287. }
  2288. /*
  2289. * SearXNG, A privacy-respecting, hackable metasearch engine
  2290. */
  2291. #search {
  2292. padding: 1.5em 2em 0 7rem;
  2293. margin: 0;
  2294. background: var(--color-header-background);
  2295. border-bottom: 1px solid var(--color-header-border);
  2296. display: grid;
  2297. column-gap: 1.2rem;
  2298. row-gap: 1rem;
  2299. grid-template-columns: 3rem 1fr;
  2300. grid-template-areas: "logo search" "spacer categories";
  2301. }
  2302. .category {
  2303. display: inline-block;
  2304. position: relative;
  2305. margin-right: 1rem;
  2306. padding: 0;
  2307. }
  2308. .category input {
  2309. display: none;
  2310. }
  2311. .category label {
  2312. cursor: pointer;
  2313. padding: 0.2rem 0;
  2314. display: inline-flex;
  2315. text-transform: capitalize;
  2316. font-size: 0.9em;
  2317. border-bottom: 2px solid transparent;
  2318. -webkit-touch-callout: none;
  2319. -webkit-user-select: none;
  2320. -khtml-user-select: none;
  2321. -moz-user-select: none;
  2322. -ms-user-select: none;
  2323. user-select: none;
  2324. }
  2325. .category label svg {
  2326. padding-right: 0.2rem;
  2327. }
  2328. .category label div.category_name {
  2329. margin: auto 0;
  2330. }
  2331. .category input[type="checkbox"]:checked + label {
  2332. color: var(--color-categories-item-selected-font);
  2333. border-bottom: 2px solid var(--color-categories-item-border-selected);
  2334. }
  2335. #search_logo {
  2336. grid-area: logo;
  2337. display: flex;
  2338. align-items: center;
  2339. justify-content: center;
  2340. }
  2341. #search_logo svg {
  2342. flex: 1;
  2343. width: 30px;
  2344. height: 30px;
  2345. margin: 0.5rem 0 auto 0;
  2346. }
  2347. .search_categories {
  2348. grid-area: categories;
  2349. }
  2350. #search_wrapper {
  2351. padding: 0;
  2352. grid-area: search;
  2353. }
  2354. .search_box {
  2355. margin: 0 12px 0 0;
  2356. display: inline-flex;
  2357. flex-direction: row;
  2358. white-space: nowrap;
  2359. }
  2360. #clear_search {
  2361. display: block;
  2362. border-collapse: separate;
  2363. box-sizing: border-box;
  2364. width: 1.8em;
  2365. margin: 0;
  2366. padding: 8px 2px;
  2367. background: none repeat scroll 0 0 var(--color-search-background);
  2368. border-top: 1px solid var(--color-search-border);
  2369. border-bottom: 1px solid var(--color-search-border);
  2370. border-right: none;
  2371. border-left: none;
  2372. border-radius: 0;
  2373. outline: none;
  2374. color: var(--color-search-font);
  2375. font-size: 16px;
  2376. z-index: 10000;
  2377. }
  2378. #clear_search:hover {
  2379. color: var(--color-search-background-hover);
  2380. }
  2381. #clear_search.empty * {
  2382. display: none;
  2383. }
  2384. #q,
  2385. #send_search {
  2386. display: block !important;
  2387. border-collapse: separate;
  2388. box-sizing: border-box;
  2389. margin: 0;
  2390. padding: 10px;
  2391. background: none repeat scroll 0 0 var(--color-search-background);
  2392. border: 1px solid var(--color-search-border);
  2393. border-radius: 0;
  2394. outline: none;
  2395. color: var(--color-search-font);
  2396. font-size: 16px;
  2397. z-index: 2;
  2398. }
  2399. #q {
  2400. outline: medium none;
  2401. padding-left: 12px;
  2402. padding-right: 0 !important;
  2403. border-right: none;
  2404. width: 40rem;
  2405. border-radius: 10px 0 0 10px;
  2406. }
  2407. #q::-ms-clear,
  2408. #q::-webkit-search-cancel-button {
  2409. display: none;
  2410. }
  2411. #send_search {
  2412. border-left: none;
  2413. border-radius: 0 10px 10px 0;
  2414. }
  2415. #send_search:hover {
  2416. cursor: pointer;
  2417. background-color: var(--color-search-background-hover);
  2418. color: var(--color-search-background);
  2419. }
  2420. .no-js #send_search {
  2421. width: auto !important;
  2422. }
  2423. .search_filters {
  2424. display: inline-block;
  2425. margin: 0.8rem 0 0 0;
  2426. }
  2427. @media screen and (max-width: 80em) {
  2428. #search {
  2429. padding: 1.5em 0.5rem 0 0.5rem;
  2430. column-gap: 0.5rem;
  2431. }
  2432. #categories {
  2433. font-size: 90%;
  2434. clear: both;
  2435. }
  2436. #categories .checkbox_container {
  2437. margin: auto;
  2438. margin-top: 2px;
  2439. }
  2440. html.touch #main_index #categories_container,
  2441. html.touch #main_results #categories_container {
  2442. width: 1000px;
  2443. width: -moz-max-content;
  2444. width: -webkit-max-content;
  2445. width: max-content;
  2446. }
  2447. html.touch #main_index #categories_container .category,
  2448. html.touch #main_results #categories_container .category {
  2449. display: inline-block;
  2450. width: auto;
  2451. }
  2452. html.touch #main_index #categories,
  2453. html.touch #main_results #categories {
  2454. width: 100%;
  2455. text-align: left;
  2456. overflow-x: scroll;
  2457. overflow-y: hidden;
  2458. -webkit-overflow-scrolling: touch;
  2459. }
  2460. }
  2461. @media screen and (max-width: 50em) {
  2462. #search {
  2463. width: 100%;
  2464. margin: 0;
  2465. padding: 0.1em 0 0 0;
  2466. column-gap: 0;
  2467. row-gap: 0;
  2468. grid-template-areas: "logo search" "categories categories";
  2469. }
  2470. .search_logo {
  2471. padding: 0;
  2472. }
  2473. #search_wrapper {
  2474. width: 100%;
  2475. padding: 0;
  2476. }
  2477. .search_box {
  2478. width: 99%;
  2479. margin: 0.1em;
  2480. padding: 0 0.1em 0 0;
  2481. display: flex;
  2482. flex-direction: row;
  2483. }
  2484. #q {
  2485. width: 100%;
  2486. flex: 1;
  2487. }
  2488. #main_results #q:placeholder-shown ~ #send_search {
  2489. margin-right: 2.6rem;
  2490. transition: margin-right 0.1s;
  2491. }
  2492. .search_filters {
  2493. display: block;
  2494. margin: 0.8em 0;
  2495. }
  2496. .language,
  2497. .time_range {
  2498. width: 45%;
  2499. }
  2500. .category {
  2501. display: block;
  2502. width: 100%;
  2503. margin: 0;
  2504. }
  2505. .category label {
  2506. padding: 0.8rem !important;
  2507. margin: 0 !important;
  2508. }
  2509. .category label svg {
  2510. display: none;
  2511. }
  2512. }
  2513. @media screen and (max-width: 20rem) {
  2514. #search {
  2515. grid-template-areas: "search search" "categories categories";
  2516. }
  2517. #search_logo {
  2518. display: none;
  2519. }
  2520. }
  2521. #categories {
  2522. -webkit-touch-callout: none;
  2523. -webkit-user-select: none;
  2524. -khtml-user-select: none;
  2525. -moz-user-select: none;
  2526. -ms-user-select: none;
  2527. user-select: none;
  2528. }
  2529. #categories::-webkit-scrollbar {
  2530. width: 0;
  2531. height: 0;
  2532. }
  2533. #categories_container {
  2534. position: relative;
  2535. }
  2536. .ion-icon {
  2537. display: inline-block;
  2538. vertical-align: bottom;
  2539. line-height: 1;
  2540. text-decoration: inherit;
  2541. }
  2542. .ion-icon-small {
  2543. width: 1rem;
  2544. height: 1rem;
  2545. display: inline-block;
  2546. vertical-align: bottom;
  2547. line-height: 1;
  2548. text-decoration: inherit;
  2549. }
  2550. .ion-icon-big {
  2551. width: 1.5rem;
  2552. height: 1.5rem;
  2553. display: inline-block;
  2554. vertical-align: bottom;
  2555. line-height: 1;
  2556. text-decoration: inherit;
  2557. }
  2558. html {
  2559. font-family: sans-serif;
  2560. font-size: 0.9em;
  2561. -webkit-text-size-adjust: 100%;
  2562. -ms-text-size-adjust: 100%;
  2563. -moz-text-size-adjust: 100%;
  2564. text-size-adjust: 100%;
  2565. color: var(--color-base-font);
  2566. background-color: var(--color-base-background);
  2567. padding: 0;
  2568. margin: 0;
  2569. }
  2570. body,
  2571. main {
  2572. padding: 0;
  2573. margin: 0;
  2574. }
  2575. body {
  2576. display: flex;
  2577. flex-direction: column;
  2578. height: 100vh;
  2579. margin: 0;
  2580. }
  2581. main {
  2582. width: 100%;
  2583. margin-bottom: 2rem;
  2584. flex: 1;
  2585. }
  2586. #main_preferences,
  2587. #main_about,
  2588. #main_stats {
  2589. margin: 2em auto;
  2590. width: 85em;
  2591. }
  2592. footer {
  2593. clear: both;
  2594. min-height: 4rem;
  2595. padding: 1rem 0;
  2596. width: 100%;
  2597. text-align: center;
  2598. background-color: var(--color-footer-background);
  2599. border-top: 1px solid var(--color-footer-border);
  2600. overflow: hidden;
  2601. }
  2602. footer p {
  2603. font-size: 0.9em;
  2604. }
  2605. #main_preferences h1,
  2606. #main_stats h1 {
  2607. background: url('../img/searxng.png') no-repeat;
  2608. background-size: contain;
  2609. min-height: 40px;
  2610. margin: 0 auto;
  2611. }
  2612. #main_preferences h1 span,
  2613. #main_stats h1 span {
  2614. visibility: hidden;
  2615. }
  2616. input[type="submit"],
  2617. #results button[type="submit"] {
  2618. padding: 0.7rem;
  2619. display: inline-block;
  2620. background: var(--color-btn-background);
  2621. color: var(--color-btn-font);
  2622. -webkit-border-radius: 10px;
  2623. -moz-border-radius: 10px;
  2624. border-radius: 10px;
  2625. border: 0;
  2626. cursor: pointer;
  2627. }
  2628. a {
  2629. text-decoration: none;
  2630. color: var(--color-url-font);
  2631. }
  2632. a:visited {
  2633. color: var(--color-url-visited-font);
  2634. }
  2635. a:visited .highlight {
  2636. color: var(--color-url-visited-font);
  2637. }
  2638. article[data-vim-selected] {
  2639. background: var(--color-result-vim-selected);
  2640. border-left: 0.2rem solid var(--color-result-vim-arrow);
  2641. -webkit-border-radius: 0 10px 10px 0;
  2642. -moz-border-radius: 0 10px 10px 0;
  2643. border-radius: 0 10px 10px 0;
  2644. }
  2645. article.result-images[data-vim-selected] {
  2646. background: var(--color-result-vim-arrow);
  2647. border: none;
  2648. -webkit-border-radius: 10px;
  2649. -moz-border-radius: 10px;
  2650. border-radius: 10px;
  2651. }
  2652. article.result-images[data-vim-selected] .image_thumbnail {
  2653. filter: opacity(60%);
  2654. }
  2655. article[data-vim-selected].category-videos,
  2656. article[data-vim-selected].category-news,
  2657. article[data-vim-selected].category-map,
  2658. article[data-vim-selected].category-music,
  2659. article[data-vim-selected].category-files,
  2660. article[data-vim-selected].category-social {
  2661. border: 1px solid var(--color-result-vim-arrow);
  2662. -webkit-border-radius: 10px;
  2663. -moz-border-radius: 10px;
  2664. border-radius: 10px;
  2665. }
  2666. .result {
  2667. margin: 0.125rem 0;
  2668. padding: 1rem;
  2669. border-left: 0.2rem solid transparent;
  2670. }
  2671. .result h3 {
  2672. font-size: 1.1em;
  2673. word-wrap: break-word;
  2674. margin: 0.4rem 0 0.4rem 0;
  2675. padding: 0;
  2676. }
  2677. .result h3 a {
  2678. color: var(--color-result-link-font);
  2679. font-weight: normal;
  2680. font-size: 1.1em;
  2681. }
  2682. .result h3 a:visited {
  2683. color: var(--color-result-link-visited-font);
  2684. }
  2685. .result h3 a:focus,
  2686. .result h3 a:hover {
  2687. text-decoration: underline;
  2688. border: none;
  2689. outline: none;
  2690. }
  2691. .result .cache_link,
  2692. .result .proxyfied_link {
  2693. font-size: 0.9em !important;
  2694. }
  2695. .result .content,
  2696. .result .stat,
  2697. .result .altlink {
  2698. font-size: 0.9em;
  2699. margin: 0;
  2700. padding: 0;
  2701. max-width: 54em;
  2702. word-wrap: break-word;
  2703. line-height: 1.24;
  2704. }
  2705. .result .content .highlight,
  2706. .result .stat .highlight,
  2707. .result .altlink .highlight {
  2708. color: var(--color-result-description-highlight-font);
  2709. background: inherit;
  2710. font-weight: bold;
  2711. }
  2712. .result .codelines .highlight {
  2713. color: inherit;
  2714. background: inherit;
  2715. font-weight: normal;
  2716. }
  2717. .result .url {
  2718. font-size: 0.96em;
  2719. margin: 0 0 3px 0;
  2720. padding: 0;
  2721. max-width: 54em;
  2722. word-wrap: break-word;
  2723. color: var(--color-result-url-font);
  2724. }
  2725. .result .published_date {
  2726. font-size: 0.8em;
  2727. color: var(--color-result-publishdate-font);
  2728. }
  2729. .result img.thumbnail {
  2730. float: left;
  2731. padding: 0 5px 10px 0;
  2732. width: 20em;
  2733. min-width: 20em;
  2734. min-height: 8em;
  2735. }
  2736. .result img.image {
  2737. float: left;
  2738. padding: 0 5px 10px 0;
  2739. width: 100px;
  2740. max-height: 100px;
  2741. object-fit: scale-down;
  2742. object-position: right top;
  2743. }
  2744. .result .break {
  2745. clear: both;
  2746. }
  2747. .category-videos,
  2748. .category-news,
  2749. .category-map,
  2750. .category-music,
  2751. .category-files,
  2752. .category-social {
  2753. border: 1px solid var(--color-result-border);
  2754. margin: 1rem 0;
  2755. -webkit-border-radius: 10px;
  2756. -moz-border-radius: 10px;
  2757. border-radius: 10px;
  2758. }
  2759. .category-social .image {
  2760. width: auto !important;
  2761. min-width: 48px;
  2762. min-height: 48px;
  2763. padding: 0 5px 25px 0 !important;
  2764. }
  2765. .result-videos .content {
  2766. overflow: hidden;
  2767. }
  2768. .engines {
  2769. float: right;
  2770. color: var(--color-result-engines-font);
  2771. }
  2772. .engines span {
  2773. font-size: smaller;
  2774. margin: 0 0.5em 0 0;
  2775. }
  2776. .small_font {
  2777. font-size: 0.8em;
  2778. }
  2779. .highlight {
  2780. color: var(--color-result-link-font-highlight);
  2781. background: inherit;
  2782. }
  2783. .result-images {
  2784. display: inline-block;
  2785. margin: 0;
  2786. padding: 0;
  2787. position: relative;
  2788. max-height: 200px;
  2789. border: none !important;
  2790. }
  2791. .result-images img {
  2792. float: inherit;
  2793. margin: 0.125rem;
  2794. padding: 0;
  2795. border: none;
  2796. max-height: 200px;
  2797. background: var(--color-result-image-background);
  2798. }
  2799. .result-images span.title {
  2800. display: none;
  2801. color: var(--color-result-image-span-font);
  2802. }
  2803. .result-images:hover span.title {
  2804. display: block;
  2805. position: absolute;
  2806. bottom: 0;
  2807. right: 0;
  2808. padding: 4px;
  2809. margin: 0 0 4px 4px;
  2810. background-color: var(--color-result-image-span-background-hover);
  2811. font-size: 0.7em;
  2812. }
  2813. .result-map img.image {
  2814. float: right !important;
  2815. height: 100px !important;
  2816. width: auto !important;
  2817. }
  2818. .result-map table {
  2819. font-size: 0.9em;
  2820. width: auto;
  2821. border-collapse: separate;
  2822. border-spacing: 0 0.35rem;
  2823. }
  2824. .result-map table th {
  2825. font-weight: inherit;
  2826. width: 17rem;
  2827. vertical-align: top;
  2828. text-align: left;
  2829. }
  2830. .result-map table td {
  2831. vertical-align: top;
  2832. text-align: left;
  2833. }
  2834. .hidden {
  2835. display: none !important;
  2836. }
  2837. #results {
  2838. margin: 2rem 2rem 0 10rem;
  2839. display: grid;
  2840. grid-template-columns: 45rem 25rem;
  2841. grid-template-rows: min-content min-content 1fr min-content;
  2842. gap: 0 5rem;
  2843. grid-template-areas: "corrections sidebar" "answers sidebar" "urls sidebar" "pagination sidebar";
  2844. }
  2845. #results #sidebar *:first-child,
  2846. #results #urls *:first-child {
  2847. margin-top: 0;
  2848. }
  2849. #urls {
  2850. padding: 0;
  2851. grid-area: urls;
  2852. }
  2853. #suggestions .wrapper {
  2854. display: flex;
  2855. flex-flow: row wrap;
  2856. justify-content: flex-end;
  2857. }
  2858. #suggestions .wrapper form {
  2859. display: inline-block;
  2860. flex: 1 1 50%;
  2861. }
  2862. #suggestions input,
  2863. #infoboxes input {
  2864. padding: 0;
  2865. margin: 3px;
  2866. font-size: 0.9em;
  2867. display: inline-block;
  2868. background: transparent;
  2869. color: var(--color-result-search-url-font);
  2870. cursor: pointer;
  2871. }
  2872. #suggestions input[type="submit"],
  2873. #infoboxes input[type="submit"],
  2874. #suggestions .infobox .url a,
  2875. #infoboxes .infobox .url a {
  2876. color: var(--color-result-link-font);
  2877. text-decoration: none;
  2878. font-size: 0.9rem;
  2879. }
  2880. #suggestions input[type="submit"]:hover,
  2881. #infoboxes input[type="submit"]:hover,
  2882. #suggestions .infobox .url a:hover,
  2883. #infoboxes .infobox .url a:hover {
  2884. text-decoration: underline;
  2885. }
  2886. #corrections {
  2887. grid-area: corrections;
  2888. display: flex;
  2889. flex-flow: row wrap;
  2890. margin: 0 0 1em 0;
  2891. }
  2892. #corrections h4,
  2893. #corrections input[type="submit"] {
  2894. display: inline-block;
  2895. padding: 0.5rem;
  2896. margin: 0.5rem;
  2897. }
  2898. #corrections input[type="submit"] {
  2899. font-size: 0.8rem;
  2900. -webkit-border-radius: 5px;
  2901. -moz-border-radius: 5px;
  2902. border-radius: 5px;
  2903. }
  2904. #suggestions .title,
  2905. #search_url .title,
  2906. #apis .title {
  2907. margin: 2em 0 0.5em 0;
  2908. color: var(--color-base-font);
  2909. }
  2910. #answers {
  2911. grid-area: answers;
  2912. border: 1px solid var(--color-answer-border);
  2913. background: var(--color-answer-background);
  2914. padding: 1rem;
  2915. margin: 1rem 0;
  2916. margin-top: 0;
  2917. color: var(--color-answer-font);
  2918. -webkit-border-radius: 10px;
  2919. -moz-border-radius: 10px;
  2920. border-radius: 10px;
  2921. }
  2922. #answers h4 {
  2923. display: none;
  2924. }
  2925. #infoboxes form {
  2926. min-width: 210px;
  2927. }
  2928. #sidebar {
  2929. grid-area: sidebar;
  2930. word-wrap: break-word;
  2931. color: var(--color-sidebar-font);
  2932. }
  2933. #sidebar .infobox {
  2934. margin: 10px 0 10px;
  2935. border: 1px solid var(--color-sidebar-border);
  2936. padding: 1rem;
  2937. font-size: 0.9em;
  2938. -webkit-border-radius: 10px;
  2939. -moz-border-radius: 10px;
  2940. border-radius: 10px;
  2941. }
  2942. #sidebar .infobox h2 {
  2943. margin: 0 0 0.5em 0;
  2944. }
  2945. #sidebar .infobox img {
  2946. max-width: 100%;
  2947. max-height: 12em;
  2948. display: block;
  2949. margin: 0 auto;
  2950. padding: 0;
  2951. }
  2952. #sidebar .infobox dl {
  2953. margin: 0.5em 0;
  2954. }
  2955. #sidebar .infobox dt {
  2956. display: inline;
  2957. margin: 0.5em 0.25em 0.5em 0;
  2958. padding: 0;
  2959. font-weight: bold;
  2960. }
  2961. #sidebar .infobox dd {
  2962. display: inline;
  2963. margin: 0.5em 0;
  2964. padding: 0;
  2965. }
  2966. #sidebar .infobox input {
  2967. font-size: 1em;
  2968. }
  2969. #sidebar .infobox br {
  2970. clear: both;
  2971. }
  2972. #sidebar .infobox .attributes,
  2973. #sidebar .infobox .urls {
  2974. clear: both;
  2975. }
  2976. #search_url {
  2977. margin-top: 8px;
  2978. }
  2979. #search_url div.selectable_url pre {
  2980. width: 200em;
  2981. }
  2982. #linkto_preferences {
  2983. position: absolute;
  2984. right: 10px;
  2985. top: 2.2rem;
  2986. padding: 0;
  2987. border: 0;
  2988. display: block;
  2989. font-size: 1.2em;
  2990. color: var(--color-search-font);
  2991. }
  2992. #linkto_preferences a:link *,
  2993. #linkto_preferences a:hover *,
  2994. #linkto_preferences a:visited *,
  2995. #linkto_preferences a:active * {
  2996. color: var(--color-search-font);
  2997. }
  2998. #pagination {
  2999. grid-area: pagination;
  3000. }
  3001. #pagination br {
  3002. clear: both;
  3003. }
  3004. #apis {
  3005. margin-top: 8px;
  3006. clear: both;
  3007. }
  3008. #backToTop {
  3009. border: 1px solid var(--color-backtotop-border);
  3010. margin: 0;
  3011. padding: 0;
  3012. font-size: 1em;
  3013. background: var(--color-backtotop-background);
  3014. position: fixed;
  3015. bottom: 8rem;
  3016. left: 56.3rem;
  3017. transition: opacity 0.5s;
  3018. opacity: 0;
  3019. -webkit-border-radius: 10px;
  3020. -moz-border-radius: 10px;
  3021. border-radius: 10px;
  3022. }
  3023. #backToTop a {
  3024. display: block;
  3025. margin: 0;
  3026. padding: 0.7em;
  3027. }
  3028. #backToTop a,
  3029. #backToTop a:visited,
  3030. #backToTop a:hover,
  3031. #backToTop a:active {
  3032. color: var(--color-backtotop-font);
  3033. }
  3034. #results.scrolling #backToTop {
  3035. opacity: 1;
  3036. }
  3037. @media screen and (max-width: 80em) {
  3038. #main_preferences,
  3039. #main_about,
  3040. #main_stats {
  3041. margin: 2rem 0.5rem;
  3042. width: auto;
  3043. }
  3044. #infoboxes {
  3045. position: inherit;
  3046. max-width: inherit;
  3047. }
  3048. #infoboxes .infobox {
  3049. clear: both;
  3050. }
  3051. #infoboxes .infobox img {
  3052. float: left;
  3053. max-width: 10em;
  3054. margin: 0.5em 0.5em 0.5em 0;
  3055. }
  3056. #sidebar {
  3057. margin-bottom: 0.125rem;
  3058. padding: 0;
  3059. float: none;
  3060. border: none;
  3061. width: auto;
  3062. }
  3063. #sidebar input {
  3064. border: 0;
  3065. }
  3066. #apis {
  3067. display: none;
  3068. }
  3069. #search_url {
  3070. display: none;
  3071. }
  3072. .result .thumbnail {
  3073. max-width: 98%;
  3074. }
  3075. .result .url span.url {
  3076. display: block;
  3077. white-space: nowrap;
  3078. text-overflow: ellipsis;
  3079. overflow: hidden;
  3080. width: 100%;
  3081. }
  3082. .result .engines {
  3083. float: right;
  3084. padding: 0 0 3px 0;
  3085. }
  3086. .result-images {
  3087. border-bottom: none !important;
  3088. }
  3089. .image_result {
  3090. max-width: 98%;
  3091. }
  3092. .image_result img {
  3093. max-width: 98%;
  3094. }
  3095. #backToTop {
  3096. display: none;
  3097. }
  3098. #pagination {
  3099. margin: 2rem 0 0 0 !important;
  3100. }
  3101. #main_results div#results {
  3102. margin: 2rem auto 0 auto;
  3103. justify-content: center;
  3104. display: grid;
  3105. grid-template-columns: 45rem;
  3106. grid-template-rows: min-content min-content min-content 1fr min-content min-content;
  3107. gap: 0;
  3108. grid-template-areas: "corrections" "answers" "sidebar" "urls" "pagination";
  3109. }
  3110. }
  3111. #main_results div#results.only_template_images {
  3112. margin: 2rem 0.5rem 0 0.5rem;
  3113. display: grid;
  3114. grid-template-columns: 100%;
  3115. grid-template-rows: min-content min-content 1fr min-content min-content;
  3116. gap: 0;
  3117. grid-template-areas: "corrections" "urls" "answers" "sidebar" "pagination";
  3118. }
  3119. #main_results div#results.only_template_images #urls {
  3120. width: inherit;
  3121. margin: 0;
  3122. }
  3123. #main_results div#results.only_template_images #backToTop {
  3124. left: auto;
  3125. right: 1rem;
  3126. }
  3127. #main_results div#results.only_template_images #pagination {
  3128. margin-right: 4rem;
  3129. }
  3130. @media screen and (max-width: 50em) {
  3131. #main_results div#results {
  3132. grid-template-columns: 100%;
  3133. margin: 2rem 0.5rem 0 0.5rem;
  3134. }
  3135. #linkto_preferences {
  3136. top: 0.8rem;
  3137. right: 0.7rem;
  3138. }
  3139. #main_index #linkto_preferences {
  3140. top: 0.5rem;
  3141. right: 0.5rem;
  3142. }
  3143. #results {
  3144. margin: 0;
  3145. padding: 0;
  3146. }
  3147. #pagination {
  3148. margin: 2rem 1rem 0 1rem !important;
  3149. }
  3150. article[data-vim-selected] {
  3151. border: 1px solid var(--color-result-vim-arrow);
  3152. -webkit-border-radius: 10px;
  3153. -moz-border-radius: 10px;
  3154. border-radius: 10px;
  3155. }
  3156. .result {
  3157. border: 1px solid var(--color-result-border);
  3158. margin: 1rem 0;
  3159. -webkit-border-radius: 10px;
  3160. -moz-border-radius: 10px;
  3161. border-radius: 10px;
  3162. }
  3163. .result-images {
  3164. margin: 0;
  3165. padding: 0;
  3166. border: none;
  3167. }
  3168. }
  3169. @media screen and (max-width: 35em) {
  3170. .result-videos img.thumbnail {
  3171. float: none !important;
  3172. }
  3173. .result-videos .content {
  3174. overflow: inherit;
  3175. }
  3176. }
  3177. pre code {
  3178. white-space: pre-wrap;
  3179. }
  3180. #search_submit {
  3181. left: 1px;
  3182. right: auto;
  3183. }