searx-rtl.css 44 KB

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