searx-rtl.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049
  1. /*! searx | 06-08-2017 | https://github.com/asciimoo/searx */
  2. /*
  3. * searx, A privacy-respecting, hackable metasearch engine
  4. *
  5. * To convert "style.less" to "style.css" run: $make styles
  6. */
  7. /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
  8. /* Document
  9. ========================================================================== */
  10. /**
  11. * 1. Correct the line height in all browsers.
  12. * 2. Prevent adjustments of font size after orientation changes in
  13. * IE on Windows Phone and in iOS.
  14. */
  15. html {
  16. line-height: 1.15;
  17. /* 1 */
  18. -ms-text-size-adjust: 100%;
  19. /* 2 */
  20. -webkit-text-size-adjust: 100%;
  21. /* 2 */
  22. }
  23. /* Sections
  24. ========================================================================== */
  25. /**
  26. * Remove the margin in all browsers (opinionated).
  27. */
  28. body {
  29. margin: 0;
  30. }
  31. /**
  32. * Add the correct display in IE 9-.
  33. */
  34. article,
  35. aside,
  36. footer,
  37. header,
  38. nav,
  39. section {
  40. display: block;
  41. }
  42. /**
  43. * Correct the font size and margin on `h1` elements within `section` and
  44. * `article` contexts in Chrome, Firefox, and Safari.
  45. */
  46. h1 {
  47. font-size: 2em;
  48. margin: 0.67em 0;
  49. }
  50. /* Grouping content
  51. ========================================================================== */
  52. /**
  53. * Add the correct display in IE 9-.
  54. * 1. Add the correct display in IE.
  55. */
  56. figcaption,
  57. figure,
  58. main {
  59. /* 1 */
  60. display: block;
  61. }
  62. /**
  63. * Add the correct margin in IE 8.
  64. */
  65. figure {
  66. margin: 1em 40px;
  67. }
  68. /**
  69. * 1. Add the correct box sizing in Firefox.
  70. * 2. Show the overflow in Edge and IE.
  71. */
  72. hr {
  73. box-sizing: content-box;
  74. /* 1 */
  75. height: 0;
  76. /* 1 */
  77. overflow: visible;
  78. /* 2 */
  79. }
  80. /**
  81. * 1. Correct the inheritance and scaling of font size in all browsers.
  82. * 2. Correct the odd `em` font sizing in all browsers.
  83. */
  84. pre {
  85. font-family: monospace, monospace;
  86. /* 1 */
  87. font-size: 1em;
  88. /* 2 */
  89. }
  90. /* Text-level semantics
  91. ========================================================================== */
  92. /**
  93. * 1. Remove the gray background on active links in IE 10.
  94. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  95. */
  96. a {
  97. background-color: transparent;
  98. /* 1 */
  99. -webkit-text-decoration-skip: objects;
  100. /* 2 */
  101. }
  102. /**
  103. * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
  104. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  105. */
  106. abbr[title] {
  107. border-bottom: none;
  108. /* 1 */
  109. text-decoration: underline;
  110. /* 2 */
  111. text-decoration: underline dotted;
  112. /* 2 */
  113. }
  114. /**
  115. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  116. */
  117. b,
  118. strong {
  119. font-weight: inherit;
  120. }
  121. /**
  122. * Add the correct font weight in Chrome, Edge, and Safari.
  123. */
  124. b,
  125. strong {
  126. font-weight: bolder;
  127. }
  128. /**
  129. * 1. Correct the inheritance and scaling of font size in all browsers.
  130. * 2. Correct the odd `em` font sizing in all browsers.
  131. */
  132. code,
  133. kbd,
  134. samp {
  135. font-family: monospace, monospace;
  136. /* 1 */
  137. font-size: 1em;
  138. /* 2 */
  139. }
  140. /**
  141. * Add the correct font style in Android 4.3-.
  142. */
  143. dfn {
  144. font-style: italic;
  145. }
  146. /**
  147. * Add the correct background and color in IE 9-.
  148. */
  149. mark {
  150. background-color: #ff0;
  151. color: #000;
  152. }
  153. /**
  154. * Add the correct font size in all browsers.
  155. */
  156. small {
  157. font-size: 80%;
  158. }
  159. /**
  160. * Prevent `sub` and `sup` elements from affecting the line height in
  161. * all browsers.
  162. */
  163. sub,
  164. sup {
  165. font-size: 75%;
  166. line-height: 0;
  167. position: relative;
  168. vertical-align: baseline;
  169. }
  170. sub {
  171. bottom: -0.25em;
  172. }
  173. sup {
  174. top: -0.5em;
  175. }
  176. /* Embedded content
  177. ========================================================================== */
  178. /**
  179. * Add the correct display in IE 9-.
  180. */
  181. audio,
  182. video {
  183. display: inline-block;
  184. }
  185. /**
  186. * Add the correct display in iOS 4-7.
  187. */
  188. audio:not([controls]) {
  189. display: none;
  190. height: 0;
  191. }
  192. /**
  193. * Remove the border on images inside links in IE 10-.
  194. */
  195. img {
  196. border-style: none;
  197. }
  198. /**
  199. * Hide the overflow in IE.
  200. */
  201. svg:not(:root) {
  202. overflow: hidden;
  203. }
  204. /* Forms
  205. ========================================================================== */
  206. /**
  207. * 1. Change the font styles in all browsers (opinionated).
  208. * 2. Remove the margin in Firefox and Safari.
  209. */
  210. button,
  211. input,
  212. optgroup,
  213. select,
  214. textarea {
  215. font-family: sans-serif;
  216. /* 1 */
  217. font-size: 100%;
  218. /* 1 */
  219. line-height: 1.15;
  220. /* 1 */
  221. margin: 0;
  222. /* 2 */
  223. }
  224. /**
  225. * Show the overflow in IE.
  226. * 1. Show the overflow in Edge.
  227. */
  228. button,
  229. input {
  230. /* 1 */
  231. overflow: visible;
  232. }
  233. /**
  234. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  235. * 1. Remove the inheritance of text transform in Firefox.
  236. */
  237. button,
  238. select {
  239. /* 1 */
  240. text-transform: none;
  241. }
  242. /**
  243. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  244. * controls in Android 4.
  245. * 2. Correct the inability to style clickable types in iOS and Safari.
  246. */
  247. button,
  248. html [type="button"],
  249. [type="reset"],
  250. [type="submit"] {
  251. -webkit-appearance: button;
  252. /* 2 */
  253. }
  254. /**
  255. * Remove the inner border and padding in Firefox.
  256. */
  257. button::-moz-focus-inner,
  258. [type="button"]::-moz-focus-inner,
  259. [type="reset"]::-moz-focus-inner,
  260. [type="submit"]::-moz-focus-inner {
  261. border-style: none;
  262. padding: 0;
  263. }
  264. /**
  265. * Restore the focus styles unset by the previous rule.
  266. */
  267. button:-moz-focusring,
  268. [type="button"]:-moz-focusring,
  269. [type="reset"]:-moz-focusring,
  270. [type="submit"]:-moz-focusring {
  271. outline: 1px dotted ButtonText;
  272. }
  273. /**
  274. * Correct the padding in Firefox.
  275. */
  276. fieldset {
  277. padding: 0.35em 0.75em 0.625em;
  278. }
  279. /**
  280. * 1. Correct the text wrapping in Edge and IE.
  281. * 2. Correct the color inheritance from `fieldset` elements in IE.
  282. * 3. Remove the padding so developers are not caught out when they zero out
  283. * `fieldset` elements in all browsers.
  284. */
  285. legend {
  286. box-sizing: border-box;
  287. /* 1 */
  288. color: inherit;
  289. /* 2 */
  290. display: table;
  291. /* 1 */
  292. max-width: 100%;
  293. /* 1 */
  294. padding: 0;
  295. /* 3 */
  296. white-space: normal;
  297. /* 1 */
  298. }
  299. /**
  300. * 1. Add the correct display in IE 9-.
  301. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  302. */
  303. progress {
  304. display: inline-block;
  305. /* 1 */
  306. vertical-align: baseline;
  307. /* 2 */
  308. }
  309. /**
  310. * Remove the default vertical scrollbar in IE.
  311. */
  312. textarea {
  313. overflow: auto;
  314. }
  315. /**
  316. * 1. Add the correct box sizing in IE 10-.
  317. * 2. Remove the padding in IE 10-.
  318. */
  319. [type="checkbox"],
  320. [type="radio"] {
  321. box-sizing: border-box;
  322. /* 1 */
  323. padding: 0;
  324. /* 2 */
  325. }
  326. /**
  327. * Correct the cursor style of increment and decrement buttons in Chrome.
  328. */
  329. [type="number"]::-webkit-inner-spin-button,
  330. [type="number"]::-webkit-outer-spin-button {
  331. height: auto;
  332. }
  333. /**
  334. * 1. Correct the odd appearance in Chrome and Safari.
  335. * 2. Correct the outline style in Safari.
  336. */
  337. [type="search"] {
  338. -webkit-appearance: textfield;
  339. /* 1 */
  340. outline-offset: -2px;
  341. /* 2 */
  342. }
  343. /**
  344. * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
  345. */
  346. [type="search"]::-webkit-search-cancel-button,
  347. [type="search"]::-webkit-search-decoration {
  348. -webkit-appearance: none;
  349. }
  350. /**
  351. * 1. Correct the inability to style clickable types in iOS and Safari.
  352. * 2. Change font properties to `inherit` in Safari.
  353. */
  354. ::-webkit-file-upload-button {
  355. -webkit-appearance: button;
  356. /* 1 */
  357. font: inherit;
  358. /* 2 */
  359. }
  360. /* Interactive
  361. ========================================================================== */
  362. /*
  363. * Add the correct display in IE 9-.
  364. * 1. Add the correct display in Edge, IE, and Firefox.
  365. */
  366. details,
  367. menu {
  368. display: block;
  369. }
  370. /*
  371. * Add the correct display in all browsers.
  372. */
  373. summary {
  374. display: list-item;
  375. }
  376. /* Scripting
  377. ========================================================================== */
  378. /**
  379. * Add the correct display in IE 9-.
  380. */
  381. canvas {
  382. display: inline-block;
  383. }
  384. /**
  385. * Add the correct display in IE.
  386. */
  387. template {
  388. display: none;
  389. }
  390. /* Hidden
  391. ========================================================================== */
  392. /**
  393. * Add the correct display in IE 10-.
  394. */
  395. [hidden] {
  396. display: none;
  397. }
  398. /*
  399. * searx, A privacy-respecting, hackable metasearch engine
  400. *
  401. * To change the colors of the site, simple edit this variables
  402. */
  403. /*
  404. * searx, A privacy-respecting, hackable metasearch engine
  405. */
  406. .highlight .hll {
  407. background-color: #ffffcc;
  408. }
  409. .highlight {
  410. background: #f8f8f8;
  411. }
  412. .highlight .c {
  413. color: #408080;
  414. font-style: italic;
  415. }
  416. /* Comment */
  417. .highlight .err {
  418. border: 1px solid #FF0000;
  419. }
  420. /* Error */
  421. .highlight .k {
  422. color: #008000;
  423. font-weight: bold;
  424. }
  425. /* Keyword */
  426. .highlight .o {
  427. color: #666666;
  428. }
  429. /* Operator */
  430. .highlight .cm {
  431. color: #408080;
  432. font-style: italic;
  433. }
  434. /* Comment.Multiline */
  435. .highlight .cp {
  436. color: #BC7A00;
  437. }
  438. /* Comment.Preproc */
  439. .highlight .c1 {
  440. color: #408080;
  441. font-style: italic;
  442. }
  443. /* Comment.Single */
  444. .highlight .cs {
  445. color: #408080;
  446. font-style: italic;
  447. }
  448. /* Comment.Special */
  449. .highlight .gd {
  450. color: #A00000;
  451. }
  452. /* Generic.Deleted */
  453. .highlight .ge {
  454. font-style: italic;
  455. }
  456. /* Generic.Emph */
  457. .highlight .gr {
  458. color: #FF0000;
  459. }
  460. /* Generic.Error */
  461. .highlight .gh {
  462. color: #000080;
  463. font-weight: bold;
  464. }
  465. /* Generic.Heading */
  466. .highlight .gi {
  467. color: #00A000;
  468. }
  469. /* Generic.Inserted */
  470. .highlight .go {
  471. color: #888888;
  472. }
  473. /* Generic.Output */
  474. .highlight .gp {
  475. color: #000080;
  476. font-weight: bold;
  477. }
  478. /* Generic.Prompt */
  479. .highlight .gs {
  480. font-weight: bold;
  481. }
  482. /* Generic.Strong */
  483. .highlight .gu {
  484. color: #800080;
  485. font-weight: bold;
  486. }
  487. /* Generic.Subheading */
  488. .highlight .gt {
  489. color: #0044DD;
  490. }
  491. /* Generic.Traceback */
  492. .highlight .kc {
  493. color: #008000;
  494. font-weight: bold;
  495. }
  496. /* Keyword.Constant */
  497. .highlight .kd {
  498. color: #008000;
  499. font-weight: bold;
  500. }
  501. /* Keyword.Declaration */
  502. .highlight .kn {
  503. color: #008000;
  504. font-weight: bold;
  505. }
  506. /* Keyword.Namespace */
  507. .highlight .kp {
  508. color: #008000;
  509. }
  510. /* Keyword.Pseudo */
  511. .highlight .kr {
  512. color: #008000;
  513. font-weight: bold;
  514. }
  515. /* Keyword.Reserved */
  516. .highlight .kt {
  517. color: #B00040;
  518. }
  519. /* Keyword.Type */
  520. .highlight .m {
  521. color: #666666;
  522. }
  523. /* Literal.Number */
  524. .highlight .s {
  525. color: #BA2121;
  526. }
  527. /* Literal.String */
  528. .highlight .na {
  529. color: #7D9029;
  530. }
  531. /* Name.Attribute */
  532. .highlight .nb {
  533. color: #008000;
  534. }
  535. /* Name.Builtin */
  536. .highlight .nc {
  537. color: #0000FF;
  538. font-weight: bold;
  539. }
  540. /* Name.Class */
  541. .highlight .no {
  542. color: #880000;
  543. }
  544. /* Name.Constant */
  545. .highlight .nd {
  546. color: #AA22FF;
  547. }
  548. /* Name.Decorator */
  549. .highlight .ni {
  550. color: #999999;
  551. font-weight: bold;
  552. }
  553. /* Name.Entity */
  554. .highlight .ne {
  555. color: #D2413A;
  556. font-weight: bold;
  557. }
  558. /* Name.Exception */
  559. .highlight .nf {
  560. color: #0000FF;
  561. }
  562. /* Name.Function */
  563. .highlight .nl {
  564. color: #A0A000;
  565. }
  566. /* Name.Label */
  567. .highlight .nn {
  568. color: #0000FF;
  569. font-weight: bold;
  570. }
  571. /* Name.Namespace */
  572. .highlight .nt {
  573. color: #008000;
  574. font-weight: bold;
  575. }
  576. /* Name.Tag */
  577. .highlight .nv {
  578. color: #19177C;
  579. }
  580. /* Name.Variable */
  581. .highlight .ow {
  582. color: #AA22FF;
  583. font-weight: bold;
  584. }
  585. /* Operator.Word */
  586. .highlight .w {
  587. color: #bbbbbb;
  588. }
  589. /* Text.Whitespace */
  590. .highlight .mf {
  591. color: #666666;
  592. }
  593. /* Literal.Number.Float */
  594. .highlight .mh {
  595. color: #666666;
  596. }
  597. /* Literal.Number.Hex */
  598. .highlight .mi {
  599. color: #666666;
  600. }
  601. /* Literal.Number.Integer */
  602. .highlight .mo {
  603. color: #666666;
  604. }
  605. /* Literal.Number.Oct */
  606. .highlight .sb {
  607. color: #BA2121;
  608. }
  609. /* Literal.String.Backtick */
  610. .highlight .sc {
  611. color: #BA2121;
  612. }
  613. /* Literal.String.Char */
  614. .highlight .sd {
  615. color: #BA2121;
  616. font-style: italic;
  617. }
  618. /* Literal.String.Doc */
  619. .highlight .s2 {
  620. color: #BA2121;
  621. }
  622. /* Literal.String.Double */
  623. .highlight .se {
  624. color: #BB6622;
  625. font-weight: bold;
  626. }
  627. /* Literal.String.Escape */
  628. .highlight .sh {
  629. color: #BA2121;
  630. }
  631. /* Literal.String.Heredoc */
  632. .highlight .si {
  633. color: #BB6688;
  634. font-weight: bold;
  635. }
  636. /* Literal.String.Interpol */
  637. .highlight .sx {
  638. color: #008000;
  639. }
  640. /* Literal.String.Other */
  641. .highlight .sr {
  642. color: #BB6688;
  643. }
  644. /* Literal.String.Regex */
  645. .highlight .s1 {
  646. color: #BA2121;
  647. }
  648. /* Literal.String.Single */
  649. .highlight .ss {
  650. color: #19177C;
  651. }
  652. /* Literal.String.Symbol */
  653. .highlight .bp {
  654. color: #008000;
  655. }
  656. /* Name.Builtin.Pseudo */
  657. .highlight .vc {
  658. color: #19177C;
  659. }
  660. /* Name.Variable.Class */
  661. .highlight .vg {
  662. color: #19177C;
  663. }
  664. /* Name.Variable.Global */
  665. .highlight .vi {
  666. color: #19177C;
  667. }
  668. /* Name.Variable.Instance */
  669. .highlight .il {
  670. color: #666666;
  671. }
  672. /* Literal.Number.Integer.Long */
  673. .highlight pre {
  674. overflow: auto;
  675. }
  676. .highlight .lineno {
  677. -webkit-touch-callout: none;
  678. -webkit-user-select: none;
  679. -khtml-user-select: none;
  680. -moz-user-select: none;
  681. -ms-user-select: none;
  682. user-select: none;
  683. cursor: default;
  684. }
  685. .highlight .lineno::selection {
  686. background: transparent;
  687. /* WebKit/Blink Browsers */
  688. }
  689. .highlight .lineno::-moz-selection {
  690. background: transparent;
  691. /* Gecko Browsers */
  692. }
  693. html.no-js .hide_if_nojs {
  694. display: none;
  695. }
  696. html.js .show_if_nojs {
  697. display: none;
  698. }
  699. .center {
  700. text-align: center;
  701. }
  702. .right {
  703. float: right ;
  704. }
  705. .left {
  706. float: left;
  707. }
  708. .invisible {
  709. display: none;
  710. }
  711. .danger {
  712. background-color: #fae1e1;
  713. }
  714. .badge {
  715. display: inline-block;
  716. color: #fff;
  717. background-color: #777;
  718. text-align: center;
  719. white-space: nowrap;
  720. vertical-align: baseline;
  721. min-width: 10px;
  722. padding: 1px 5px;
  723. border-radius: 5px;
  724. }
  725. table {
  726. width: 100%;
  727. }
  728. table.striped tr {
  729. border-bottom: 1px solid #ececec;
  730. }
  731. th {
  732. padding: 0.4em;
  733. }
  734. td {
  735. padding: 0 4px;
  736. }
  737. tr:hover {
  738. background: #ececec;
  739. }
  740. .dialog-error {
  741. position: relative;
  742. width: 70%;
  743. padding: 1em 1em 1em 2.7em;
  744. margin: 0em 8% 1em 8%;
  745. border: 1px solid black;
  746. border-radius: 4px;
  747. text-align: left;
  748. color: #db3434;
  749. background: #fae1e1;
  750. border-color: #db3434;
  751. }
  752. .dialog-error:before {
  753. position: absolute;
  754. top: 0.5em;
  755. left: 0.5em;
  756. font-family: "ion";
  757. font-size: 1.5em;
  758. }
  759. .dialog-error .close {
  760. float: right;
  761. position: relative;
  762. top: -3px;
  763. color: inherit;
  764. font-size: 1.5em;
  765. }
  766. .dialog-error ul,
  767. .dialog-error ol,
  768. .dialog-error p {
  769. margin: 1px 0 0 0;
  770. }
  771. .dialog-error:before {
  772. content: "\f110";
  773. }
  774. .dialog-warning {
  775. position: relative;
  776. width: 70%;
  777. padding: 1em 1em 1em 2.7em;
  778. margin: 0em 8% 1em 8%;
  779. border: 1px solid black;
  780. border-radius: 4px;
  781. text-align: left;
  782. color: #dbba34;
  783. background: #faf5e1;
  784. border-color: #dbba34;
  785. }
  786. .dialog-warning:before {
  787. position: absolute;
  788. top: 0.5em;
  789. left: 0.5em;
  790. font-family: "ion";
  791. font-size: 1.5em;
  792. }
  793. .dialog-warning .close {
  794. float: right;
  795. position: relative;
  796. top: -3px;
  797. color: inherit;
  798. font-size: 1.5em;
  799. }
  800. .dialog-warning ul,
  801. .dialog-warning ol,
  802. .dialog-warning p {
  803. margin: 1px 0 0 0;
  804. }
  805. .dialog-warning:before {
  806. content: "\f10f";
  807. }
  808. .btn-collapse {
  809. cursor: pointer;
  810. }
  811. .scrollx {
  812. overflow-x: auto;
  813. overflow-y: hidden;
  814. display: block;
  815. padding: 0;
  816. margin: 0;
  817. border: none;
  818. }
  819. .tabs .tabs > label {
  820. font-size: 90%;
  821. }
  822. .tabs {
  823. display: -webkit-box;
  824. display: -moz-box;
  825. display: -webkit-flex;
  826. display: -ms-flexbox;
  827. display: flex;
  828. flex-wrap: wrap;
  829. width: 100%;
  830. min-width: 100%;
  831. }
  832. .tabs > * {
  833. order: 2;
  834. }
  835. .tabs > input[type=radio] {
  836. display: none;
  837. }
  838. .tabs > label {
  839. order: 1;
  840. padding: 0.7em;
  841. margin: 0 0.7em;
  842. letter-spacing: 0.5px;
  843. text-transform: uppercase;
  844. border: solid white;
  845. border-width: 0px 0px 2px 0;
  846. -webkit-touch-callout: none;
  847. -webkit-user-select: none;
  848. -khtml-user-select: none;
  849. -moz-user-select: none;
  850. -ms-user-select: none;
  851. user-select: none;
  852. cursor: pointer;
  853. }
  854. .tabs > label:hover {
  855. border-bottom: 2px solid #084999;
  856. }
  857. .tabs > section {
  858. min-width: 100%;
  859. padding: 0.7rem 0;
  860. box-sizing: border-box;
  861. border-top: 1px solid black;
  862. display: none;
  863. }
  864. .tabs > label:last-of-type {
  865. border-bottom: 2px solid #084999;
  866. background: #3498DB;
  867. color: #FFF;
  868. font-weight: bold;
  869. letter-spacing: -0.1px;
  870. }
  871. .tabs > section:last-of-type {
  872. display: block;
  873. }
  874. html body .tabs > input:checked ~ section {
  875. display: none;
  876. }
  877. html body .tabs > input:checked ~ label {
  878. position: inherited;
  879. background: inherit;
  880. border-bottom: 2px solid transparent;
  881. font-weight: normal;
  882. color: inherit;
  883. }
  884. html body .tabs > input:checked ~ label:hover {
  885. border-bottom: 2px solid #084999;
  886. }
  887. html body .tabs > input:checked + label {
  888. border-bottom: 2px solid #084999;
  889. background: #3498DB;
  890. color: #FFF;
  891. font-weight: bold;
  892. letter-spacing: -0.1px;
  893. }
  894. html body .tabs > input:checked + label + section {
  895. display: block;
  896. }
  897. select {
  898. height: 28px;
  899. margin: 0 1em 0 0;
  900. padding: 2px 8px 2px 0 !important;
  901. color: #222;
  902. font-size: 12px;
  903. z-index: 2;
  904. }
  905. select:hover,
  906. select:focus {
  907. cursor: pointer;
  908. }
  909. @supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {
  910. select {
  911. appearance: none;
  912. -webkit-appearance: none;
  913. -moz-appearance: none;
  914. border: none;
  915. border-bottom: 1px solid #d7d7d7;
  916. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI1MTJweCIgaGVpZ2h0PSI1MTJweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwb2x5Z29uIHBvaW50cz0iMTI4LDE5MiAyNTYsMzIwIDM4NCwxOTIiLz48L2c+PC9zdmc+Cg==) no-repeat;
  917. background-position-x: 105%;
  918. background-size: 2em;
  919. background-origin: content-box;
  920. outline: medium none;
  921. }
  922. select:hover,
  923. select:focus {
  924. border-bottom: 1px solid #3498DB;
  925. }
  926. }
  927. @supports (border-radius: 50px) {
  928. .checkbox-onoff {
  929. display: inline-block;
  930. width: 40px;
  931. height: 10px;
  932. background: #dcdcdc;
  933. margin: 8px auto;
  934. position: relative;
  935. border-radius: 50px;
  936. }
  937. .checkbox-onoff label {
  938. display: block;
  939. width: 20px;
  940. height: 20px;
  941. position: absolute;
  942. top: -5px;
  943. cursor: pointer;
  944. border-radius: 50px;
  945. box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
  946. transition: all 0.4s ease;
  947. left: 27px;
  948. background-color: #3498DB;
  949. }
  950. .checkbox-onoff input[type=checkbox] {
  951. visibility: hidden;
  952. }
  953. .checkbox-onoff input[type=checkbox]:checked + label {
  954. left: -5px;
  955. background: #dcdcdc;
  956. }
  957. }
  958. @supports (transform: rotate(-45deg)) {
  959. .checkbox {
  960. width: 20px;
  961. position: relative;
  962. margin: 20px auto;
  963. }
  964. .checkbox label {
  965. width: 20px;
  966. height: 20px;
  967. cursor: pointer;
  968. position: absolute;
  969. top: 0;
  970. left: 0;
  971. background: white;
  972. border-radius: 4px;
  973. box-shadow: inset 0px 1px 1px white, 0px 1px 4px rgba(0, 0, 0, 0.5);
  974. }
  975. .checkbox label:after {
  976. content: '';
  977. width: 9px;
  978. height: 5px;
  979. position: absolute;
  980. top: 4px;
  981. left: 4px;
  982. border: 3px solid #333;
  983. border-top: none;
  984. border-right: none;
  985. background: transparent;
  986. opacity: 0;
  987. transform: rotate(-45deg);
  988. }
  989. .checkbox input[type=checkbox] {
  990. visibility: hidden;
  991. }
  992. .checkbox input[type=checkbox]:checked + label:after {
  993. border-color: #3498DB;
  994. opacity: 1;
  995. }
  996. .checkbox input[disabled] + label {
  997. background-color: transparent !important;
  998. box-shadow: none !important;
  999. cursor: inherit;
  1000. }
  1001. .checkbox input:not(:checked):not([readonly]):not([disabled]) + label:hover::after {
  1002. opacity: 0.5;
  1003. }
  1004. }
  1005. @media screen and (max-width: 50em) {
  1006. .tabs > label {
  1007. width: 100%;
  1008. }
  1009. }
  1010. .autocomplete {
  1011. position: absolute;
  1012. max-height: 0;
  1013. overflow-y: hidden;
  1014. text-align: left;
  1015. }
  1016. .autocomplete:active,
  1017. .autocomplete:focus,
  1018. .autocomplete:hover {
  1019. background-color: white;
  1020. }
  1021. .autocomplete:empty {
  1022. display: none;
  1023. }
  1024. .autocomplete > ul {
  1025. list-style-type: none;
  1026. margin: 0;
  1027. padding: 0;
  1028. }
  1029. .autocomplete > ul > li {
  1030. cursor: pointer;
  1031. padding: 5px 0 5px 10px;
  1032. }
  1033. .autocomplete > ul > li.active,
  1034. .autocomplete > ul > li:active,
  1035. .autocomplete > ul > li:focus {
  1036. background-color: #3498DB;
  1037. }
  1038. .autocomplete > ul > li.active a:active,
  1039. .autocomplete > ul > li:active a:active,
  1040. .autocomplete > ul > li:focus a:active,
  1041. .autocomplete > ul > li.active a:focus,
  1042. .autocomplete > ul > li:active a:focus,
  1043. .autocomplete > ul > li:focus a:focus,
  1044. .autocomplete > ul > li.active a:hover,
  1045. .autocomplete > ul > li:active a:hover,
  1046. .autocomplete > ul > li:focus a:hover {
  1047. text-decoration: none;
  1048. }
  1049. .autocomplete > ul > li.locked {
  1050. cursor: inherit;
  1051. }
  1052. .autocomplete.open {
  1053. display: block;
  1054. background-color: white;
  1055. border: 1px solid #3498DB;
  1056. max-height: 500px;
  1057. overflow-y: auto;
  1058. z-index: 100;
  1059. }
  1060. .autocomplete.open:empty {
  1061. display: none;
  1062. }
  1063. @media screen and (max-width: 50em) {
  1064. .autocomplete {
  1065. bottom: 0;
  1066. }
  1067. .autocomplete > ul > li {
  1068. padding: 7px 0 7px 10px;
  1069. border-bottom: 1px solid #E8E7E6;
  1070. text-align: left;
  1071. }
  1072. }
  1073. @font-face {
  1074. font-family: "ion";
  1075. src: url("../fonts/ion.eot?94af7082ea096aefe3a7b6642834716e");
  1076. src: url("../fonts/ion.eot?#iefix") format("embedded-opentype"), url("../fonts/ion.woff2?94af7082ea096aefe3a7b6642834716e") format("woff2"), url("../fonts/ion.woff?94af7082ea096aefe3a7b6642834716e") format("woff"), url("../fonts/ion.ttf?94af7082ea096aefe3a7b6642834716e") format("truetype"), url("../fonts/ion.svg?94af7082ea096aefe3a7b6642834716e#ion") format("svg");
  1077. font-weight: normal;
  1078. font-style: normal;
  1079. }
  1080. .ion-icon {
  1081. display: inline-block;
  1082. vertical-align: middle;
  1083. line-height: 1;
  1084. font-weight: normal;
  1085. font-style: normal;
  1086. speak: none;
  1087. text-decoration: inherit;
  1088. text-transform: none;
  1089. text-rendering: auto;
  1090. -webkit-font-smoothing: antialiased;
  1091. -moz-osx-font-smoothing: grayscale;
  1092. }
  1093. .ion-icon:before {
  1094. font-family: "ion";
  1095. }
  1096. .ion-navicon-round:before {
  1097. content: "\f101";
  1098. }
  1099. .ion-search:before {
  1100. content: "\f102";
  1101. }
  1102. .ion-play:before {
  1103. content: "\f103";
  1104. }
  1105. .ion-link:before {
  1106. content: "\f104";
  1107. }
  1108. .ion-chevron-up:before {
  1109. content: "\f105";
  1110. }
  1111. .ion-chevron-left:before {
  1112. content: "\f106";
  1113. }
  1114. .ion-chevron-right:before {
  1115. content: "\f107";
  1116. }
  1117. .ion-arrow-down-a:before {
  1118. content: "\f108";
  1119. }
  1120. .ion-arrow-up-a:before {
  1121. content: "\f109";
  1122. }
  1123. .ion-arrow-swap:before {
  1124. content: "\f10a";
  1125. }
  1126. .ion-arrow-dropdown:before {
  1127. content: "\f10b";
  1128. }
  1129. .ion-globe:before {
  1130. content: "\f10c";
  1131. }
  1132. .ion-time:before {
  1133. content: "\f10d";
  1134. }
  1135. .ion-location:before {
  1136. content: "\f10e";
  1137. }
  1138. .ion-warning:before {
  1139. content: "\f10f";
  1140. }
  1141. .ion-error:before {
  1142. content: "\f110";
  1143. }
  1144. .ion-film-outline:before {
  1145. content: "\f111";
  1146. }
  1147. .ion-music-note:before {
  1148. content: "\f112";
  1149. }
  1150. .ion-more-vertical:before {
  1151. content: "\f113";
  1152. }
  1153. .ion-magnet:before {
  1154. content: "\f114";
  1155. }
  1156. .ion-icon-big {
  1157. display: inline-block;
  1158. vertical-align: middle;
  1159. line-height: 1;
  1160. font-weight: normal;
  1161. font-style: normal;
  1162. speak: none;
  1163. text-decoration: inherit;
  1164. text-transform: none;
  1165. text-rendering: auto;
  1166. -webkit-font-smoothing: antialiased;
  1167. -moz-osx-font-smoothing: grayscale;
  1168. font-size: 149%;
  1169. }
  1170. .ion-icon-big:before {
  1171. font-family: "ion";
  1172. }
  1173. .index {
  1174. text-align: center;
  1175. }
  1176. .index .title {
  1177. background: url('../img/searx.png') no-repeat;
  1178. width: 100%;
  1179. min-height: 80px;
  1180. background-position: center;
  1181. }
  1182. .index h1 {
  1183. font-size: 5em;
  1184. visibility: hidden;
  1185. }
  1186. .index #search {
  1187. margin: 0 auto;
  1188. background: inherit;
  1189. border: inherit;
  1190. }
  1191. .index .search_filters {
  1192. display: block;
  1193. margin: 1em 0;
  1194. }
  1195. .index .category label {
  1196. padding: 6px 10px;
  1197. border-bottom: initial !important;
  1198. }
  1199. @media screen and (max-width: 75em) {
  1200. div.title h1 {
  1201. font-size: 1em;
  1202. }
  1203. }
  1204. #main_preferences form {
  1205. width: 100%;
  1206. }
  1207. #main_preferences fieldset {
  1208. margin: 8px;
  1209. border: none;
  1210. }
  1211. #main_preferences legend {
  1212. margin: 0;
  1213. padding: 5px 0 0 0;
  1214. display: block;
  1215. float: left;
  1216. width: 300px;
  1217. }
  1218. #main_preferences .value {
  1219. margin: 0;
  1220. padding: 0;
  1221. float: left;
  1222. width: 15em;
  1223. }
  1224. #main_preferences .description {
  1225. margin: 0;
  1226. padding: 5px 0 0 0;
  1227. float: left;
  1228. width: 50%;
  1229. color: #909090;
  1230. font-size: 90%;
  1231. }
  1232. #main_preferences select {
  1233. width: 200px;
  1234. font-size: inherit !important;
  1235. }
  1236. #main_preferences table {
  1237. border-collapse: collapse;
  1238. }
  1239. #main_preferences table td {
  1240. text-align: center;
  1241. }
  1242. #main_preferences .name,
  1243. #main_preferences .shortcut {
  1244. text-align: left;
  1245. }
  1246. #main_preferences .preferences_back {
  1247. background: none repeat scroll 0 0 #3498DB;
  1248. color: white;
  1249. border: 0 none;
  1250. -webkit-border-radius: 4px;
  1251. -moz-border-radius: 4px;
  1252. border-radius: 4px;
  1253. cursor: pointer;
  1254. display: inline-block;
  1255. margin: 2px 4px;
  1256. padding: 0.5em;
  1257. }
  1258. #main_preferences .preferences_back a {
  1259. display: block;
  1260. color: #FFF;
  1261. }
  1262. #main_preferences .preferences_back a::first-letter {
  1263. text-transform: uppercase;
  1264. }
  1265. @media screen and (max-width: 75em) {
  1266. .preferences_back {
  1267. clear: both;
  1268. }
  1269. }
  1270. /*
  1271. * searx, A privacy-respecting, hackable metasearch engine
  1272. */
  1273. #search {
  1274. padding: 0 2em;
  1275. margin: 0;
  1276. background: #f7f7f7;
  1277. border-bottom: 1px solid #d7d7d7;
  1278. }
  1279. #search_wrapper {
  1280. padding: 10px 0;
  1281. }
  1282. .search_box {
  1283. margin: 0 12px 0 0;
  1284. display: inline-flex;
  1285. flex-direction: row;
  1286. white-space: nowrap;
  1287. /*
  1288. &:has(q:focus) {
  1289. box-shadow: 0px 0px 5px #CCC;
  1290. }
  1291. */
  1292. }
  1293. #q,
  1294. #send_search {
  1295. display: block !important;
  1296. border-collapse: separate;
  1297. box-sizing: border-box;
  1298. position: relative;
  1299. margin: 0;
  1300. padding: 2px;
  1301. height: 2.2em;
  1302. background: none repeat scroll 0 0 #FFF;
  1303. border: 1px solid #3498DB;
  1304. border-radius: 0px;
  1305. outline: none;
  1306. color: #222;
  1307. font-size: 16px;
  1308. z-index: 2;
  1309. }
  1310. #q {
  1311. outline: medium none;
  1312. padding-left: 8px;
  1313. padding-right: 0px !important;
  1314. border-right: none;
  1315. width: 40em;
  1316. }
  1317. #send_search {
  1318. border-left: none;
  1319. width: 2.2em;
  1320. }
  1321. #send_search:hover {
  1322. cursor: pointer;
  1323. background-color: #3498DB;
  1324. color: #ECF0F1;
  1325. }
  1326. .no-js #send_search {
  1327. width: auto !important;
  1328. }
  1329. .search_filters {
  1330. display: inline-block;
  1331. vertical-align: middle;
  1332. }
  1333. @media screen and (max-width: 75em) {
  1334. #categories {
  1335. font-size: 90%;
  1336. clear: both;
  1337. }
  1338. #categories .checkbox_container {
  1339. margin-top: 2px;
  1340. margin: auto;
  1341. }
  1342. html.touch #main_index #categories_container,
  1343. html.touch #main_results #categories_container {
  1344. width: 1000px;
  1345. width: -moz-max-content;
  1346. width: -webkit-max-content;
  1347. width: max-content;
  1348. }
  1349. html.touch #main_index #categories_container .category,
  1350. html.touch #main_results #categories_container .category {
  1351. display: inline-block;
  1352. width: auto;
  1353. }
  1354. html.touch #main_index #categories,
  1355. html.touch #main_results #categories {
  1356. width: 100%;
  1357. margin: 0;
  1358. text-align: left;
  1359. overflow-x: scroll;
  1360. overflow-y: hidden;
  1361. -webkit-overflow-scrolling: touch;
  1362. }
  1363. }
  1364. @media screen and (max-width: 50em) {
  1365. #search {
  1366. width: 100%;
  1367. margin: 0;
  1368. padding: 0.1em 0 0 0;
  1369. }
  1370. #search_wrapper {
  1371. width: 100%;
  1372. margin: 0 0 0.7em 0;
  1373. padding: 0;
  1374. }
  1375. .search_box {
  1376. width: 99%;
  1377. margin: 0.1em;
  1378. padding: 0 0.1em 0 0;
  1379. display: flex;
  1380. flex-direction: row;
  1381. }
  1382. #q {
  1383. width: auto !important;
  1384. flex: 1;
  1385. }
  1386. .search_filters {
  1387. display: block;
  1388. margin: 0.5em;
  1389. }
  1390. .language,
  1391. .time_range {
  1392. width: 45%;
  1393. }
  1394. .category {
  1395. display: block;
  1396. width: 90%;
  1397. }
  1398. .category label {
  1399. border-bottom: 0;
  1400. }
  1401. }
  1402. #categories {
  1403. margin: 0 10px 0 0;
  1404. -webkit-touch-callout: none;
  1405. -webkit-user-select: none;
  1406. -khtml-user-select: none;
  1407. -moz-user-select: none;
  1408. -ms-user-select: none;
  1409. user-select: none;
  1410. }
  1411. #categories::-webkit-scrollbar {
  1412. width: 0;
  1413. height: 0;
  1414. }
  1415. .category {
  1416. display: inline-block;
  1417. position: relative;
  1418. margin: 0 3px;
  1419. padding: 0px;
  1420. /*label:hover {
  1421. border-bottom: 2px solid @color-categories-item-border-unselected-hover;
  1422. }*/
  1423. }
  1424. .category input {
  1425. display: none;
  1426. }
  1427. .category label {
  1428. cursor: pointer;
  1429. padding: 4px 10px;
  1430. margin: 0;
  1431. display: block;
  1432. text-transform: capitalize;
  1433. font-size: 0.9em;
  1434. border-bottom: 2px solid transparent;
  1435. -webkit-touch-callout: none;
  1436. -webkit-user-select: none;
  1437. -khtml-user-select: none;
  1438. -moz-user-select: none;
  1439. -ms-user-select: none;
  1440. user-select: none;
  1441. }
  1442. .category input[type="checkbox"]:focus + label {
  1443. box-shadow: 0px 0px 8px #3498DB;
  1444. }
  1445. .category input[type="checkbox"]:checked + label {
  1446. background: #3498DB;
  1447. color: #FFF;
  1448. border-bottom: 2px solid #084999;
  1449. }
  1450. #categories_container {
  1451. position: relative;
  1452. }
  1453. #categories_container .help {
  1454. position: absolute;
  1455. width: 100%;
  1456. bottom: -20px;
  1457. overflow: hidden;
  1458. opacity: 0;
  1459. transition: opacity 1s ease;
  1460. font-size: 0.8em;
  1461. text-position: center;
  1462. background: white;
  1463. }
  1464. #categories_container:hover .help {
  1465. opacity: 0.8;
  1466. transition: opacity 1s ease;
  1467. }
  1468. html {
  1469. font-family: arial, sans-serif;
  1470. font-size: 0.9em;
  1471. -webkit-text-size-adjust: 100%;
  1472. -ms-text-size-adjust: 100%;
  1473. -moz-text-size-adjust: 100%;
  1474. text-size-adjust: 100%;
  1475. color: #444;
  1476. padding: 0;
  1477. margin: 0;
  1478. }
  1479. body,
  1480. main {
  1481. padding: 0;
  1482. margin: 0;
  1483. }
  1484. main {
  1485. width: 100%;
  1486. }
  1487. footer {
  1488. bottom: 0;
  1489. width: 100%;
  1490. height: 50px;
  1491. }
  1492. #main_preferences,
  1493. #main_about,
  1494. #main_stats {
  1495. margin: 3em;
  1496. width: auto;
  1497. }
  1498. footer {
  1499. bottom: 0;
  1500. height: 3em;
  1501. margin: 1em 0;
  1502. padding: 1em 0;
  1503. clear: both;
  1504. width: 100%;
  1505. text-align: center;
  1506. }
  1507. footer p {
  1508. font-size: 0.9em;
  1509. }
  1510. #main_preferences h1,
  1511. #main_stats h1 {
  1512. background: url('../img/searx.png') no-repeat;
  1513. background-size: auto 75%;
  1514. min-height: 40px;
  1515. margin: 0 auto;
  1516. }
  1517. #main_preferences h1 span,
  1518. #main_stats h1 span {
  1519. visibility: hidden;
  1520. }
  1521. input[type="submit"],
  1522. #results button[type="submit"] {
  1523. padding: 0.5rem;
  1524. margin: 2px 4px;
  1525. display: inline-block;
  1526. background: #3498DB;
  1527. color: #FFF;
  1528. -webkit-border-radius: 4px;
  1529. -moz-border-radius: 4px;
  1530. border-radius: 4px;
  1531. border: 0;
  1532. cursor: pointer;
  1533. }
  1534. a {
  1535. text-decoration: none;
  1536. color: #29314d;
  1537. }
  1538. a:visited {
  1539. color: #684898;
  1540. }
  1541. a:visited .highlight {
  1542. color: #684898;
  1543. }
  1544. article[data-vim-selected] {
  1545. background: #f7f7f7;
  1546. }
  1547. article[data-vim-selected]::before {
  1548. position: absolute;
  1549. left: 1em;
  1550. padding: 2px;
  1551. content: ">";
  1552. font-weight: bold;
  1553. color: #3498DB;
  1554. }
  1555. article.result-images[data-vim-selected] {
  1556. background: #3498DB;
  1557. }
  1558. article.result-images[data-vim-selected]::before {
  1559. display: none;
  1560. content: "";
  1561. }
  1562. .result {
  1563. margin: 19px 0 18px 0;
  1564. padding: 0;
  1565. }
  1566. .result h3 {
  1567. font-size: 1.1em;
  1568. word-wrap: break-word;
  1569. margin: 5px 0 1px 0;
  1570. padding: 0;
  1571. margin-bottom: 0;
  1572. }
  1573. .result h3 a {
  1574. color: #084999;
  1575. font-weight: normal;
  1576. font-size: 1.1em;
  1577. }
  1578. .result h3 a:visited {
  1579. color: #684898;
  1580. }
  1581. .result h3 a:focus,
  1582. .result h3 a:hover {
  1583. text-decoration: underline;
  1584. border: none;
  1585. -webkit-box-shadow: none;
  1586. box-shadow: none;
  1587. outline: none;
  1588. }
  1589. .result .cache_link,
  1590. .result .proxyfied_link {
  1591. font-size: 0.9em !important;
  1592. }
  1593. .result .content,
  1594. .result .stat,
  1595. .result .altlink {
  1596. font-size: 0.9em;
  1597. margin: 0;
  1598. padding: 0;
  1599. max-width: 54em;
  1600. word-wrap: break-word;
  1601. line-height: 1.24;
  1602. }
  1603. .result .content .highlight,
  1604. .result .stat .highlight,
  1605. .result .altlink .highlight {
  1606. color: #000000;
  1607. background: inherit;
  1608. font-weight: bold;
  1609. }
  1610. .result .codelines .highlight {
  1611. color: inherit;
  1612. background: inherit;
  1613. font-weight: normal;
  1614. }
  1615. .result .url {
  1616. font-size: 0.9em;
  1617. margin: 0 0 3px 0;
  1618. padding: 0;
  1619. max-width: 54em;
  1620. word-wrap: break-word;
  1621. color: #25a55b;
  1622. }
  1623. .result .published_date {
  1624. font-size: 0.8em;
  1625. color: #888;
  1626. }
  1627. .result img.thumbnail {
  1628. float: left;
  1629. padding: 0 5px 10px 0;
  1630. width: 20em;
  1631. min-width: 20em;
  1632. min-height: 8em;
  1633. }
  1634. .result img.image {
  1635. float: left;
  1636. padding: 0 5px 10px 0;
  1637. width: 100px;
  1638. max-height: 100px;
  1639. object-fit: scale-down;
  1640. object-position: right top;
  1641. }
  1642. .result .break {
  1643. clear: both;
  1644. }
  1645. .category-social .image {
  1646. width: auto !important;
  1647. min-width: 48px;
  1648. min-height: 48px;
  1649. padding: 0 5px 25px 0 !important;
  1650. }
  1651. .result-videos .content {
  1652. overflow: hidden;
  1653. }
  1654. .engines {
  1655. float: right;
  1656. color: #888;
  1657. }
  1658. .engines span {
  1659. font-size: smaller;
  1660. margin: 0 0.5em 0 0;
  1661. }
  1662. .small_font {
  1663. font-size: 0.8em;
  1664. }
  1665. .highlight {
  1666. color: #094089;
  1667. background: inherit;
  1668. font-weight: bold;
  1669. }
  1670. .result-images {
  1671. display: inline-block;
  1672. margin: 0;
  1673. padding: 0;
  1674. position: relative;
  1675. max-height: 200px;
  1676. }
  1677. .result-images img {
  1678. float: inherit;
  1679. margin: 0;
  1680. padding: 0;
  1681. border: none;
  1682. max-height: 200px;
  1683. background: #084999;
  1684. }
  1685. .result-images span a {
  1686. display: none;
  1687. color: #FFF;
  1688. }
  1689. .result-images:hover span a {
  1690. display: block;
  1691. position: absolute;
  1692. bottom: 0;
  1693. right: 0;
  1694. padding: 4px;
  1695. margin: 0 0 4px 4px;
  1696. background-color: rgba(0, 0, 0, 0.6);
  1697. font-size: 0.7em;
  1698. }
  1699. .torrent_result {
  1700. border-left: 10px solid lightgray;
  1701. padding-left: 3px;
  1702. }
  1703. .torrent_result p {
  1704. margin: 3px;
  1705. font-size: 0.8em;
  1706. }
  1707. .torrent_result a {
  1708. color: #084999;
  1709. }
  1710. .torrent_result a:hover {
  1711. text-decoration: underline;
  1712. }
  1713. .torrent_result a:visited {
  1714. color: #684898;
  1715. }
  1716. #results {
  1717. margin: 2em 2em 20px 2em;
  1718. padding: 0;
  1719. width: 50em;
  1720. }
  1721. #suggestions .wrapper {
  1722. display: flex;
  1723. flex-flow: row wrap;
  1724. justify-content: flex-end;
  1725. }
  1726. #suggestions .wrapper form {
  1727. display: inline-block;
  1728. flex: 1 1 50%;
  1729. }
  1730. #suggestions,
  1731. #answers,
  1732. #corrections {
  1733. max-width: 50em;
  1734. }
  1735. #suggestions input,
  1736. #answers input,
  1737. #infoboxes input,
  1738. #corrections input {
  1739. padding: 0;
  1740. margin: 3px;
  1741. font-size: 0.9em;
  1742. display: inline-block;
  1743. background: transparent;
  1744. color: #444;
  1745. cursor: pointer;
  1746. }
  1747. #suggestions input[type="submit"],
  1748. #answers input[type="submit"],
  1749. #infoboxes input[type="submit"],
  1750. #corrections input[type="submit"],
  1751. #suggestions .infobox .url a,
  1752. #answers .infobox .url a,
  1753. #infoboxes .infobox .url a,
  1754. #corrections .infobox .url a {
  1755. color: #084999;
  1756. text-decoration: none;
  1757. font-size: 0.9rem;
  1758. }
  1759. #suggestions input[type="submit"]:hover,
  1760. #answers input[type="submit"]:hover,
  1761. #infoboxes input[type="submit"]:hover,
  1762. #corrections input[type="submit"]:hover,
  1763. #suggestions .infobox .url a:hover,
  1764. #answers .infobox .url a:hover,
  1765. #infoboxes .infobox .url a:hover,
  1766. #corrections .infobox .url a:hover {
  1767. text-decoration: underline;
  1768. }
  1769. #corrections {
  1770. display: flex;
  1771. flex-flow: row wrap;
  1772. margin: 1em 0;
  1773. }
  1774. #corrections h4,
  1775. #corrections input[type="submit"] {
  1776. display: inline-block;
  1777. margin: 0 0.5em 0 0;
  1778. }
  1779. #corrections input[type="submit"]::after {
  1780. content: ", ";
  1781. }
  1782. #suggestions .title,
  1783. #search_url .title,
  1784. #apis .title {
  1785. margin: 2em 0 0.5em 0;
  1786. color: #444;
  1787. }
  1788. #answers {
  1789. margin: 10px 8px 10px 8px;
  1790. border: 1px solid #ddd;
  1791. padding: 0.9em;
  1792. box-shadow: 0px 0px 5px #CCC;
  1793. }
  1794. #answers h4 {
  1795. display: none;
  1796. }
  1797. #answers .answer {
  1798. display: block;
  1799. font-size: 1.2em;
  1800. font-weight: bold;
  1801. }
  1802. #answers form,
  1803. #infoboxes form {
  1804. min-width: 210px;
  1805. }
  1806. #sidebar {
  1807. position: absolute;
  1808. top: 100px;
  1809. left: 57em;
  1810. margin: 0px 2px 5px 5px;
  1811. padding: 0px 2px 2px;
  1812. max-width: 25em;
  1813. word-wrap: break-word;
  1814. }
  1815. #sidebar .infobox {
  1816. margin: 10px 0 10px;
  1817. border: 1px solid #ddd;
  1818. padding: 0.9em;
  1819. font-size: 0.9em;
  1820. box-shadow: 0px 0px 5px #CCC;
  1821. }
  1822. #sidebar .infobox h2 {
  1823. margin: 0 0 .5em 0;
  1824. }
  1825. #sidebar .infobox img {
  1826. max-width: 100%;
  1827. max-height: 12em;
  1828. display: block;
  1829. margin: 0;
  1830. padding: 0;
  1831. }
  1832. #sidebar .infobox dl {
  1833. margin: 0.5em 0;
  1834. }
  1835. #sidebar .infobox dt {
  1836. display: inline;
  1837. margin: 0.5em 0.25em 0.5em 0;
  1838. padding: 0;
  1839. font-weight: bold;
  1840. }
  1841. #sidebar .infobox dd {
  1842. display: inline;
  1843. margin: 0.5em 0;
  1844. padding: 0;
  1845. }
  1846. #sidebar .infobox input {
  1847. font-size: 1em;
  1848. }
  1849. #sidebar .infobox br {
  1850. clear: both;
  1851. }
  1852. #sidebar .infobox .attributes,
  1853. #sidebar .infobox .urls {
  1854. clear: both;
  1855. }
  1856. #search_url {
  1857. margin-top: 8px;
  1858. }
  1859. #search_url div {
  1860. border: 1px solid #888;
  1861. padding: 4px;
  1862. color: #444;
  1863. width: 100%;
  1864. display: block;
  1865. margin: 0.1em;
  1866. overflow: hidden;
  1867. height: 1.2em;
  1868. line-height: 1.2em;
  1869. }
  1870. #search_url div pre {
  1871. display: block;
  1872. width: 200em;
  1873. font-size: 0.8em;
  1874. word-break: break-all;
  1875. margin: 0.1em;
  1876. -webkit-user-select: all;
  1877. -moz-user-select: all;
  1878. -ms-user-select: all;
  1879. user-select: all;
  1880. }
  1881. #linkto_preferences {
  1882. position: absolute;
  1883. right: 10px;
  1884. top: 0.9em;
  1885. padding: 0;
  1886. border: 0;
  1887. display: block;
  1888. font-size: 1.2em;
  1889. color: #222;
  1890. }
  1891. #linkto_preferences a:link *,
  1892. #linkto_preferences a:hover *,
  1893. #linkto_preferences a:visited *,
  1894. #linkto_preferences a:active * {
  1895. color: #222;
  1896. }
  1897. #pagination {
  1898. clear: both;
  1899. }
  1900. #pagination br {
  1901. clear: both;
  1902. }
  1903. #apis {
  1904. margin-top: 8px;
  1905. clear: both;
  1906. }
  1907. #backToTop {
  1908. border: 1px solid #ddd;
  1909. margin: 0 0 0 2em;
  1910. padding: 0;
  1911. font-size: 1em;
  1912. box-shadow: 0px 0px 5px #CCC;
  1913. background: white;
  1914. position: fixed;
  1915. bottom: 85px;
  1916. left: 50em;
  1917. transition: opacity 0.5s;
  1918. opacity: 0;
  1919. }
  1920. #backToTop a {
  1921. display: block;
  1922. margin: 0;
  1923. padding: 0.6em;
  1924. }
  1925. @media screen and (max-width: 75em) {
  1926. #main_preferences,
  1927. #main_about,
  1928. #main_stats {
  1929. margin: 0.5em;
  1930. width: auto;
  1931. }
  1932. #suggestions,
  1933. #answers {
  1934. margin-top: 1em;
  1935. }
  1936. #infoboxes {
  1937. position: inherit;
  1938. max-width: inherit;
  1939. }
  1940. #infoboxes .infobox {
  1941. clear: both;
  1942. }
  1943. #infoboxes .infobox img {
  1944. float: left;
  1945. max-width: 10em;
  1946. margin: 0.5em 0.5em 0.5em 0;
  1947. }
  1948. #sidebar {
  1949. position: static;
  1950. max-width: 50em;
  1951. margin: 0 0 2px 0;
  1952. padding: 0;
  1953. float: none;
  1954. border: none;
  1955. width: auto;
  1956. }
  1957. #sidebar input {
  1958. border: 0;
  1959. }
  1960. #apis {
  1961. display: none;
  1962. }
  1963. #search_url {
  1964. display: none;
  1965. }
  1966. .result {
  1967. border-bottom: 1px solid #E8E7E6;
  1968. margin: 0;
  1969. padding-top: 8px;
  1970. padding-bottom: 6px;
  1971. }
  1972. .result h3 {
  1973. margin: 0 0 1px 0;
  1974. }
  1975. .result .thumbnail {
  1976. max-width: 98%;
  1977. }
  1978. .result .url span.url {
  1979. display: block;
  1980. white-space: nowrap;
  1981. text-overflow: ellipsis;
  1982. overflow: hidden;
  1983. width: 100%;
  1984. }
  1985. .result .url a {
  1986. float: right;
  1987. padding: 0 0.5em;
  1988. }
  1989. .result .engines {
  1990. float: right;
  1991. padding: 0 0 3px 0;
  1992. }
  1993. .result-images {
  1994. border-bottom: none !important;
  1995. }
  1996. .image_result {
  1997. max-width: 98%;
  1998. }
  1999. .image_result img {
  2000. max-width: 98%;
  2001. }
  2002. }
  2003. @media screen and (max-width: 50em) {
  2004. article[data-vim-selected]::before {
  2005. display: none;
  2006. content: "";
  2007. }
  2008. #linkto_preferences {
  2009. display: none;
  2010. postion: fixed !important;
  2011. top: 100px;
  2012. right: 0px;
  2013. }
  2014. #sidebar {
  2015. margin: 0 5px 2px 5px;
  2016. }
  2017. #corrections {
  2018. margin: 1em 5px 1em 5px;
  2019. }
  2020. #results {
  2021. margin: 0;
  2022. padding: 0;
  2023. width: initial;
  2024. }
  2025. #backToTop {
  2026. left: 40em;
  2027. bottom: 35px;
  2028. }
  2029. .result {
  2030. padding: 8px 10px 6px 10px;
  2031. }
  2032. .result-images {
  2033. margin: 0;
  2034. padding: 0;
  2035. border: none;
  2036. }
  2037. }
  2038. @media screen and (max-width: 35em) {
  2039. .result-videos img.thumbnail {
  2040. float: none !important;
  2041. }
  2042. .result-videos .content {
  2043. overflow: inherit;
  2044. }
  2045. }
  2046. #search_submit {
  2047. left: 1px;
  2048. right: auto;
  2049. }