123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279 |
- /*
- * SearXNG, A privacy-respecting, hackable metasearch engine
- *
- * To convert "style.less" to "style.css" run: $make styles
- */
- .github-issue-button {
- display: block;
- padding: 8px 16px;
- font-family: sans-serif;
- font-size: 16px;
- color: white;
- background-color: #238636 !important;
- /* important is needed cause to an !important in logicodev-dark */
- border: #2ea043;
- border-radius: 10px !important;
- box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
- }
- .github-issue-button:hover {
- background-color: #2ea043;
- }
- .issue-hide {
- display: none;
- }
- .engine-stats .engine-name {
- width: 20rem;
- }
- .engine-stats .engine-score {
- width: 7rem;
- text-align: right;
- }
- .engine-stats .engine-reliability {
- text-align: right;
- }
- .engine-stats table.engine-error {
- max-width: 1280px;
- margin: 1rem;
- border: 1px solid gray;
- }
- .engine-stats table.engine-error th.engine-error-type,
- .engine-stats table.engine-error td.engine-error-type,
- .engine-stats failed-test {
- width: 10rem;
- }
- .engine-stats table.engine-error span.log_parameters {
- border-right: 1px solid gray;
- padding: 0 1rem 0 0;
- margin: 0 0 0 0.5rem;
- }
- .bar-chart-value {
- width: 3em;
- display: inline-block;
- text-align: right;
- padding-right: 0.5rem;
- }
- .bar-chart-graph {
- width: calc(100% - 5rem);
- display: inline-block;
- }
- .bar-chart-bar {
- border: 3px solid #5bc0de;
- margin: 1px 0;
- }
- .bar-chart-serie1 {
- border: 3px solid #5bc0de;
- margin: 1px 0;
- float: left;
- }
- .bar-chart-serie2 {
- border: 3px solid #deb15b;
- margin: 1px 0;
- float: left;
- }
- .bar0 {
- width: 0;
- border: 0;
- }
- .bar1 {
- width: 1%;
- }
- .bar2 {
- width: 2%;
- }
- .bar3 {
- width: 3%;
- }
- .bar4 {
- width: 4%;
- }
- .bar5 {
- width: 5%;
- }
- .bar6 {
- width: 6%;
- }
- .bar7 {
- width: 7%;
- }
- .bar8 {
- width: 8%;
- }
- .bar9 {
- width: 9%;
- }
- .bar10 {
- width: 10%;
- }
- .bar11 {
- width: 11%;
- }
- .bar12 {
- width: 12%;
- }
- .bar13 {
- width: 13%;
- }
- .bar14 {
- width: 14%;
- }
- .bar15 {
- width: 15%;
- }
- .bar16 {
- width: 16%;
- }
- .bar17 {
- width: 17%;
- }
- .bar18 {
- width: 18%;
- }
- .bar19 {
- width: 19%;
- }
- .bar20 {
- width: 20%;
- }
- .bar21 {
- width: 21%;
- }
- .bar22 {
- width: 22%;
- }
- .bar23 {
- width: 23%;
- }
- .bar24 {
- width: 24%;
- }
- .bar25 {
- width: 25%;
- }
- .bar26 {
- width: 26%;
- }
- .bar27 {
- width: 27%;
- }
- .bar28 {
- width: 28%;
- }
- .bar29 {
- width: 29%;
- }
- .bar30 {
- width: 30%;
- }
- .bar31 {
- width: 31%;
- }
- .bar32 {
- width: 32%;
- }
- .bar33 {
- width: 33%;
- }
- .bar34 {
- width: 34%;
- }
- .bar35 {
- width: 35%;
- }
- .bar36 {
- width: 36%;
- }
- .bar37 {
- width: 37%;
- }
- .bar38 {
- width: 38%;
- }
- .bar39 {
- width: 39%;
- }
- .bar40 {
- width: 40%;
- }
- .bar41 {
- width: 41%;
- }
- .bar42 {
- width: 42%;
- }
- .bar43 {
- width: 43%;
- }
- .bar44 {
- width: 44%;
- }
- .bar45 {
- width: 45%;
- }
- .bar46 {
- width: 46%;
- }
- .bar47 {
- width: 47%;
- }
- .bar48 {
- width: 48%;
- }
- .bar49 {
- width: 49%;
- }
- .bar50 {
- width: 50%;
- }
- .bar51 {
- width: 51%;
- }
- .bar52 {
- width: 52%;
- }
- .bar53 {
- width: 53%;
- }
- .bar54 {
- width: 54%;
- }
- .bar55 {
- width: 55%;
- }
- .bar56 {
- width: 56%;
- }
- .bar57 {
- width: 57%;
- }
- .bar58 {
- width: 58%;
- }
- .bar59 {
- width: 59%;
- }
- .bar60 {
- width: 60%;
- }
- .bar61 {
- width: 61%;
- }
- .bar62 {
- width: 62%;
- }
- .bar63 {
- width: 63%;
- }
- .bar64 {
- width: 64%;
- }
- .bar65 {
- width: 65%;
- }
- .bar66 {
- width: 66%;
- }
- .bar67 {
- width: 67%;
- }
- .bar68 {
- width: 68%;
- }
- .bar69 {
- width: 69%;
- }
- .bar70 {
- width: 70%;
- }
- .bar71 {
- width: 71%;
- }
- .bar72 {
- width: 72%;
- }
- .bar73 {
- width: 73%;
- }
- .bar74 {
- width: 74%;
- }
- .bar75 {
- width: 75%;
- }
- .bar76 {
- width: 76%;
- }
- .bar77 {
- width: 77%;
- }
- .bar78 {
- width: 78%;
- }
- .bar79 {
- width: 79%;
- }
- .bar80 {
- width: 80%;
- }
- .bar81 {
- width: 81%;
- }
- .bar82 {
- width: 82%;
- }
- .bar83 {
- width: 83%;
- }
- .bar84 {
- width: 84%;
- }
- .bar85 {
- width: 85%;
- }
- .bar86 {
- width: 86%;
- }
- .bar87 {
- width: 87%;
- }
- .bar88 {
- width: 88%;
- }
- .bar89 {
- width: 89%;
- }
- .bar90 {
- width: 90%;
- }
- .bar91 {
- width: 91%;
- }
- .bar92 {
- width: 92%;
- }
- .bar93 {
- width: 93%;
- }
- .bar94 {
- width: 94%;
- }
- .bar95 {
- width: 95%;
- }
- .bar96 {
- width: 96%;
- }
- .bar97 {
- width: 97%;
- }
- .bar98 {
- width: 98%;
- }
- .bar99 {
- width: 99%;
- }
- .bar100 {
- width: 100%;
- }
- .osm-map-box {
- height: 300px;
- width: 100%;
- margin: 10px 0;
- }
- /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
- /* Document
- ========================================================================== */
- /**
- * 1. Correct the line height in all browsers.
- * 2. Prevent adjustments of font size after orientation changes in iOS.
- */
- html {
- line-height: 1.15; /* 1 */
- -webkit-text-size-adjust: 100%; /* 2 */
- }
- /* Sections
- ========================================================================== */
- /**
- * Remove the margin in all browsers.
- */
- body {
- margin: 0;
- }
- /**
- * Render the `main` element consistently in IE.
- */
- main {
- display: block;
- }
- /**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- /* Grouping content
- ========================================================================== */
- /**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
- hr {
- box-sizing: content-box; /* 1 */
- height: 0; /* 1 */
- overflow: visible; /* 2 */
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- pre {
- font-family: monospace, monospace; /* 1 */
- font-size: 1em; /* 2 */
- }
- /* Text-level semantics
- ========================================================================== */
- /**
- * Remove the gray background on active links in IE 10.
- */
- a {
- background-color: transparent;
- }
- /**
- * 1. Remove the bottom border in Chrome 57-
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
- abbr[title] {
- border-bottom: none; /* 1 */
- text-decoration: underline; /* 2 */
- text-decoration: underline dotted; /* 2 */
- }
- /**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
- b,
- strong {
- font-weight: bolder;
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- code,
- kbd,
- samp {
- font-family: monospace, monospace; /* 1 */
- font-size: 1em; /* 2 */
- }
- /**
- * Add the correct font size in all browsers.
- */
- small {
- font-size: 80%;
- }
- /**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sub {
- bottom: -0.25em;
- }
- sup {
- top: -0.5em;
- }
- /* Embedded content
- ========================================================================== */
- /**
- * Remove the border on images inside links in IE 10.
- */
- img {
- border-style: none;
- }
- /* Forms
- ========================================================================== */
- /**
- * 1. Change the font styles in all browsers.
- * 2. Remove the margin in Firefox and Safari.
- */
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: inherit; /* 1 */
- font-size: 100%; /* 1 */
- line-height: 1.15; /* 1 */
- margin: 0; /* 2 */
- }
- /**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
- button,
- input { /* 1 */
- overflow: visible;
- }
- /**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
- button,
- select { /* 1 */
- text-transform: none;
- }
- /**
- * Correct the inability to style clickable types in iOS and Safari.
- */
- button,
- [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- }
- /**
- * Remove the inner border and padding in Firefox.
- */
- button::-moz-focus-inner,
- [type="button"]::-moz-focus-inner,
- [type="reset"]::-moz-focus-inner,
- [type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
- }
- /**
- * Restore the focus styles unset by the previous rule.
- */
- button:-moz-focusring,
- [type="button"]:-moz-focusring,
- [type="reset"]:-moz-focusring,
- [type="submit"]:-moz-focusring {
- outline: 1px dotted ButtonText;
- }
- /**
- * Correct the padding in Firefox.
- */
- fieldset {
- padding: 0.35em 0.75em 0.625em;
- }
- /**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
- legend {
- box-sizing: border-box; /* 1 */
- color: inherit; /* 2 */
- display: table; /* 1 */
- max-width: 100%; /* 1 */
- padding: 0; /* 3 */
- white-space: normal; /* 1 */
- }
- /**
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
- progress {
- vertical-align: baseline;
- }
- /**
- * Remove the default vertical scrollbar in IE 10+.
- */
- textarea {
- overflow: auto;
- }
- /**
- * 1. Add the correct box sizing in IE 10.
- * 2. Remove the padding in IE 10.
- */
- [type="checkbox"],
- [type="radio"] {
- box-sizing: border-box; /* 1 */
- padding: 0; /* 2 */
- }
- /**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
- [type="number"]::-webkit-inner-spin-button,
- [type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- /**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
- [type="search"] {
- -webkit-appearance: textfield; /* 1 */
- outline-offset: -2px; /* 2 */
- }
- /**
- * Remove the inner padding in Chrome and Safari on macOS.
- */
- [type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- /**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
- ::-webkit-file-upload-button {
- -webkit-appearance: button; /* 1 */
- font: inherit; /* 2 */
- }
- /* Interactive
- ========================================================================== */
- /*
- * Add the correct display in Edge, IE 10+, and Firefox.
- */
- details {
- display: block;
- }
- /*
- * Add the correct display in all browsers.
- */
- summary {
- display: list-item;
- }
- /* Misc
- ========================================================================== */
- /**
- * Add the correct display in IE 10+.
- */
- template {
- display: none;
- }
- /**
- * Add the correct display in IE 10.
- */
- [hidden] {
- display: none;
- }
- /*
- * SearXNG, A privacy-respecting, hackable metasearch engine
- *
- * To change the colors of the site, simple edit this variables
- */
- :root {
- --color-base-font: #444;
- --color-base-font-rgb: 68, 68, 68;
- --color-base-background: #fff;
- --color-url-font: #29314d;
- --color-url-visited-font: #80b;
- --color-header-background: #f7f7f7;
- --color-header-border: #ddd;
- --color-footer-background: #f7f7f7;
- --color-footer-border: #ddd;
- --color-sidebar-border: #ddd;
- --color-sidebar-font: #000;
- --color-backtotop-font: #444;
- --color-backtotop-border: #ddd;
- --color-backtotop-background: #fff;
- --color-btn-background: #3050ff;
- --color-btn-font: #fff;
- --color-search-border: #bbb;
- --color-search-background: #fff;
- --color-search-font: #222;
- --color-search-background-hover: #3050ff;
- --color-error: #db3434;
- --color-error-background: #fae1e1;
- --color-warning: #dbba34;
- --color-warning-background: #faf5e1;
- --color-success: #42db34;
- --color-success-background: #e3fae1;
- --color-categories-item-selected-font: #3050ff;
- --color-categories-item-border-selected: #3050ff;
- --color-autocomplete-font: #000;
- --color-autocomplete-border: #bbb;
- --color-autocomplete-background: #fff;
- --color-autocomplete-background-hover: #f7f7f7;
- --color-answer-border: #ddd;
- --color-answer-font: #444;
- --color-answer-background: #f7f7f7;
- --color-result-border: #ddd;
- --color-result-url-font: #000;
- --color-result-vim-selected: #f7f7f7;
- --color-result-vim-arrow: #000bbb;
- --color-result-description-highlight-font: #000;
- --color-result-link-font: #000bbb;
- --color-result-link-font-highlight: #000bbb;
- --color-result-link-visited-font: #80b;
- --color-result-publishdate-font: #777;
- --color-result-engines-font: #777;
- --color-result-search-url-border: #ddd;
- --color-result-search-url-font: #000;
- --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
- --color-result-image-span-font: #fff;
- --color-result-image-background: #fff;
- --color-settings-tr-hover: #f7f7f7;
- --color-settings-engine-description-font: #909090;
- --color-result-detail-font: #fff;
- --color-result-detail-label-font: lightgray;
- --color-result-detail-background: #000;
- --color-result-detail-hr: #555;
- --color-result-detail-link: #8af;
- --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);
- --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);
- --color-toolkit-badge-font: #fff;
- --color-toolkit-badge-background: #777;
- --color-toolkit-kbd-font: #fff;
- --color-toolkit-kbd-background: #000;
- --color-toolkit-dialog-border: #ddd;
- --color-toolkit-dialog-background: #fff;
- --color-toolkit-tabs-label-border: #fff;
- --color-toolkit-tabs-section-border: #ddd;
- --color-toolkit-select-background: #f7f7f7;
- --color-toolkit-select-border: #ddd;
- --color-toolkit-select-background-hover: #bbb;
- --color-toolkit-input-text-font: #222;
- --color-toolkit-checkbox-onoff-background: #ddd;
- --color-toolkit-checkbox-onoff-label-background: #3050ff;
- --color-toolkit-checkbox-onoff-checked-background: #aaa;
- --color-toolkit-checkbox-label-background: #fff;
- --color-toolkit-checkbox-label-border: #ddd;
- --color-toolkit-checkbox-input-border: #3050ff;
- --color-toolkit-engine-tooltip-border: #ddd;
- --color-toolkit-engine-tooltip-background: #fff;
- --color-toolkit-loader-border: rgba(0, 0, 0, 0.2);
- --color-toolkit-loader-borderleft: rgba(255, 255, 255, 0);
- }
- @media (prefers-color-scheme: dark) {
- :root.theme-auto {
- --color-base-font: #bbb;
- --color-base-font-rgb: 187, 187, 187;
- --color-base-background: #222;
- --color-url-font: #8af;
- --color-url-visited-font: #96b;
- --color-header-background: #181818;
- --color-header-border: #333;
- --color-footer-background: #181818;
- --color-footer-border: #333;
- --color-sidebar-border: #555;
- --color-sidebar-font: #fff;
- --color-backtotop-font: #bbb;
- --color-backtotop-border: #333;
- --color-backtotop-background: #181818;
- --color-btn-background: #58f;
- --color-btn-font: #222;
- --color-search-border: #555;
- --color-search-background: #222;
- --color-search-font: #fff;
- --color-search-background-hover: #58f;
- --color-error: #f55b5b;
- --color-error-background: #390a0a;
- --color-warning: #f1d561;
- --color-warning-background: #39300a;
- --color-success: #79f56e;
- --color-success-background: #0e390a;
- --color-categories-item-selected-font: #58f;
- --color-categories-item-border-selected: #58f;
- --color-autocomplete-font: #fff;
- --color-autocomplete-border: #555;
- --color-autocomplete-background: #222;
- --color-autocomplete-background-hover: #181818;
- --color-answer-border: #333;
- --color-answer-font: #bbb;
- --color-answer-background: #181818;
- --color-result-border: #333;
- --color-result-url-font: #fff;
- --color-result-vim-selected: #181818;
- --color-result-vim-arrow: #8af;
- --color-result-description-highlight-font: #fff;
- --color-result-link-font: #8af;
- --color-result-link-font-highlight: #8af;
- --color-result-link-visited-font: #96b;
- --color-result-publishdate-font: #888;
- --color-result-engines-font: #888;
- --color-result-search-url-border: #555;
- --color-result-search-url-font: #fff;
- --color-result-detail-font: #fff;
- --color-result-detail-label-font: lightgray;
- --color-result-detail-background: #000;
- --color-result-detail-hr: #555;
- --color-result-detail-link: #8af;
- --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);
- --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);
- --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
- --color-result-image-span-font: #fff;
- --color-result-image-background: #222;
- --color-settings-tr-hover: #2d2d2d;
- --color-settings-engine-description-font: #909090;
- --color-toolkit-badge-font: #fff;
- --color-toolkit-badge-background: #777;
- --color-toolkit-kbd-font: #000;
- --color-toolkit-kbd-background: #fff;
- --color-toolkit-dialog-border: #555;
- --color-toolkit-dialog-background: #222;
- --color-toolkit-tabs-label-border: #222;
- --color-toolkit-tabs-section-border: #555;
- --color-toolkit-select-background: #3c3b31;
- --color-toolkit-select-border: #555;
- --color-toolkit-select-background-hover: #333;
- --color-toolkit-input-text-font: #fff;
- --color-toolkit-checkbox-onoff-background: #3c3b31;
- --color-toolkit-checkbox-onoff-label-background: #58f;
- --color-toolkit-checkbox-onoff-checked-background: #ddd;
- --color-toolkit-checkbox-label-background: #fff;
- --color-toolkit-checkbox-label-border: #333;
- --color-toolkit-checkbox-input-border: #58f;
- --color-toolkit-engine-tooltip-border: #333;
- --color-toolkit-engine-tooltip-background: #222;
- --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);
- --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);
- }
- }
- :root.theme-dark {
- --color-base-font: #bbb;
- --color-base-font-rgb: 187, 187, 187;
- --color-base-background: #222;
- --color-url-font: #8af;
- --color-url-visited-font: #96b;
- --color-header-background: #181818;
- --color-header-border: #333;
- --color-footer-background: #181818;
- --color-footer-border: #333;
- --color-sidebar-border: #555;
- --color-sidebar-font: #fff;
- --color-backtotop-font: #bbb;
- --color-backtotop-border: #333;
- --color-backtotop-background: #181818;
- --color-btn-background: #58f;
- --color-btn-font: #222;
- --color-search-border: #555;
- --color-search-background: #222;
- --color-search-font: #fff;
- --color-search-background-hover: #58f;
- --color-error: #f55b5b;
- --color-error-background: #390a0a;
- --color-warning: #f1d561;
- --color-warning-background: #39300a;
- --color-success: #79f56e;
- --color-success-background: #0e390a;
- --color-categories-item-selected-font: #58f;
- --color-categories-item-border-selected: #58f;
- --color-autocomplete-font: #fff;
- --color-autocomplete-border: #555;
- --color-autocomplete-background: #222;
- --color-autocomplete-background-hover: #181818;
- --color-answer-border: #333;
- --color-answer-font: #bbb;
- --color-answer-background: #181818;
- --color-result-border: #333;
- --color-result-url-font: #fff;
- --color-result-vim-selected: #181818;
- --color-result-vim-arrow: #8af;
- --color-result-description-highlight-font: #fff;
- --color-result-link-font: #8af;
- --color-result-link-font-highlight: #8af;
- --color-result-link-visited-font: #96b;
- --color-result-publishdate-font: #888;
- --color-result-engines-font: #888;
- --color-result-search-url-border: #555;
- --color-result-search-url-font: #fff;
- --color-result-detail-font: #fff;
- --color-result-detail-label-font: lightgray;
- --color-result-detail-background: #000;
- --color-result-detail-hr: #555;
- --color-result-detail-link: #8af;
- --color-result-detail-loader-border: rgba(255, 255, 255, 0.2);
- --color-result-detail-loader-borderleft: rgba(0, 0, 0, 0);
- --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
- --color-result-image-span-font: #fff;
- --color-result-image-background: #222;
- --color-settings-tr-hover: #2d2d2d;
- --color-settings-engine-description-font: #909090;
- --color-toolkit-badge-font: #fff;
- --color-toolkit-badge-background: #777;
- --color-toolkit-kbd-font: #000;
- --color-toolkit-kbd-background: #fff;
- --color-toolkit-dialog-border: #555;
- --color-toolkit-dialog-background: #222;
- --color-toolkit-tabs-label-border: #222;
- --color-toolkit-tabs-section-border: #555;
- --color-toolkit-select-background: #3c3b31;
- --color-toolkit-select-border: #555;
- --color-toolkit-select-background-hover: #333;
- --color-toolkit-input-text-font: #fff;
- --color-toolkit-checkbox-onoff-background: #3c3b31;
- --color-toolkit-checkbox-onoff-label-background: #58f;
- --color-toolkit-checkbox-onoff-checked-background: #ddd;
- --color-toolkit-checkbox-label-background: #fff;
- --color-toolkit-checkbox-label-border: #333;
- --color-toolkit-checkbox-input-border: #58f;
- --color-toolkit-engine-tooltip-border: #333;
- --color-toolkit-engine-tooltip-background: #222;
- --color-toolkit-loader-border: rgba(255, 255, 255, 0.2);
- --color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);
- }
- /*
- * SearXNG, A privacy-respecting, hackable metasearch engine
- */
- .code-highlight pre {
- overflow: auto;
- background-color: inherit;
- color: inherit;
- border: inherit;
- }
- /*
- this file is generated automatically by searxng_extra/update/update_pygments.py
- using pygments version 2.10.0
- */
- .code-highlight .linenos {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- cursor: default;
- margin-right: 8px;
- text-align: right;
- }
- .code-highlight .linenos::selection {
- background: transparent;
- /* WebKit/Blink Browsers */
- }
- .code-highlight .linenos::-moz-selection {
- background: transparent;
- /* Gecko Browsers */
- }
- .code-highlight pre {
- line-height: 125%;
- }
- .code-highlight td.linenos .normal {
- color: inherit;
- background-color: transparent;
- padding-left: 5px;
- padding-right: 5px;
- }
- .code-highlight span.linenos {
- color: inherit;
- background-color: transparent;
- padding-left: 5px;
- padding-right: 5px;
- }
- .code-highlight td.linenos .special {
- color: #000000;
- background-color: #ffffc0;
- padding-left: 5px;
- padding-right: 5px;
- }
- .code-highlight span.linenos.special {
- color: #000000;
- background-color: #ffffc0;
- padding-left: 5px;
- padding-right: 5px;
- }
- .code-highlight .hll {
- background-color: #ffffcc;
- }
- .code-highlight {
- background: #f8f8f8;
- }
- .code-highlight .c {
- color: #408080;
- font-style: italic;
- }
- /* Comment */
- .code-highlight .err {
- border: 1px solid #FF0000;
- }
- /* Error */
- .code-highlight .k {
- color: #008000;
- font-weight: bold;
- }
- /* Keyword */
- .code-highlight .o {
- color: #666666;
- }
- /* Operator */
- .code-highlight .ch {
- color: #408080;
- font-style: italic;
- }
- /* Comment.Hashbang */
- .code-highlight .cm {
- color: #408080;
- font-style: italic;
- }
- /* Comment.Multiline */
- .code-highlight .cp {
- color: #BC7A00;
- }
- /* Comment.Preproc */
- .code-highlight .cpf {
- color: #408080;
- font-style: italic;
- }
- /* Comment.PreprocFile */
- .code-highlight .c1 {
- color: #408080;
- font-style: italic;
- }
- /* Comment.Single */
- .code-highlight .cs {
- color: #408080;
- font-style: italic;
- }
- /* Comment.Special */
- .code-highlight .gd {
- color: #A00000;
- }
- /* Generic.Deleted */
- .code-highlight .ge {
- font-style: italic;
- }
- /* Generic.Emph */
- .code-highlight .gr {
- color: #FF0000;
- }
- /* Generic.Error */
- .code-highlight .gh {
- color: #000080;
- font-weight: bold;
- }
- /* Generic.Heading */
- .code-highlight .gi {
- color: #00A000;
- }
- /* Generic.Inserted */
- .code-highlight .go {
- color: #888888;
- }
- /* Generic.Output */
- .code-highlight .gp {
- color: #000080;
- font-weight: bold;
- }
- /* Generic.Prompt */
- .code-highlight .gs {
- font-weight: bold;
- }
- /* Generic.Strong */
- .code-highlight .gu {
- color: #800080;
- font-weight: bold;
- }
- /* Generic.Subheading */
- .code-highlight .gt {
- color: #0044DD;
- }
- /* Generic.Traceback */
- .code-highlight .kc {
- color: #008000;
- font-weight: bold;
- }
- /* Keyword.Constant */
- .code-highlight .kd {
- color: #008000;
- font-weight: bold;
- }
- /* Keyword.Declaration */
- .code-highlight .kn {
- color: #008000;
- font-weight: bold;
- }
- /* Keyword.Namespace */
- .code-highlight .kp {
- color: #008000;
- }
- /* Keyword.Pseudo */
- .code-highlight .kr {
- color: #008000;
- font-weight: bold;
- }
- /* Keyword.Reserved */
- .code-highlight .kt {
- color: #B00040;
- }
- /* Keyword.Type */
- .code-highlight .m {
- color: #666666;
- }
- /* Literal.Number */
- .code-highlight .s {
- color: #BA2121;
- }
- /* Literal.String */
- .code-highlight .na {
- color: #7D9029;
- }
- /* Name.Attribute */
- .code-highlight .nb {
- color: #008000;
- }
- /* Name.Builtin */
- .code-highlight .nc {
- color: #0000FF;
- font-weight: bold;
- }
- /* Name.Class */
- .code-highlight .no {
- color: #880000;
- }
- /* Name.Constant */
- .code-highlight .nd {
- color: #AA22FF;
- }
- /* Name.Decorator */
- .code-highlight .ni {
- color: #999999;
- font-weight: bold;
- }
- /* Name.Entity */
- .code-highlight .ne {
- color: #D2413A;
- font-weight: bold;
- }
- /* Name.Exception */
- .code-highlight .nf {
- color: #0000FF;
- }
- /* Name.Function */
- .code-highlight .nl {
- color: #A0A000;
- }
- /* Name.Label */
- .code-highlight .nn {
- color: #0000FF;
- font-weight: bold;
- }
- /* Name.Namespace */
- .code-highlight .nt {
- color: #008000;
- font-weight: bold;
- }
- /* Name.Tag */
- .code-highlight .nv {
- color: #19177C;
- }
- /* Name.Variable */
- .code-highlight .ow {
- color: #AA22FF;
- font-weight: bold;
- }
- /* Operator.Word */
- .code-highlight .w {
- color: #bbbbbb;
- }
- /* Text.Whitespace */
- .code-highlight .mb {
- color: #666666;
- }
- /* Literal.Number.Bin */
- .code-highlight .mf {
- color: #666666;
- }
- /* Literal.Number.Float */
- .code-highlight .mh {
- color: #666666;
- }
- /* Literal.Number.Hex */
- .code-highlight .mi {
- color: #666666;
- }
- /* Literal.Number.Integer */
- .code-highlight .mo {
- color: #666666;
- }
- /* Literal.Number.Oct */
- .code-highlight .sa {
- color: #BA2121;
- }
- /* Literal.String.Affix */
- .code-highlight .sb {
- color: #BA2121;
- }
- /* Literal.String.Backtick */
- .code-highlight .sc {
- color: #BA2121;
- }
- /* Literal.String.Char */
- .code-highlight .dl {
- color: #BA2121;
- }
- /* Literal.String.Delimiter */
- .code-highlight .sd {
- color: #BA2121;
- font-style: italic;
- }
- /* Literal.String.Doc */
- .code-highlight .s2 {
- color: #BA2121;
- }
- /* Literal.String.Double */
- .code-highlight .se {
- color: #BB6622;
- font-weight: bold;
- }
- /* Literal.String.Escape */
- .code-highlight .sh {
- color: #BA2121;
- }
- /* Literal.String.Heredoc */
- .code-highlight .si {
- color: #BB6688;
- font-weight: bold;
- }
- /* Literal.String.Interpol */
- .code-highlight .sx {
- color: #008000;
- }
- /* Literal.String.Other */
- .code-highlight .sr {
- color: #BB6688;
- }
- /* Literal.String.Regex */
- .code-highlight .s1 {
- color: #BA2121;
- }
- /* Literal.String.Single */
- .code-highlight .ss {
- color: #19177C;
- }
- /* Literal.String.Symbol */
- .code-highlight .bp {
- color: #008000;
- }
- /* Name.Builtin.Pseudo */
- .code-highlight .fm {
- color: #0000FF;
- }
- /* Name.Function.Magic */
- .code-highlight .vc {
- color: #19177C;
- }
- /* Name.Variable.Class */
- .code-highlight .vg {
- color: #19177C;
- }
- /* Name.Variable.Global */
- .code-highlight .vi {
- color: #19177C;
- }
- /* Name.Variable.Instance */
- .code-highlight .vm {
- color: #19177C;
- }
- /* Name.Variable.Magic */
- .code-highlight .il {
- color: #666666;
- }
- /* Literal.Number.Integer.Long */
- html.no-js .hide_if_nojs {
- display: none;
- }
- html.js .show_if_nojs {
- display: none;
- }
- .center {
- text-align: center;
- }
- .right {
- float: right;
- }
- .left {
- float: left;
- }
- .invisible {
- display: none !important;
- }
- .list-unstyled {
- list-style-type: none;
- }
- .list-unstyled li {
- margin-top: 4px;
- margin-bottom: 4px;
- }
- .danger {
- background-color: var(--color-error-background);
- }
- .warning {
- background: var(--color-warning-background);
- }
- .success {
- background: var(--color-success-background);
- }
- .badge {
- display: inline-block;
- color: var(--color-toolkit-badge-font);
- background-color: var(--color-toolkit-badge-background);
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- min-width: 10px;
- padding: 1px 5px;
- border-radius: 5px;
- }
- kbd {
- padding: 2px 4px;
- margin: 1px;
- font-size: 90%;
- color: var(--color-toolkit-kbd-font);
- background: var(--color-toolkit-kbd-background);
- }
- table {
- width: 100%;
- }
- table.striped tr {
- border-bottom: 1px solid var(--color-settings-tr-hover);
- }
- th {
- padding: 0.4em;
- }
- td {
- padding: 0 4px;
- }
- tr:hover {
- background: var(--color-settings-tr-hover) !important;
- }
- div.selectable_url {
- display: block;
- border: 1px solid var(--color-result-search-url-border);
- padding: 4px;
- color: var(--color-result-search-url-font);
- margin: 0.1em;
- overflow: hidden;
- height: 1.2em;
- line-height: 1.2em;
- border-radius: 5px;
- }
- div.selectable_url pre {
- display: block;
- font-size: 0.8em;
- word-break: break-all;
- margin: 0.1em;
- -webkit-user-select: all;
- -moz-user-select: all;
- -ms-user-select: element;
- user-select: all;
- }
- .dialog-error {
- position: relative;
- display: flex;
- padding: 1rem;
- margin: 0 0 1em 0;
- border: 1px solid var(--color-toolkit-dialog-border);
- text-align: left;
- border-radius: 10px;
- color: var(--color-error);
- background: var(--color-error-background);
- border-color: var(--color-error);
- }
- .dialog-error .close {
- float: right;
- position: relative;
- top: -3px;
- color: inherit;
- font-size: 1.5em;
- }
- .dialog-error ul,
- .dialog-error ol,
- .dialog-error p {
- margin: 1px 0 0 0;
- }
- .dialog-error table {
- width: auto;
- }
- .dialog-error tr {
- vertical-align: text-top;
- }
- .dialog-error tr:hover {
- background: transparent !important;
- }
- .dialog-error td {
- padding: 0 1em 0 0;
- }
- .dialog-error h4 {
- margin-top: 0.3em;
- margin-bottom: 0.3em;
- }
- .dialog-warning {
- position: relative;
- display: flex;
- padding: 1rem;
- margin: 0 0 1em 0;
- border: 1px solid var(--color-toolkit-dialog-border);
- text-align: left;
- border-radius: 10px;
- color: var(--color-warning);
- background: var(--color-warning-background);
- border-color: var(--color-warning);
- }
- .dialog-warning .close {
- float: right;
- position: relative;
- top: -3px;
- color: inherit;
- font-size: 1.5em;
- }
- .dialog-warning ul,
- .dialog-warning ol,
- .dialog-warning p {
- margin: 1px 0 0 0;
- }
- .dialog-warning table {
- width: auto;
- }
- .dialog-warning tr {
- vertical-align: text-top;
- }
- .dialog-warning tr:hover {
- background: transparent !important;
- }
- .dialog-warning td {
- padding: 0 1em 0 0;
- }
- .dialog-warning h4 {
- margin-top: 0.3em;
- margin-bottom: 0.3em;
- }
- .dialog-modal {
- position: relative;
- display: flex;
- padding: 1rem;
- margin: 0 0 1em 0;
- border: 1px solid var(--color-toolkit-dialog-border);
- text-align: left;
- border-radius: 10px;
- display: block;
- background: var(--color-toolkit-dialog-background);
- position: fixed;
- top: 50%;
- left: 50%;
- margin: 0 auto;
- transform: translate(-50%, -50%);
- z-index: 10000000;
- }
- .dialog-modal .close {
- float: right;
- position: relative;
- top: -3px;
- color: inherit;
- font-size: 1.5em;
- }
- .dialog-modal ul,
- .dialog-modal ol,
- .dialog-modal p {
- margin: 1px 0 0 0;
- }
- .dialog-modal table {
- width: auto;
- }
- .dialog-modal tr {
- vertical-align: text-top;
- }
- .dialog-modal tr:hover {
- background: transparent !important;
- }
- .dialog-modal td {
- padding: 0 1em 0 0;
- }
- .dialog-modal h4 {
- margin-top: 0.3em;
- margin-bottom: 0.3em;
- }
- .dialog-modal h3 {
- margin-top: 0;
- }
- .btn-collapse {
- cursor: pointer;
- }
- .scrollx {
- overflow-x: auto;
- overflow-y: hidden;
- display: block;
- padding: 0;
- margin: 0;
- border: none;
- }
- /* -- tabs -- */
- .tabs .tabs > label {
- font-size: 90%;
- }
- .tabs {
- display: -webkit-box;
- display: -moz-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- flex-wrap: wrap;
- width: 100%;
- min-width: 100%;
- }
- .tabs > * {
- order: 2;
- }
- .tabs > input[type=radio] {
- display: none;
- }
- .tabs > label {
- order: 1;
- padding: 0.7em;
- margin: 0 0.7em;
- letter-spacing: 0.5px;
- text-transform: uppercase;
- border: solid var(--color-toolkit-tabs-label-border);
- border-width: 0 0 2px 0;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- cursor: pointer;
- }
- .tabs > label:hover {
- border-bottom: 2px solid var(--color-categories-item-border-selected);
- }
- .tabs > section {
- min-width: 100%;
- padding: 0.7rem 0;
- box-sizing: border-box;
- border-top: 1px solid var(--color-toolkit-tabs-section-border);
- display: none;
- }
- .tabs > label:last-of-type {
- border-bottom: 2px solid var(--color-categories-item-border-selected);
- background: var(--color-categories-item-selected);
- color: var(--color-categories-item-selected-font);
- letter-spacing: -0.1px;
- }
- .tabs > section:last-of-type {
- display: block;
- }
- html body .tabs > input:checked ~ section {
- display: none;
- }
- html body .tabs > input:checked ~ label {
- position: inherited;
- background: inherit;
- border-bottom: 2px solid transparent;
- font-weight: normal;
- color: inherit;
- }
- html body .tabs > input:checked ~ label:hover {
- border-bottom: 2px solid var(--color-categories-item-border-selected);
- }
- html body .tabs > input:checked + label {
- border-bottom: 2px solid var(--color-categories-item-border-selected);
- background: var(--color-categories-item-selected);
- color: var(--color-categories-item-selected-font);
- }
- html body .tabs > input:checked + label + section {
- display: block;
- }
- /* -- select -- */
- select {
- height: 2.4rem;
- margin: 0 1rem 0 0;
- padding: 0.2rem !important;
- color: var(--color-search-font);
- font-size: 0.9rem;
- z-index: 2;
- }
- select:hover,
- select:focus {
- cursor: pointer;
- }
- @supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {
- select {
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- border-width: 0 2rem 0 0;
- border-color: transparent;
- 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;
- background-position-x: calc(100% + 2rem);
- background-size: 2rem;
- background-origin: content-box;
- background-color: var(--color-toolkit-select-background);
- outline: medium none;
- text-overflow: ellipsis;
- border-radius: 5px;
- }
- select:hover,
- select:focus {
- background-color: var(--color-toolkit-select-background-hover);
- }
- select option {
- background-color: var(--color-base-background);
- }
- @media (prefers-color-scheme: dark) {
- html.theme-auto select,
- html.theme-dark select {
- 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");
- }
- }
- html.theme-dark select {
- 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");
- }
- }
- /* -- checkbox-onoff -- */
- @supports (border-radius: 50px) {
- .checkbox-onoff {
- display: inline-block;
- width: 40px;
- height: 10px;
- background: var(--color-toolkit-checkbox-onoff-background);
- margin: 8px 1rem;
- position: relative;
- border-radius: 50px;
- }
- .checkbox-onoff label {
- display: block;
- width: 20px;
- height: 20px;
- position: absolute;
- top: -5px;
- cursor: pointer;
- border-radius: 50px;
- transition: all 0.4s ease;
- left: 27px;
- background-color: var(--color-toolkit-checkbox-onoff-label-background);
- }
- .checkbox-onoff input[type=checkbox] {
- visibility: hidden;
- }
- .checkbox-onoff input[type=checkbox]:checked + label {
- left: -5px;
- background: var(--color-toolkit-checkbox-onoff-checked-background);
- }
- }
- /* -- checkbox -- */
- @supports (transform: rotate(-45deg)) {
- .checkbox {
- width: 20px;
- position: relative;
- margin: 20px auto;
- }
- .checkbox label {
- width: 20px;
- height: 20px;
- cursor: pointer;
- position: absolute;
- top: 0;
- left: 0;
- background: var(--color-toolkit-checkbox-label-background);
- border-radius: 10px;
- }
- .checkbox label::after {
- content: '';
- width: 9px;
- height: 5px;
- position: absolute;
- top: 4px;
- left: 4px;
- border: 3px solid var(--color-toolkit-checkbox-label-border);
- border-top: none;
- border-right: none;
- background: transparent;
- opacity: 0;
- transform: rotate(-45deg);
- }
- .checkbox input[type=checkbox] {
- visibility: hidden;
- }
- .checkbox input[type=checkbox]:checked + label::after {
- border-color: var(--color-toolkit-checkbox-input-border);
- opacity: 1;
- }
- .checkbox input[disabled] + label {
- background-color: transparent !important;
- cursor: inherit;
- }
- .checkbox input:not(:checked):not([readonly]):not([disabled]) + label:hover::after {
- opacity: 0.5;
- }
- }
- @media screen and (max-width: 50em) {
- .tabs > label {
- width: 100%;
- }
- }
- /* -- loader -- */
- .loader,
- .loader::after {
- border-radius: 50%;
- width: 2em;
- height: 2em;
- }
- .loader {
- margin: 1em auto;
- font-size: 10px;
- position: relative;
- text-indent: -9999em;
- border-top: 0.5em solid var(--color-toolkit-loader-border);
- border-right: 0.5em solid var(--color-toolkit-loader-border);
- border-bottom: 0.5em solid var(--color-toolkit-loader-border);
- border-left: 0.5em solid var(--color-toolkit-loader-borderleft);
- -webkit-transform: translateZ(0);
- -ms-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-animation: load8 1.2s infinite linear;
- animation: load8 1.2s infinite linear;
- }
- @-webkit-keyframes load8 {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes load8 {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- /* -- engine-tooltip -- */
- .engine-tooltip {
- display: none;
- position: absolute;
- padding: 0.5rem 1rem;
- margin: 0 0 0 2rem;
- border: 1px solid var(--color-toolkit-engine-tooltip-border);
- background: var(--color-toolkit-engine-tooltip-background);
- font-size: 14px;
- font-weight: normal;
- z-index: 1000000;
- text-align: left;
- border-radius: 10px;
- }
- th:hover .engine-tooltip,
- td:hover .engine-tooltip,
- .engine-tooltip:hover {
- display: inline-block;
- }
- /* -- stacked bar chart -- */
- .stacked-bar-chart {
- margin: 0;
- padding: 0 0.125rem 0 4rem;
- width: 100%;
- width: -moz-available;
- width: -webkit-fill-available;
- width: fill;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: center;
- display: inline-flex;
- }
- .stacked-bar-chart-value {
- width: 3rem;
- display: inline-block;
- position: absolute;
- padding: 0 0.5rem;
- text-align: right;
- }
- .stacked-bar-chart-base {
- display: flex;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: unset;
- }
- .stacked-bar-chart-median {
- display: flex;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: unset;
- background: var(--color-base-font);
- border: 1px solid rgba(var(--color-base-font-rgb), 0.9);
- padding: 0.3rem 0;
- }
- .stacked-bar-chart-rate80 {
- display: flex;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: unset;
- background: transparent;
- border: 1px solid rgba(var(--color-base-font-rgb), 0.3);
- padding: 0.3rem 0;
- }
- .stacked-bar-chart-rate95 {
- display: flex;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: unset;
- background: transparent;
- border-bottom: 1px dotted rgba(var(--color-base-font-rgb), 0.5);
- padding: 0;
- }
- .stacked-bar-chart-rate100 {
- display: flex;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: unset;
- background: transparent;
- border-left: 1px solid rgba(var(--color-base-font-rgb), 0.9);
- padding: 0.4rem 0;
- width: 1px;
- }
- /*! Autocomplete.js v2.6.3 | license MIT | (c) 2017, Baptiste Donaux | http://autocomplete-js.com */
- .autocomplete {
- position: absolute;
- max-height: 0;
- overflow-y: hidden;
- text-align: left;
- border-radius: 10px;
- }
- .autocomplete:active,
- .autocomplete:focus,
- .autocomplete:hover {
- background-color: var(--color-autocomplete-background);
- }
- .autocomplete:empty {
- display: none;
- }
- .autocomplete > ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- .autocomplete > ul > li {
- cursor: pointer;
- padding: 8px 0 8px 8px;
- }
- .autocomplete > ul > li.active,
- .autocomplete > ul > li:active,
- .autocomplete > ul > li:focus,
- .autocomplete > ul > li:hover {
- background-color: var(--color-autocomplete-background-hover);
- }
- .autocomplete > ul > li.active a:active,
- .autocomplete > ul > li:active a:active,
- .autocomplete > ul > li:focus a:active,
- .autocomplete > ul > li:hover a:active,
- .autocomplete > ul > li.active a:focus,
- .autocomplete > ul > li:active a:focus,
- .autocomplete > ul > li:focus a:focus,
- .autocomplete > ul > li:hover a:focus,
- .autocomplete > ul > li.active a:hover,
- .autocomplete > ul > li:active a:hover,
- .autocomplete > ul > li:focus a:hover,
- .autocomplete > ul > li:hover a:hover {
- text-decoration: none;
- }
- .autocomplete > ul > li.locked {
- cursor: inherit;
- }
- .autocomplete.open {
- display: block;
- background-color: var(--color-autocomplete-background);
- color: var(--color-autocomplete-font);
- border: 1px solid var(--color-autocomplete-border);
- max-height: 500px;
- overflow-y: auto;
- z-index: 100;
- }
- .autocomplete.open:empty {
- display: none;
- }
- @media screen and (max-width: 50em) {
- .autocomplete {
- bottom: 0;
- }
- .autocomplete > ul > li {
- border-bottom: 1px solid var(--color-result-top-border);
- text-align: left;
- }
- }
- #main_results #results.image-detail-open.only_template_images {
- width: min(98%, 59.25rem) !important;
- }
- #main_results #results.only_template_images.image-detail-open #backToTop {
- left: 56.75rem !important;
- right: inherit;
- }
- article.result-images .detail {
- display: none;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail {
- display: flex;
- flex-direction: column;
- position: fixed;
- left: 60rem;
- right: 0;
- top: 7.75rem;
- transition: top 0.064s ease-in 0s;
- bottom: 0;
- background: var(--color-result-detail-background);
- border: 1px solid var(--color-result-detail-background);
- z-index: 10000;
- padding: 4rem 3rem 3rem 3rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source {
- display: block;
- flex: 1;
- text-align: left;
- width: 100%;
- border: none;
- text-decoration: none;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img {
- padding: 0;
- margin: 0;
- border: none;
- object-fit: contain;
- width: inherit;
- max-width: 100%;
- min-height: inherit;
- max-height: calc(100vh - 25rem - 7rem);
- background: inherit;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels {
- color: var(--color-result-detail-font);
- max-height: 16rem;
- min-height: 16rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels hr {
- border-top: 1px solid var(--color-result-detail-hr);
- border-bottom: none;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4 {
- height: 2rem;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 0.9rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p {
- color: var(--color-result-detail-label-font);
- font-size: 0.9rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span {
- display: inline-block;
- width: 12rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels h4,
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p,
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a {
- text-align: left;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content {
- height: 2rem;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url {
- white-space: nowrap;
- overflow-x: hidden;
- text-overflow: ellipsis;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-content:hover,
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p.result-url:hover {
- position: relative;
- overflow: inherit !important;
- background: var(--color-result-detail-background);
- text-overflow: inherit !important;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a,
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:visited,
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover,
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:active {
- color: var(--color-result-detail-link);
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels a:hover {
- text-decoration: underline;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close {
- top: 1rem;
- left: 1rem;
- padding: 0.4rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous {
- top: 1rem;
- right: 6rem;
- padding: 0.4rem 0.5rem 0.4rem 0.3rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next {
- top: 1rem;
- right: 2rem;
- padding: 0.4rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous {
- border-radius: 50%;
- display: block;
- width: 1.5rem;
- height: 1.5rem;
- position: absolute;
- filter: opacity(40%);
- z-index: 2000002;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close span,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span {
- display: block;
- width: 1.5rem;
- height: 1.5rem;
- text-align: center;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next span::before,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous span::before {
- vertical-align: sub;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:visited,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:active,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:visited,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:active,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:visited,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:active {
- color: var(--color-result-detail-font);
- background: var(--color-result-detail-background);
- border: 1px solid var(--color-result-detail-font);
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:focus,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-close:hover,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:focus,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-previous:hover,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:focus,
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next:hover {
- filter: opacity(80%);
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .loader {
- position: absolute;
- top: 1rem;
- right: 50%;
- border-top: 0.5em solid var(--color-result-detail-loader-border);
- border-right: 0.5em solid var(--color-result-detail-loader-border);
- border-bottom: 0.5em solid var(--color-result-detail-loader-border);
- border-left: 0.5em solid var(--color-result-detail-loader-borderleft);
- }
- #results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail {
- top: 0;
- }
- #results.image-detail-open.scrolling article.result-images[data-vim-selected] .detail a.result-images-source img {
- max-height: calc(100vh - 25rem);
- }
- @media screen and (max-width: 80em) {
- #results.image-detail-open article.result-images[data-vim-selected] .detail {
- top: 0;
- left: 0;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img {
- width: 100%;
- max-height: calc(100vh - 24rem);
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-detail-next {
- right: 1rem;
- }
- }
- @media screen and (max-width: 50em) {
- #results.image-detail-open article.result-images[data-vim-selected] .detail {
- top: 0;
- left: 0;
- padding: 1rem;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail a.result-images-source img {
- width: 100%;
- max-height: calc(100vh - 20rem);
- margin: 0;
- }
- #results.image-detail-open article.result-images[data-vim-selected] .detail .result-images-labels p span {
- width: inherit;
- margin-right: 1rem;
- }
- }
- .dialog-modal {
- animation-name: dialogmodal;
- animation-duration: 0.13s;
- }
- @keyframes dialogmodal {
- 0% {
- opacity: 0;
- }
- 50% {
- opacity: 0.5;
- transform: translate(-50%, -50%) scale(1.05);
- }
- }
- #main_index {
- margin-top: 26vh;
- }
- #main_index #linkto_preferences {
- right: 1.8rem;
- }
- .index {
- text-align: center;
- }
- .index .title {
- background: url('../img/searxng.png') no-repeat;
- min-height: 4rem;
- margin: 4rem auto;
- background-position: center;
- background-size: contain;
- }
- .index h1 {
- font-size: 4em;
- visibility: hidden;
- }
- .index #search,
- .index #search_header {
- margin: 0 auto;
- background: inherit;
- border: inherit;
- padding: 0;
- display: block;
- }
- .index .search_filters {
- display: block;
- margin: 1em 0;
- }
- .index .category label {
- padding: 6px 10px;
- border-bottom: initial !important;
- }
- @media screen and (max-width: 80em) {
- div.title h1 {
- font-size: 1em;
- }
- #main_index {
- margin-top: 6em;
- }
- }
- @media screen and (max-width: 50em) {
- #main_index {
- margin-top: 0;
- }
- }
- #tab-contentquery table td,
- #tab-contentquery table th {
- text-align: left !important;
- height: 3rem;
- }
- #main_preferences form {
- width: 100%;
- }
- #main_preferences fieldset {
- margin: 8px;
- border: none;
- }
- #main_preferences legend {
- margin: 0;
- padding: 5px 0 0 0;
- display: block;
- float: left;
- width: 300px;
- }
- #main_preferences .value {
- margin: 0;
- padding: 0;
- float: left;
- width: 15em;
- }
- #main_preferences .value select,
- #main_preferences .value input[type="text"] {
- font-size: inherit !important;
- margin: 0 1rem 0 0;
- }
- #main_preferences .value select {
- width: 14rem;
- }
- #main_preferences .value input[type="text"] {
- width: 13.25rem;
- color: var(--color-toolkit-input-text-font);
- border: none;
- background: none repeat scroll 0 0 var(--color-toolkit-select-background);
- padding: 0.2rem 0.4rem;
- height: 2rem;
- border-radius: 5px;
- }
- #main_preferences .value input[type="text"]:hover,
- #main_preferences .value input[type="text"]:focus {
- background-color: var(--color-toolkit-select-background-hover);
- }
- #main_preferences .value select:focus,
- #main_preferences .value input:focus {
- outline: none;
- box-shadow: 0 0 1px 1px var(--color-btn-background);
- }
- #main_preferences .description {
- margin: 0;
- padding: 5px 0 0 0;
- float: left;
- width: 50%;
- color: var(--color-settings-engine-description-font);
- font-size: 90%;
- }
- #main_preferences table {
- border-collapse: collapse;
- }
- #main_preferences table td {
- text-align: center;
- }
- #main_preferences table.cookies {
- width: 100%;
- }
- #main_preferences table.cookies th,
- #main_preferences table.cookies td {
- text-align: left;
- font-family: monospace;
- font-size: 1rem;
- padding: 0.5em;
- vertical-align: top;
- }
- #main_preferences table.cookies td:first-child {
- word-break: keep-all;
- width: 14rem;
- padding-right: 1rem;
- }
- #main_preferences table.cookies td:last-child {
- word-break: break-all;
- }
- #main_preferences table.cookies > tbody > tr:nth-child(even) > th,
- #main_preferences table.cookies > tbody > tr:nth-child(even) > td {
- background-color: var(--color-settings-tr-hover);
- }
- #main_preferences .category {
- margin-right: 0.5rem;
- }
- #main_preferences .category label {
- border: 2px solid transparent;
- padding: 0.2rem 0.4rem;
- border-radius: 5px;
- }
- #main_preferences .category input[type="checkbox"]:checked + label {
- border: 2px solid var(--color-categories-item-border-selected);
- }
- #main_preferences .name,
- #main_preferences .shortcut {
- text-align: left;
- }
- #main_preferences .preferences_back {
- background: none repeat scroll 0 0 var(--color-btn-background);
- color: var(--color-btn-font);
- border: 0 none;
- border-radius: 10px;
- cursor: pointer;
- display: inline-block;
- margin: 2px 4px;
- padding: 0.7em;
- }
- #main_preferences .preferences_back a {
- color: var(--color-settings-return-font);
- }
- #main_preferences .preferences_back a::first-letter {
- text-transform: uppercase;
- }
- #main_preferences div.selectable_url pre {
- width: 100%;
- }
- #main_preferences th.name .engine-tooltip {
- margin-top: 1.8rem;
- left: calc((100% - 85em) / 2 + 10em);
- max-width: 40rem;
- }
- #main_preferences th.name .engine-tooltip .engine-description {
- margin-top: 0.5rem;
- }
- @media screen and (max-width: 80em) {
- .preferences_back {
- clear: both;
- }
- .engine-tooltip {
- left: 10em !important;
- }
- }
- /*
- * SearXNG, A privacy-respecting, hackable metasearch engine
- */
- #search {
- padding: 0;
- margin: 0;
- }
- #search_header {
- padding: 1.5em 2em 0 7rem;
- margin: 0;
- background: var(--color-header-background);
- border-bottom: 1px solid var(--color-header-border);
- display: grid;
- column-gap: 1.2rem;
- row-gap: 1rem;
- grid-template-columns: 3rem 1fr;
- grid-template-areas: "logo search" "spacer categories";
- }
- .category {
- display: inline-block;
- position: relative;
- margin-right: 1rem;
- padding: 0;
- }
- .category input {
- display: none;
- }
- .category label {
- cursor: pointer;
- padding: 0.2rem 0;
- display: inline-flex;
- text-transform: capitalize;
- font-size: 0.9em;
- border-bottom: 2px solid transparent;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .category label svg {
- padding-right: 0.2rem;
- }
- .category label div.category_name {
- margin: auto 0;
- }
- .category input[type="checkbox"]:checked + label {
- color: var(--color-categories-item-selected-font);
- border-bottom: 2px solid var(--color-categories-item-border-selected);
- }
- #search_logo {
- grid-area: logo;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- #search_logo svg {
- flex: 1;
- width: 30px;
- height: 30px;
- margin: 0.5rem 0 auto 0;
- }
- .search_categories {
- grid-area: categories;
- }
- .search_box {
- margin: 0;
- padding: 0;
- grid-area: search;
- display: inline-flex;
- flex-direction: row;
- white-space: nowrap;
- }
- #clear_search {
- display: block;
- border-collapse: separate;
- box-sizing: border-box;
- width: 1.8em;
- margin: 0;
- padding: 8px 2px;
- background: none repeat scroll 0 0 var(--color-search-background);
- border-top: 1px solid var(--color-search-border);
- border-bottom: 1px solid var(--color-search-border);
- border-right: none;
- border-left: none;
- border-radius: 0;
- outline: none;
- color: var(--color-search-font);
- font-size: 16px;
- z-index: 10000;
- }
- #clear_search:hover {
- color: var(--color-search-background-hover);
- }
- #clear_search.empty * {
- display: none;
- }
- #q,
- #send_search {
- display: block !important;
- border-collapse: separate;
- box-sizing: border-box;
- margin: 0;
- padding: 10px;
- background: none repeat scroll 0 0 var(--color-search-background);
- border: 1px solid var(--color-search-border);
- border-radius: 0;
- outline: none;
- color: var(--color-search-font);
- font-size: 16px;
- z-index: 2;
- }
- #q {
- outline: medium none;
- padding-left: 12px;
- padding-right: 0 !important;
- border-right: none;
- width: 40rem;
- border-radius: 10px 0 0 10px;
- }
- #q::-ms-clear,
- #q::-webkit-search-cancel-button {
- display: none;
- }
- #send_search {
- border-left: none;
- border-radius: 0 10px 10px 0;
- }
- #send_search:hover {
- cursor: pointer;
- background-color: var(--color-search-background-hover);
- color: var(--color-search-background);
- }
- .no-js #clear_search,
- .no-js #send_search {
- width: auto !important;
- border-left: 1px solid var(--color-search-border);
- padding: 10px;
- }
- .search_filters {
- margin: 0.6rem 0 0 10.6rem;
- }
- .search_filters select {
- background-color: inherit;
- }
- .search_filters select:hover,
- .search_filters select:focus {
- color: var(--color-base-font);
- }
- @media screen and (max-width: 80em) {
- #search_header {
- padding: 1.5em 0.5rem 0 0.5rem;
- column-gap: 0.5rem;
- }
- .search_filters {
- margin: 0.6rem 0 0 3.5rem;
- }
- #categories {
- font-size: 90%;
- clear: both;
- }
- #categories .checkbox_container {
- margin: auto;
- margin-top: 2px;
- }
- html.touch #main_index #categories_container,
- html.touch #main_results #categories_container {
- width: 1000px;
- width: -moz-max-content;
- width: -webkit-max-content;
- width: max-content;
- }
- html.touch #main_index #categories_container .category,
- html.touch #main_results #categories_container .category {
- display: inline-block;
- width: auto;
- }
- html.touch #main_index #categories,
- html.touch #main_results #categories {
- width: 100%;
- text-align: left;
- overflow-x: scroll;
- overflow-y: hidden;
- -webkit-overflow-scrolling: touch;
- }
- }
- @media screen and (max-width: 50em) {
- #search_header {
- width: 100%;
- margin: 0;
- padding: 0.1rem 0 0 0;
- column-gap: 0;
- row-gap: 0;
- grid-template-areas: "logo search" "categories categories";
- }
- .search_logo {
- padding: 0;
- }
- .search_box {
- width: 99%;
- display: flex;
- flex-direction: row;
- }
- #q {
- width: 100%;
- flex: 1;
- }
- #main_results #q:placeholder-shown ~ #send_search {
- margin-right: 2.6rem;
- transition: margin-right 0.1s;
- }
- .search_filters {
- margin: 0;
- }
- .language,
- .time_range {
- width: 45%;
- }
- .category {
- display: block;
- width: 100%;
- margin: 0;
- }
- .category label {
- padding: 0.8rem !important;
- margin: 0 !important;
- }
- .category label svg {
- display: none;
- }
- }
- @media screen and (max-width: 20rem) {
- #search_header {
- grid-template-areas: "search search" "categories categories";
- }
- #search_logo {
- display: none;
- }
- }
- #categories {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- #categories::-webkit-scrollbar {
- width: 0;
- height: 0;
- }
- #categories_container {
- position: relative;
- }
- .ion-icon {
- display: inline-block;
- vertical-align: bottom;
- line-height: 1;
- text-decoration: inherit;
- }
- .ion-icon-small {
- width: 1rem;
- height: 1rem;
- display: inline-block;
- vertical-align: bottom;
- line-height: 1;
- text-decoration: inherit;
- }
- .ion-icon-big {
- width: 1.5rem;
- height: 1.5rem;
- display: inline-block;
- vertical-align: bottom;
- line-height: 1;
- text-decoration: inherit;
- }
- html {
- font-family: sans-serif;
- font-size: 0.9em;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- -moz-text-size-adjust: 100%;
- text-size-adjust: 100%;
- color: var(--color-base-font);
- background-color: var(--color-base-background);
- padding: 0;
- margin: 0;
- }
- body,
- main {
- padding: 0;
- margin: 0;
- }
- body {
- display: flex;
- flex-direction: column;
- height: 100vh;
- margin: 0;
- }
- main {
- width: 100%;
- margin-bottom: 2rem;
- flex: 1;
- }
- #main_preferences,
- #main_about,
- #main_stats {
- margin: 2em auto;
- width: 85em;
- }
- footer {
- clear: both;
- min-height: 4rem;
- padding: 1rem 0;
- width: 100%;
- text-align: center;
- background-color: var(--color-footer-background);
- border-top: 1px solid var(--color-footer-border);
- overflow: hidden;
- }
- footer p {
- font-size: 0.9em;
- }
- #main_preferences h1,
- #main_stats h1 {
- background: url('../img/searxng.png') no-repeat;
- background-size: contain;
- min-height: 40px;
- margin: 0 auto;
- }
- #main_preferences h1 span,
- #main_stats h1 span {
- visibility: hidden;
- }
- input[type="submit"],
- #results button[type="submit"] {
- padding: 0.7rem;
- display: inline-block;
- background: var(--color-btn-background);
- color: var(--color-btn-font);
- border-radius: 10px;
- border: 0;
- cursor: pointer;
- }
- a {
- text-decoration: none;
- color: var(--color-url-font);
- }
- a:visited {
- color: var(--color-url-visited-font);
- }
- a:visited .highlight {
- color: var(--color-url-visited-font);
- }
- article[data-vim-selected] {
- background: var(--color-result-vim-selected);
- border-left: 0.2rem solid var(--color-result-vim-arrow);
- border-radius: 0 10px 10px 0;
- }
- article.result-images[data-vim-selected] {
- background: var(--color-result-vim-arrow);
- border: none;
- border-radius: 10px;
- }
- article.result-images[data-vim-selected] .image_thumbnail {
- filter: opacity(60%);
- }
- article[data-vim-selected].category-videos,
- article[data-vim-selected].category-news,
- article[data-vim-selected].category-map,
- article[data-vim-selected].category-music,
- article[data-vim-selected].category-files,
- article[data-vim-selected].category-social {
- border: 1px solid var(--color-result-vim-arrow);
- border-radius: 10px;
- }
- .result {
- margin: 0.125rem 0;
- padding: 1rem;
- border-left: 0.2rem solid transparent;
- }
- .result h3 {
- font-size: 1.2rem;
- word-wrap: break-word;
- margin: 0.4rem 0 0.4rem 0;
- padding: 0;
- }
- .result h3 a {
- color: var(--color-result-link-font);
- font-weight: normal;
- font-size: 1.1em;
- }
- .result h3 a:visited {
- color: var(--color-result-link-visited-font);
- }
- .result h3 a:focus,
- .result h3 a:hover {
- text-decoration: underline;
- border: none;
- outline: none;
- }
- .result .cache_link,
- .result .proxyfied_link {
- font-size: 0.9em !important;
- }
- .result .content,
- .result .stat,
- .result .altlink {
- font-size: 0.9em;
- margin: 0;
- padding: 0;
- max-width: 54em;
- word-wrap: break-word;
- line-height: 1.24;
- }
- .result .content .highlight,
- .result .stat .highlight,
- .result .altlink .highlight {
- color: var(--color-result-description-highlight-font);
- background: inherit;
- font-weight: bold;
- }
- .result .codelines .highlight {
- color: inherit;
- background: inherit;
- font-weight: normal;
- }
- .result .url_wrapper {
- display: flex;
- font-size: 1rem;
- color: var(--color-result-url-font);
- flex-wrap: nowrap;
- overflow: hidden;
- flex-direction: row;
- margin: 0;
- padding: 0;
- }
- .result .url_wrapper .url_o1 {
- white-space: nowrap;
- flex-shrink: 1;
- }
- .result .url_wrapper .url_o1::after {
- content: " ";
- width: 1ch;
- display: inline-block;
- }
- .result .url_wrapper .url_o2 {
- overflow: hidden;
- white-space: nowrap;
- flex-basis: content;
- flex-grow: 0;
- flex-shrink: 1;
- text-align: right;
- }
- .result .url_wrapper .url_o2 .url_i2 {
- float: right;
- }
- .result .published_date {
- font-size: 0.8em;
- color: var(--color-result-publishdate-font);
- }
- .result img.thumbnail {
- float: left;
- padding: 0.6rem 1rem 0 0;
- width: 20rem;
- }
- .result img.image {
- float: left;
- padding: 0.6rem 1rem 0 0;
- width: 7rem;
- max-height: 7rem;
- object-fit: scale-down;
- object-position: right top;
- }
- .result .break {
- clear: both;
- }
- .category-videos,
- .category-news,
- .category-map,
- .category-music,
- .category-files,
- .category-social {
- border: 1px solid var(--color-result-border);
- margin: 1rem 0;
- border-radius: 10px;
- }
- .category-social .image {
- width: auto !important;
- min-width: 48px;
- min-height: 48px;
- padding: 0 5px 25px 0 !important;
- }
- .result-videos .content {
- overflow: hidden;
- }
- .engines {
- float: right;
- color: var(--color-result-engines-font);
- }
- .engines span {
- font-size: smaller;
- margin: 0 0.5em 0 0;
- }
- .small_font {
- font-size: 0.8em;
- }
- .highlight {
- color: var(--color-result-link-font-highlight);
- background: inherit;
- }
- .empty_element {
- font-style: italic;
- }
- .result-images {
- display: inline-block;
- margin: 0;
- padding: 0;
- position: relative;
- max-height: 200px;
- border: none !important;
- }
- .result-images img {
- float: inherit;
- margin: 0.125rem;
- padding: 0;
- border: none;
- max-height: 200px;
- background: var(--color-result-image-background);
- }
- .result-images span.title {
- display: none;
- color: var(--color-result-image-span-font);
- }
- .result-images:hover span.title {
- display: block;
- position: absolute;
- bottom: 0;
- right: 0;
- padding: 4px;
- margin: 0 0 4px 4px;
- background-color: var(--color-result-image-span-background-hover);
- font-size: 0.7em;
- }
- .result-map img.image {
- float: right !important;
- height: 100px !important;
- width: auto !important;
- }
- .result-map table {
- font-size: 0.9em;
- width: auto;
- border-collapse: separate;
- border-spacing: 0 0.35rem;
- }
- .result-map table th {
- font-weight: inherit;
- width: 17rem;
- vertical-align: top;
- text-align: left;
- }
- .result-map table td {
- vertical-align: top;
- text-align: left;
- }
- .hidden {
- display: none !important;
- }
- #results {
- margin: 1rem 2rem 0 10rem;
- display: grid;
- grid-template-columns: 45rem 25rem;
- grid-template-rows: min-content min-content 1fr min-content;
- gap: 0 5rem;
- grid-template-areas: "corrections sidebar" "answers sidebar" "urls sidebar" "pagination sidebar";
- }
- #results #sidebar *:first-child,
- #results #urls *:first-child {
- margin-top: 0;
- }
- #urls {
- padding: 0;
- grid-area: urls;
- }
- #suggestions .wrapper {
- display: flex;
- flex-flow: row wrap;
- justify-content: flex-end;
- }
- #suggestions .wrapper form {
- display: inline-block;
- flex: 1 1 50%;
- }
- #suggestions input,
- #infoboxes input {
- padding: 0;
- margin: 3px;
- font-size: 0.9em;
- display: inline-block;
- background: transparent;
- color: var(--color-result-search-url-font);
- cursor: pointer;
- }
- #suggestions input[type="submit"],
- #infoboxes input[type="submit"],
- #suggestions .infobox .url a,
- #infoboxes .infobox .url a {
- color: var(--color-result-link-font);
- text-decoration: none;
- font-size: 0.9rem;
- }
- #suggestions input[type="submit"]:hover,
- #infoboxes input[type="submit"]:hover,
- #suggestions .infobox .url a:hover,
- #infoboxes .infobox .url a:hover {
- text-decoration: underline;
- }
- #corrections {
- grid-area: corrections;
- display: flex;
- flex-flow: row wrap;
- margin: 0 0 1em 0;
- }
- #corrections h4,
- #corrections input[type="submit"] {
- display: inline-block;
- padding: 0.5rem;
- margin: 0.5rem;
- }
- #corrections input[type="submit"] {
- font-size: 0.8rem;
- border-radius: 5px;
- }
- #suggestions .title,
- #search_url .title,
- #apis .title {
- margin: 2em 0 0.5em 0;
- color: var(--color-base-font);
- }
- #answers {
- grid-area: answers;
- border: 1px solid var(--color-answer-border);
- background: var(--color-answer-background);
- padding: 1rem;
- margin: 1rem 0;
- margin-top: 0;
- color: var(--color-answer-font);
- border-radius: 10px;
- }
- #answers h4 {
- display: none;
- }
- #infoboxes form {
- min-width: 210px;
- }
- #sidebar {
- grid-area: sidebar;
- word-wrap: break-word;
- color: var(--color-sidebar-font);
- }
- #sidebar .infobox {
- margin: 10px 0 10px;
- border: 1px solid var(--color-sidebar-border);
- padding: 1rem;
- font-size: 0.9em;
- border-radius: 10px;
- }
- #sidebar .infobox h2 {
- margin: 0 0 0.5em 0;
- }
- #sidebar .infobox img {
- max-width: 100%;
- max-height: 12em;
- display: block;
- margin: 0 auto;
- padding: 0;
- }
- #sidebar .infobox dl {
- margin: 0.5em 0;
- }
- #sidebar .infobox dt {
- display: inline;
- margin: 0.5em 0.25em 0.5em 0;
- padding: 0;
- font-weight: bold;
- }
- #sidebar .infobox dd {
- display: inline;
- margin: 0.5em 0;
- padding: 0;
- }
- #sidebar .infobox input {
- font-size: 1em;
- }
- #sidebar .infobox br {
- clear: both;
- }
- #sidebar .infobox .attributes,
- #sidebar .infobox .urls {
- clear: both;
- }
- #search_url {
- margin-top: 8px;
- }
- #search_url div.selectable_url pre {
- width: 200em;
- }
- #linkto_preferences {
- position: absolute;
- right: 10px;
- top: 2.2rem;
- padding: 0;
- border: 0;
- display: block;
- font-size: 1.2em;
- color: var(--color-search-font);
- }
- #linkto_preferences a:link *,
- #linkto_preferences a:hover *,
- #linkto_preferences a:visited *,
- #linkto_preferences a:active * {
- color: var(--color-search-font);
- }
- #pagination {
- grid-area: pagination;
- }
- #pagination br {
- clear: both;
- }
- #apis {
- margin-top: 8px;
- clear: both;
- }
- #backToTop {
- border: 1px solid var(--color-backtotop-border);
- margin: 0;
- padding: 0;
- font-size: 1em;
- background: var(--color-backtotop-background);
- position: fixed;
- bottom: 8rem;
- left: 56.3rem;
- transition: opacity 0.5s;
- opacity: 0;
- border-radius: 10px;
- }
- #backToTop a {
- display: block;
- margin: 0;
- padding: 0.7em;
- }
- #backToTop a,
- #backToTop a:visited,
- #backToTop a:hover,
- #backToTop a:active {
- color: var(--color-backtotop-font);
- }
- #results.scrolling #backToTop {
- opacity: 1;
- }
- @media screen and (max-width: 80em) {
- #main_preferences,
- #main_about,
- #main_stats {
- margin: 2rem 0.5rem;
- width: auto;
- }
- #infoboxes {
- position: inherit;
- max-width: inherit;
- }
- #infoboxes .infobox {
- clear: both;
- }
- #infoboxes .infobox img {
- float: left;
- max-width: 10em;
- margin: 0.5em 0.5em 0.5em 0;
- }
- #sidebar {
- margin-bottom: 0.125rem;
- padding: 0;
- float: none;
- border: none;
- width: auto;
- }
- #sidebar input {
- border: 0;
- }
- #apis {
- display: none;
- }
- #search_url {
- display: none;
- }
- .result .thumbnail {
- max-width: 98%;
- }
- .result .url span.url {
- display: block;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- width: 100%;
- }
- .result .engines {
- float: right;
- padding: 0 0 3px 0;
- }
- .result-images {
- border-bottom: none !important;
- }
- .image_result {
- max-width: 98%;
- }
- .image_result img {
- max-width: 98%;
- }
- #backToTop {
- display: none;
- }
- #pagination {
- margin: 2rem 0 0 0 !important;
- }
- #main_results div#results {
- margin: 1rem auto 0 auto;
- justify-content: center;
- display: grid;
- grid-template-columns: 45rem;
- grid-template-rows: min-content min-content min-content 1fr min-content min-content;
- gap: 0;
- grid-template-areas: "corrections" "answers" "sidebar" "urls" "pagination";
- }
- }
- #main_results div#results.only_template_images {
- margin: 1rem 0.5rem 0 0.5rem;
- display: grid;
- grid-template-columns: 100%;
- grid-template-rows: min-content min-content 1fr min-content min-content;
- gap: 0;
- grid-template-areas: "corrections" "urls" "answers" "sidebar" "pagination";
- }
- #main_results div#results.only_template_images #urls {
- width: inherit;
- margin: 0;
- }
- #main_results div#results.only_template_images #backToTop {
- left: auto;
- right: 1rem;
- }
- #main_results div#results.only_template_images #pagination {
- margin-right: 4rem;
- }
- @media screen and (max-width: 50em) {
- #main_results div#results {
- grid-template-columns: 100%;
- margin: 2rem 0.5rem 0 0.5rem;
- }
- #linkto_preferences {
- top: 0.8rem;
- right: 0.7rem;
- }
- #main_index #linkto_preferences {
- top: 0.5rem;
- right: 0.5rem;
- }
- #results {
- margin: 0;
- padding: 0;
- }
- #pagination {
- margin: 2rem 1rem 0 1rem !important;
- }
- article[data-vim-selected] {
- border: 1px solid var(--color-result-vim-arrow);
- border-radius: 10px;
- }
- .result {
- border: 1px solid var(--color-result-border);
- margin: 1rem 0;
- border-radius: 10px;
- }
- .result-images {
- margin: 0;
- padding: 0;
- border: none;
- }
- }
- @media screen and (max-width: 35em) {
- .result-videos img.thumbnail {
- float: none !important;
- }
- .result-videos .content {
- overflow: inherit;
- }
- }
- pre code {
- white-space: pre-wrap;
- }
- #search_submit {
- left: 1px;
- right: auto;
- }
|