logicodev-dark.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  1. .searx-navbar {
  2. background: #29314d;
  3. height: 2.3rem;
  4. font-size: 1.3rem;
  5. line-height: 1.3rem;
  6. padding: 0.5rem;
  7. font-weight: bold;
  8. margin-bottom: 0.8rem;
  9. }
  10. .searx-navbar a,
  11. .searx-navbar a:hover {
  12. margin-right: 2.0rem;
  13. color: white;
  14. text-decoration: none;
  15. }
  16. .searx-navbar .instance a {
  17. color: #01d7d4;
  18. margin-left: 2.0rem;
  19. }
  20. #main-logo {
  21. margin-top: 20vh;
  22. margin-bottom: 25px;
  23. }
  24. #main-logo > img {
  25. max-width: 350px;
  26. width: 80%;
  27. }
  28. * {
  29. border-radius: 0 !important;
  30. }
  31. html {
  32. position: relative;
  33. min-height: 100%;
  34. color: #29314d;
  35. }
  36. body {
  37. /* Margin bottom by footer height */
  38. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  39. margin-bottom: 80px;
  40. background-color: white;
  41. }
  42. body a {
  43. color: #0088cc;
  44. }
  45. .footer {
  46. position: absolute;
  47. bottom: 0;
  48. width: 100%;
  49. /* Set the fixed height of the footer here */
  50. height: 60px;
  51. text-align: center;
  52. color: #999;
  53. }
  54. input[type=checkbox]:checked + .label_hide_if_checked,
  55. input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
  56. display: none;
  57. }
  58. input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
  59. input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
  60. display: none;
  61. }
  62. .onoff-checkbox {
  63. width: 15%;
  64. }
  65. .onoffswitch {
  66. position: relative;
  67. width: 110px;
  68. -webkit-user-select: none;
  69. -moz-user-select: none;
  70. -ms-user-select: none;
  71. }
  72. .onoffswitch-checkbox {
  73. display: none;
  74. }
  75. .onoffswitch-label {
  76. display: block;
  77. overflow: hidden;
  78. cursor: pointer;
  79. border: 2px solid #FFFFFF !important;
  80. border-radius: 50px !important;
  81. }
  82. .onoffswitch-inner {
  83. display: block;
  84. transition: margin 0.3s ease-in 0s;
  85. }
  86. .onoffswitch-inner:before,
  87. .onoffswitch-inner:after {
  88. display: block;
  89. float: left;
  90. width: 50%;
  91. height: 30px;
  92. padding: 0;
  93. line-height: 40px;
  94. font-size: 20px;
  95. box-sizing: border-box;
  96. content: "";
  97. background-color: #EEEEEE;
  98. }
  99. .onoffswitch-switch {
  100. display: block;
  101. width: 37px;
  102. background-color: #01d7d4;
  103. position: absolute;
  104. top: 0;
  105. bottom: 0;
  106. right: 0px;
  107. border: 2px solid #FFFFFF !important;
  108. border-radius: 50px !important;
  109. transition: all 0.3s ease-in 0s;
  110. }
  111. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  112. margin-right: 0;
  113. }
  114. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  115. right: 71px;
  116. background-color: #A1A1A1;
  117. }
  118. .result_header {
  119. margin-top: 0px;
  120. margin-bottom: 2px;
  121. font-size: 16px;
  122. }
  123. .result_header .favicon {
  124. margin-bottom: -3px;
  125. }
  126. .result_header a {
  127. color: #29314d;
  128. text-decoration: none;
  129. }
  130. .result_header a:hover {
  131. color: #0088cc;
  132. }
  133. .result_header a:visited {
  134. color: #684898;
  135. }
  136. .result_header a .highlight {
  137. background-color: #f6f9fa;
  138. }
  139. .result-content,
  140. .result-format,
  141. .result-source {
  142. margin-top: 2px;
  143. margin-bottom: 0;
  144. word-wrap: break-word;
  145. color: #666666;
  146. font-size: 13px;
  147. }
  148. .result-content .highlight,
  149. .result-format .highlight,
  150. .result-source .highlight {
  151. font-weight: bold;
  152. }
  153. .result-source {
  154. font-size: 10px;
  155. float: left;
  156. }
  157. .result-format {
  158. font-size: 10px;
  159. float: right;
  160. }
  161. .external-link {
  162. color: #069025;
  163. font-size: 12px;
  164. margin-bottom: 15px;
  165. }
  166. .external-link a {
  167. margin-right: 3px;
  168. }
  169. .result-default,
  170. .result-code,
  171. .result-torrent,
  172. .result-videos,
  173. .result-map {
  174. clear: both;
  175. padding: 2px 4px;
  176. }
  177. .result-default:hover,
  178. .result-code:hover,
  179. .result-torrent:hover,
  180. .result-videos:hover,
  181. .result-map:hover {
  182. background-color: #f6f9fa;
  183. }
  184. .result-images {
  185. float: left !important;
  186. width: 24%;
  187. margin: .5%;
  188. }
  189. .result-images a {
  190. display: block;
  191. width: 100%;
  192. background-size: cover;
  193. }
  194. .img-thumbnail {
  195. margin: 5px;
  196. max-height: 128px;
  197. min-height: 128px;
  198. }
  199. .result-videos {
  200. clear: both;
  201. }
  202. .result-videos hr {
  203. margin: 5px 0 15px 0;
  204. }
  205. .result-videos .collapse {
  206. width: 100%;
  207. }
  208. .result-videos .in {
  209. margin-bottom: 8px;
  210. }
  211. .result-torrent {
  212. clear: both;
  213. }
  214. .result-torrent b {
  215. margin-right: 5px;
  216. margin-left: 5px;
  217. }
  218. .result-torrent .seeders {
  219. color: #2ecc71;
  220. }
  221. .result-torrent .leechers {
  222. color: #f35e77;
  223. }
  224. .result-map {
  225. clear: both;
  226. }
  227. .result-code {
  228. clear: both;
  229. }
  230. .result-code .code-fork,
  231. .result-code .code-fork a {
  232. color: #666666;
  233. }
  234. .suggestion_item {
  235. margin: 2px 5px;
  236. max-width: 100%;
  237. }
  238. .suggestion_item .btn {
  239. max-width: 100%;
  240. white-space: normal;
  241. word-wrap: break-word;
  242. text-align: left;
  243. }
  244. .result_download {
  245. margin-right: 5px;
  246. }
  247. #pagination {
  248. margin-top: 30px;
  249. padding-bottom: 60px;
  250. }
  251. .label-default {
  252. color: #a4a4a4;
  253. background: transparent;
  254. }
  255. .result .text-muted small {
  256. word-wrap: break-word;
  257. }
  258. .modal-wrapper {
  259. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  260. }
  261. .modal-wrapper {
  262. background-clip: padding-box;
  263. background-color: #fff;
  264. border: 1px solid rgba(0, 0, 0, 0.2);
  265. border-radius: 6px;
  266. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  267. outline: 0 none;
  268. position: relative;
  269. }
  270. .infobox .panel-heading {
  271. background-color: #f6f9fa;
  272. }
  273. .infobox .panel-heading .panel-title {
  274. font-weight: 700;
  275. }
  276. .infobox p {
  277. font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
  278. font-style: italic;
  279. }
  280. .infobox .btn {
  281. background-color: #2ecc71;
  282. border: none;
  283. }
  284. .infobox .btn a {
  285. color: white;
  286. margin: 5px;
  287. }
  288. .infobox .infobox_part {
  289. margin-bottom: 20px;
  290. word-wrap: break-word;
  291. table-layout: fixed;
  292. }
  293. .infobox .infobox_part:last-child {
  294. margin-bottom: 0;
  295. }
  296. .search_categories,
  297. #categories {
  298. text-transform: capitalize;
  299. margin-bottom: 0.5rem;
  300. display: flex;
  301. flex-wrap: wrap;
  302. flex-flow: row wrap;
  303. align-content: stretch;
  304. }
  305. .search_categories label,
  306. #categories label,
  307. .search_categories .input-group-addon,
  308. #categories .input-group-addon {
  309. flex-grow: 1;
  310. flex-basis: auto;
  311. font-size: 1.2rem;
  312. font-weight: normal;
  313. background-color: white;
  314. border: #dddddd 1px solid;
  315. border-right: none;
  316. color: #666666;
  317. padding-bottom: 0.4rem;
  318. padding-top: 0.4rem;
  319. text-align: center;
  320. min-width: 50px;
  321. }
  322. .search_categories label:last-child,
  323. #categories label:last-child,
  324. .search_categories .input-group-addon:last-child,
  325. #categories .input-group-addon:last-child {
  326. border-right: #dddddd 1px solid;
  327. }
  328. .search_categories input[type="checkbox"]:checked + label,
  329. #categories input[type="checkbox"]:checked + label {
  330. color: #29314d;
  331. font-weight: bold;
  332. border-bottom: #01d7d4 5px solid;
  333. }
  334. #main-logo {
  335. margin-top: 10vh;
  336. margin-bottom: 25px;
  337. }
  338. #main-logo > img {
  339. max-width: 350px;
  340. width: 80%;
  341. }
  342. #q {
  343. box-shadow: none;
  344. border-right: none;
  345. border-color: #a4a4a4;
  346. }
  347. #search_form .input-group-btn .btn {
  348. border-color: #a4a4a4;
  349. }
  350. #search_form .input-group-btn .btn:hover {
  351. background-color: #2ecc71;
  352. color: white;
  353. }
  354. .custom-select {
  355. appearance: none;
  356. -webkit-appearance: none;
  357. -moz-appearance: none;
  358. font-size: 1.2rem;
  359. font-weight: normal;
  360. background-color: white;
  361. border: #dddddd 1px solid;
  362. color: #666666;
  363. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJN
  364. AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZ
  365. cwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGn
  366. sAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW8
  367. 6/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0
  368. ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0w
  369. Ny0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb
  370. 7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
  371. }
  372. .search-margin {
  373. margin-bottom: 0.6em;
  374. }
  375. #advanced-search-container {
  376. display: none;
  377. text-align: left;
  378. margin-bottom: 1rem;
  379. clear: both;
  380. }
  381. #advanced-search-container label,
  382. #advanced-search-container .input-group-addon {
  383. font-size: 1.2rem;
  384. font-weight: normal;
  385. background-color: white;
  386. border: #dddddd 1px solid;
  387. border-right: none;
  388. color: #666666;
  389. padding-bottom: 0.4rem;
  390. padding-right: 0.7rem;
  391. padding-left: 0.7rem;
  392. }
  393. #advanced-search-container label:last-child,
  394. #advanced-search-container .input-group-addon:last-child {
  395. border-right: #dddddd 1px solid;
  396. }
  397. #advanced-search-container input[type="radio"] {
  398. display: none;
  399. }
  400. #advanced-search-container input[type="radio"]:checked + label {
  401. color: #29314d;
  402. font-weight: bold;
  403. border-bottom: #01d7d4 5px solid;
  404. }
  405. #check-advanced {
  406. display: none;
  407. }
  408. #check-advanced:checked ~ #advanced-search-container {
  409. display: block;
  410. }
  411. .advanced {
  412. padding: 0;
  413. margin-top: 0.3rem;
  414. text-align: right;
  415. }
  416. .advanced label,
  417. .advanced select {
  418. cursor: pointer;
  419. }
  420. .cursor-text {
  421. cursor: text !important;
  422. }
  423. .cursor-pointer {
  424. cursor: pointer !important;
  425. }
  426. pre,
  427. code {
  428. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  429. }
  430. .lineno {
  431. margin-right: 5px;
  432. }
  433. .highlight .hll {
  434. background-color: #ffffcc;
  435. }
  436. .highlight {
  437. background: #f8f8f8;
  438. }
  439. .highlight .c {
  440. color: #556366;
  441. font-style: italic;
  442. }
  443. /* Comment */
  444. .highlight .err {
  445. border: 1px solid #ffa92f;
  446. }
  447. /* Error */
  448. .highlight .k {
  449. color: #BE74D5;
  450. font-weight: bold;
  451. }
  452. /* Keyword */
  453. .highlight .o {
  454. color: #d19a66;
  455. }
  456. /* Operator */
  457. .highlight .cm {
  458. color: #556366;
  459. font-style: italic;
  460. }
  461. /* Comment.Multiline */
  462. .highlight .cp {
  463. color: #bc7a00;
  464. }
  465. /* Comment.Preproc */
  466. .highlight .c1 {
  467. color: #556366;
  468. font-style: italic;
  469. }
  470. /* Comment.Single */
  471. .highlight .cs {
  472. color: #556366;
  473. font-style: italic;
  474. }
  475. /* Comment.Special */
  476. .highlight .gd {
  477. color: #a00000;
  478. }
  479. /* Generic.Deleted */
  480. .highlight .ge {
  481. font-style: italic;
  482. }
  483. /* Generic.Emph */
  484. .highlight .gr {
  485. color: #ff0000;
  486. }
  487. /* Generic.Error */
  488. .highlight .gh {
  489. color: #000080;
  490. font-weight: bold;
  491. }
  492. /* Generic.Heading */
  493. .highlight .gi {
  494. color: #00a000;
  495. }
  496. /* Generic.Inserted */
  497. .highlight .go {
  498. color: #888888;
  499. }
  500. /* Generic.Output */
  501. .highlight .gp {
  502. color: #000080;
  503. font-weight: bold;
  504. }
  505. /* Generic.Prompt */
  506. .highlight .gs {
  507. font-weight: bold;
  508. }
  509. /* Generic.Strong */
  510. .highlight .gu {
  511. color: #800080;
  512. font-weight: bold;
  513. }
  514. /* Generic.Subheading */
  515. .highlight .gt {
  516. color: #0044dd;
  517. }
  518. /* Generic.Traceback */
  519. .highlight .kc {
  520. color: #BE74D5;
  521. font-weight: bold;
  522. }
  523. /* Keyword.Constant */
  524. .highlight .kd {
  525. color: #BE74D5;
  526. font-weight: bold;
  527. }
  528. /* Keyword.Declaration */
  529. .highlight .kn {
  530. color: #BE74D5;
  531. font-weight: bold;
  532. }
  533. /* Keyword.Namespace */
  534. .highlight .kp {
  535. color: #be74d5;
  536. }
  537. /* Keyword.Pseudo */
  538. .highlight .kr {
  539. color: #BE74D5;
  540. font-weight: bold;
  541. }
  542. /* Keyword.Reserved */
  543. .highlight .kt {
  544. color: #d46c72;
  545. }
  546. /* Keyword.Type */
  547. .highlight .m {
  548. color: #d19a66;
  549. }
  550. /* Literal.Number */
  551. .highlight .s {
  552. color: #86c372;
  553. }
  554. /* Literal.String */
  555. .highlight .na {
  556. color: #7d9029;
  557. }
  558. /* Name.Attribute */
  559. .highlight .nb {
  560. color: #be74d5;
  561. }
  562. /* Name.Builtin */
  563. .highlight .nc {
  564. color: #61AFEF;
  565. font-weight: bold;
  566. }
  567. /* Name.Class */
  568. .highlight .no {
  569. color: #d19a66;
  570. }
  571. /* Name.Constant */
  572. .highlight .nd {
  573. color: #aa22ff;
  574. }
  575. /* Name.Decorator */
  576. .highlight .ni {
  577. color: #999999;
  578. font-weight: bold;
  579. }
  580. /* Name.Entity */
  581. .highlight .ne {
  582. color: #D2413A;
  583. font-weight: bold;
  584. }
  585. /* Name.Exception */
  586. .highlight .nf {
  587. color: #61afef;
  588. }
  589. /* Name.Function */
  590. .highlight .nl {
  591. color: #a0a000;
  592. }
  593. /* Name.Label */
  594. .highlight .nn {
  595. color: #61AFEF;
  596. font-weight: bold;
  597. }
  598. /* Name.Namespace */
  599. .highlight .nt {
  600. color: #BE74D5;
  601. font-weight: bold;
  602. }
  603. /* Name.Tag */
  604. .highlight .nv {
  605. color: #dfc06f;
  606. }
  607. /* Name.Variable */
  608. .highlight .ow {
  609. color: #AA22FF;
  610. font-weight: bold;
  611. }
  612. /* Operator.Word */
  613. .highlight .w {
  614. color: #d7dae0;
  615. }
  616. /* Text.Whitespace */
  617. .highlight .mf {
  618. color: #d19a66;
  619. }
  620. /* Literal.Number.Float */
  621. .highlight .mh {
  622. color: #d19a66;
  623. }
  624. /* Literal.Number.Hex */
  625. .highlight .mi {
  626. color: #d19a66;
  627. }
  628. /* Literal.Number.Integer */
  629. .highlight .mo {
  630. color: #d19a66;
  631. }
  632. /* Literal.Number.Oct */
  633. .highlight .sb {
  634. color: #86c372;
  635. }
  636. /* Literal.String.Backtick */
  637. .highlight .sc {
  638. color: #86c372;
  639. }
  640. /* Literal.String.Char */
  641. .highlight .sd {
  642. color: #86C372;
  643. font-style: italic;
  644. }
  645. /* Literal.String.Doc */
  646. .highlight .s2 {
  647. color: #86c372;
  648. }
  649. /* Literal.String.Double */
  650. .highlight .se {
  651. color: #BB6622;
  652. font-weight: bold;
  653. }
  654. /* Literal.String.Escape */
  655. .highlight .sh {
  656. color: #86c372;
  657. }
  658. /* Literal.String.Heredoc */
  659. .highlight .si {
  660. color: #BB6688;
  661. font-weight: bold;
  662. }
  663. /* Literal.String.Interpol */
  664. .highlight .sx {
  665. color: #be74d5;
  666. }
  667. /* Literal.String.Other */
  668. .highlight .sr {
  669. color: #bb6688;
  670. }
  671. /* Literal.String.Regex */
  672. .highlight .s1 {
  673. color: #86c372;
  674. }
  675. /* Literal.String.Single */
  676. .highlight .ss {
  677. color: #dfc06f;
  678. }
  679. /* Literal.String.Symbol */
  680. .highlight .bp {
  681. color: #be74d5;
  682. }
  683. /* Name.Builtin.Pseudo */
  684. .highlight .vc {
  685. color: #dfc06f;
  686. }
  687. /* Name.Variable.Class */
  688. .highlight .vg {
  689. color: #dfc06f;
  690. }
  691. /* Name.Variable.Global */
  692. .highlight .vi {
  693. color: #dfc06f;
  694. }
  695. /* Name.Variable.Instance */
  696. .highlight .il {
  697. color: #d19a66;
  698. }
  699. /* Literal.Number.Integer.Long */
  700. .highlight .lineno {
  701. -webkit-touch-callout: none;
  702. -webkit-user-select: none;
  703. -khtml-user-select: none;
  704. -moz-user-select: none;
  705. -ms-user-select: none;
  706. user-select: none;
  707. cursor: default;
  708. color: #556366;
  709. }
  710. .highlight .lineno::selection {
  711. background: transparent;
  712. /* WebKit/Blink Browsers */
  713. }
  714. .highlight .lineno::-moz-selection {
  715. background: transparent;
  716. /* Gecko Browsers */
  717. }
  718. .highlight pre {
  719. background-color: #282C34;
  720. color: #D7DAE0;
  721. border: none;
  722. margin-bottom: 25px;
  723. font-size: 15px;
  724. padding: 20px 10px;
  725. }
  726. .highlight {
  727. font-weight: 700;
  728. }
  729. .table > tbody > tr > td,
  730. .table > tbody > tr > th {
  731. vertical-align: middle !important;
  732. }