searx-rtl.css 44 KB

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