logicodev.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964
  1. * {
  2. border-radius: 0 !important;
  3. }
  4. html {
  5. position: relative;
  6. min-height: 100%;
  7. color: #29314d;
  8. }
  9. body {
  10. /* Margin bottom by footer height */
  11. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  12. margin-bottom: 80px;
  13. background-color: white;
  14. }
  15. body a {
  16. color: #0088cc;
  17. }
  18. .footer {
  19. position: absolute;
  20. bottom: 0;
  21. width: 100%;
  22. /* Set the fixed height of the footer here */
  23. height: 60px;
  24. text-align: center;
  25. color: #999;
  26. }
  27. input[type=checkbox]:checked + .label_hide_if_checked,
  28. input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
  29. display: none;
  30. }
  31. input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
  32. input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
  33. display: none;
  34. }
  35. .onoff-checkbox {
  36. width: 15%;
  37. }
  38. .onoffswitch {
  39. position: relative;
  40. width: 110px;
  41. -webkit-user-select: none;
  42. -moz-user-select: none;
  43. -ms-user-select: none;
  44. }
  45. .onoffswitch-checkbox {
  46. opacity: 0;
  47. position: absolute;
  48. }
  49. .onoffswitch-checkbox:before {
  50. content: "";
  51. display: inline-block;
  52. width: 16px;
  53. height: 16px;
  54. margin-right: 10px;
  55. position: absolute;
  56. left: 0;
  57. bottom: 1px;
  58. background-color: #fff;
  59. border: 1px solid #ccc;
  60. border-radius: 0px;
  61. }
  62. .onoffswitch-label {
  63. display: block;
  64. overflow: hidden;
  65. cursor: pointer;
  66. border: 2px solid #FFFFFF !important;
  67. border-radius: 50px !important;
  68. }
  69. .onoffswitch-inner {
  70. display: block;
  71. transition: margin 0.3s ease-in 0s;
  72. }
  73. .onoffswitch-inner:before,
  74. .onoffswitch-inner:after {
  75. display: block;
  76. float: left;
  77. width: 50%;
  78. height: 30px;
  79. padding: 0;
  80. line-height: 40px;
  81. font-size: 20px;
  82. box-sizing: border-box;
  83. content: "";
  84. background-color: #EEEEEE;
  85. }
  86. .onoffswitch-switch {
  87. display: block;
  88. width: 37px;
  89. background-color: #01d7d4;
  90. position: absolute;
  91. top: 0;
  92. bottom: 0;
  93. right: 0px;
  94. border: 2px solid #FFFFFF;
  95. border-radius: 50px !important;
  96. transition: all 0.3s ease-in 0s;
  97. }
  98. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  99. margin-right: 0;
  100. }
  101. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  102. right: 71px;
  103. background-color: #A1A1A1;
  104. }
  105. .onoffswitch-checkbox:focus + .onoffswitch-label .onoffswitch-switch {
  106. border: 3px solid #444444;
  107. }
  108. .result_header {
  109. margin-top: 0px;
  110. margin-bottom: 2px;
  111. font-size: 16px;
  112. }
  113. .result_header .favicon {
  114. margin-bottom: -3px;
  115. }
  116. .result_header a {
  117. color: #29314d;
  118. text-decoration: none;
  119. }
  120. .result_header a:hover {
  121. color: #0088cc;
  122. }
  123. .result_header a:visited {
  124. color: #684898;
  125. }
  126. .result_header a .highlight {
  127. background-color: #f6f9fa;
  128. }
  129. .result-content,
  130. .result-format,
  131. .result-source {
  132. margin-top: 2px;
  133. margin-bottom: 0;
  134. word-wrap: break-word;
  135. color: #666666;
  136. font-size: 13px;
  137. }
  138. .result-content .highlight,
  139. .result-format .highlight,
  140. .result-source .highlight {
  141. font-weight: bold;
  142. }
  143. .result-source {
  144. font-size: 10px;
  145. float: left;
  146. }
  147. .result-format {
  148. font-size: 10px;
  149. float: right;
  150. }
  151. .external-link {
  152. color: #069025;
  153. font-size: 12px;
  154. margin-bottom: 15px;
  155. }
  156. .external-link a {
  157. margin-right: 3px;
  158. }
  159. .result-default,
  160. .result-code,
  161. .result-torrent,
  162. .result-videos,
  163. .result-map {
  164. clear: both;
  165. padding: 0.5em 4px;
  166. }
  167. .result-default:hover,
  168. .result-code:hover,
  169. .result-torrent:hover,
  170. .result-videos:hover,
  171. .result-map:hover {
  172. background-color: #f6f9fa;
  173. }
  174. .result-images {
  175. float: left !important;
  176. width: 24%;
  177. margin: .5%;
  178. }
  179. .result-images a {
  180. display: block;
  181. width: 100%;
  182. background-size: cover;
  183. }
  184. .img-thumbnail {
  185. margin: 5px;
  186. max-height: 128px;
  187. min-height: 128px;
  188. }
  189. .result-videos {
  190. clear: both;
  191. }
  192. .result-videos hr {
  193. margin: 5px 0 15px 0;
  194. }
  195. .result-videos .collapse {
  196. width: 100%;
  197. }
  198. .result-videos .in {
  199. margin-bottom: 8px;
  200. }
  201. .result-torrent {
  202. clear: both;
  203. }
  204. .result-torrent b {
  205. margin-right: 5px;
  206. margin-left: 5px;
  207. }
  208. .result-torrent .seeders {
  209. color: #2ecc71;
  210. }
  211. .result-torrent .leechers {
  212. color: #f35e77;
  213. }
  214. .result-map {
  215. clear: both;
  216. }
  217. .result-code {
  218. clear: both;
  219. }
  220. .result-code .code-fork,
  221. .result-code .code-fork a {
  222. color: #666666;
  223. }
  224. .suggestion_item {
  225. margin: 2px 5px;
  226. max-width: 100%;
  227. }
  228. .suggestion_item .btn {
  229. max-width: 100%;
  230. white-space: normal;
  231. word-wrap: break-word;
  232. text-align: left;
  233. }
  234. .result_download {
  235. margin-right: 5px;
  236. }
  237. #pagination {
  238. margin-top: 30px;
  239. padding-bottom: 60px;
  240. }
  241. .label-default {
  242. color: #a4a4a4;
  243. background: transparent;
  244. }
  245. .result .text-muted small {
  246. word-wrap: break-word;
  247. }
  248. .modal-wrapper {
  249. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  250. }
  251. .modal-wrapper {
  252. background-clip: padding-box;
  253. background-color: #fff;
  254. border: 1px solid rgba(0, 0, 0, 0.2);
  255. border-radius: 6px;
  256. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  257. outline: 0 none;
  258. position: relative;
  259. }
  260. @media screen and (max-width: 75em) {
  261. .img-thumbnail {
  262. object-fit: cover;
  263. }
  264. }
  265. .infobox .panel-heading {
  266. background-color: #f6f9fa;
  267. }
  268. .infobox .panel-heading .panel-title {
  269. font-weight: 700;
  270. }
  271. .infobox p {
  272. font-family: "DejaVu Serif", Georgia, Cambria, "Times New Roman", Times, serif !important;
  273. font-style: italic;
  274. }
  275. .infobox .btn {
  276. background-color: #2ecc71;
  277. border: none;
  278. }
  279. .infobox .btn a {
  280. color: white;
  281. margin: 5px;
  282. }
  283. .infobox .infobox_part {
  284. margin-bottom: 20px;
  285. word-wrap: break-word;
  286. table-layout: fixed;
  287. }
  288. .infobox .infobox_part:last-child {
  289. margin-bottom: 0;
  290. }
  291. .search_categories,
  292. #categories {
  293. text-transform: capitalize;
  294. margin-bottom: 0.5rem;
  295. display: flex;
  296. flex-wrap: wrap;
  297. flex-flow: row wrap;
  298. align-content: stretch;
  299. }
  300. .search_categories label,
  301. #categories label,
  302. .search_categories .input-group-addon,
  303. #categories .input-group-addon {
  304. flex-grow: 1;
  305. flex-basis: auto;
  306. font-size: 1.2rem;
  307. font-weight: normal;
  308. background-color: white;
  309. border: #dddddd 1px solid;
  310. border-right: none;
  311. color: #666666;
  312. padding-bottom: 0.4rem;
  313. padding-top: 0.4rem;
  314. text-align: center;
  315. min-width: 50px;
  316. }
  317. .search_categories label:last-child,
  318. #categories label:last-child,
  319. .search_categories .input-group-addon:last-child,
  320. #categories .input-group-addon:last-child {
  321. border-right: #dddddd 1px solid;
  322. }
  323. .search_categories input[type="checkbox"]:checked + label,
  324. #categories input[type="checkbox"]:checked + label {
  325. color: #29314d;
  326. font-weight: bold;
  327. border-bottom: #01d7d4 5px solid;
  328. }
  329. #main-logo {
  330. margin-top: 10vh;
  331. margin-bottom: 25px;
  332. }
  333. #main-logo > img {
  334. max-width: 350px;
  335. width: 80%;
  336. }
  337. #q {
  338. box-shadow: none;
  339. border-right: none;
  340. border-color: #a4a4a4;
  341. }
  342. #search_form .input-group-btn .btn {
  343. border-color: #a4a4a4;
  344. }
  345. #search_form .input-group-btn .btn:hover {
  346. background-color: #2ecc71;
  347. color: white;
  348. }
  349. .custom-select {
  350. appearance: none;
  351. -webkit-appearance: none;
  352. -moz-appearance: none;
  353. font-size: 1.2rem;
  354. font-weight: normal;
  355. background-color: white;
  356. border: #dddddd 1px solid;
  357. color: #666666;
  358. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAQAAACR313BAAAABGdBTUEAALGPC/xhBQAAACBjSFJN
  359. AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZ
  360. cwAABFkAAARZAVnbJUkAAAAHdElNRQfgBxgLDwB20OFsAAAAbElEQVQY073OsQ3CMAAEwJMYwJGn
  361. sAehpoXJItltBkmcdZBYgIIiQoLglnz3ui+eP+bk5uneteTMZJa6OJuIqvYzSJoqwqBq8gdmTTW8
  362. 6/dghxAUq4xsVYT9laBYXCw93Aajh7GPEF23t4fkBYevGFTANkPRAAAAJXRFWHRkYXRlOmNyZWF0
  363. ZQAyMDE2LTA3LTI0VDExOjU1OjU4KzAyOjAwRFqFOQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0w
  364. Ny0yNFQxMToxNTowMCswMjowMP7RDgQAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb
  365. 7jwaAAAAAElFTkSuQmCC) 96% no-repeat;
  366. }
  367. .search-margin {
  368. margin-bottom: 0.6em;
  369. }
  370. .visually-hidden {
  371. position: absolute !important;
  372. height: 1px;
  373. width: 1px;
  374. overflow: hidden;
  375. clip: rect(1px 1px 1px 1px);
  376. /* IE6, IE7 */
  377. clip: rect(1px, 1px, 1px, 1px);
  378. white-space: nowrap;
  379. /* added line */
  380. }
  381. #advanced-search-container {
  382. display: none;
  383. text-align: left;
  384. margin-bottom: 1rem;
  385. clear: both;
  386. }
  387. #advanced-search-container label,
  388. #advanced-search-container .input-group-addon {
  389. font-size: 1.2rem;
  390. font-weight: normal;
  391. background-color: white;
  392. border: #dddddd 1px solid;
  393. border-right: none;
  394. color: #666666;
  395. padding-bottom: 0.4rem;
  396. padding-right: 0.7rem;
  397. padding-left: 0.7rem;
  398. }
  399. #advanced-search-container label:last-child,
  400. #advanced-search-container .input-group-addon:last-child {
  401. border-right: #dddddd 1px solid;
  402. }
  403. #advanced-search-container input[type="radio"] {
  404. display: none;
  405. }
  406. #advanced-search-container input[type="radio"]:checked + label {
  407. color: #29314d;
  408. font-weight: bold;
  409. border-bottom: #01d7d4 5px solid;
  410. }
  411. #check-advanced {
  412. display: none;
  413. }
  414. #check-advanced:checked ~ #advanced-search-container {
  415. display: block;
  416. }
  417. .advanced {
  418. padding: 0;
  419. margin-top: 0.3rem;
  420. text-align: right;
  421. }
  422. .advanced label,
  423. .advanced select {
  424. cursor: pointer;
  425. }
  426. .cursor-text {
  427. cursor: text !important;
  428. }
  429. .cursor-pointer {
  430. cursor: pointer !important;
  431. }
  432. pre,
  433. code {
  434. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  435. }
  436. .lineno {
  437. margin-right: 5px;
  438. }
  439. .highlight .hll {
  440. background-color: #ffffcc;
  441. }
  442. .highlight {
  443. background: #f8f8f8;
  444. }
  445. .highlight .c {
  446. color: #556366;
  447. font-style: italic;
  448. }
  449. /* Comment */
  450. .highlight .err {
  451. border: 1px solid #ffa92f;
  452. }
  453. /* Error */
  454. .highlight .k {
  455. color: #BE74D5;
  456. font-weight: bold;
  457. }
  458. /* Keyword */
  459. .highlight .o {
  460. color: #d19a66;
  461. }
  462. /* Operator */
  463. .highlight .cm {
  464. color: #556366;
  465. font-style: italic;
  466. }
  467. /* Comment.Multiline */
  468. .highlight .cp {
  469. color: #bc7a00;
  470. }
  471. /* Comment.Preproc */
  472. .highlight .c1 {
  473. color: #556366;
  474. font-style: italic;
  475. }
  476. /* Comment.Single */
  477. .highlight .cs {
  478. color: #556366;
  479. font-style: italic;
  480. }
  481. /* Comment.Special */
  482. .highlight .gd {
  483. color: #a00000;
  484. }
  485. /* Generic.Deleted */
  486. .highlight .ge {
  487. font-style: italic;
  488. }
  489. /* Generic.Emph */
  490. .highlight .gr {
  491. color: #ff0000;
  492. }
  493. /* Generic.Error */
  494. .highlight .gh {
  495. color: #000080;
  496. font-weight: bold;
  497. }
  498. /* Generic.Heading */
  499. .highlight .gi {
  500. color: #00a000;
  501. }
  502. /* Generic.Inserted */
  503. .highlight .go {
  504. color: #888888;
  505. }
  506. /* Generic.Output */
  507. .highlight .gp {
  508. color: #000080;
  509. font-weight: bold;
  510. }
  511. /* Generic.Prompt */
  512. .highlight .gs {
  513. font-weight: bold;
  514. }
  515. /* Generic.Strong */
  516. .highlight .gu {
  517. color: #800080;
  518. font-weight: bold;
  519. }
  520. /* Generic.Subheading */
  521. .highlight .gt {
  522. color: #0044dd;
  523. }
  524. /* Generic.Traceback */
  525. .highlight .kc {
  526. color: #BE74D5;
  527. font-weight: bold;
  528. }
  529. /* Keyword.Constant */
  530. .highlight .kd {
  531. color: #BE74D5;
  532. font-weight: bold;
  533. }
  534. /* Keyword.Declaration */
  535. .highlight .kn {
  536. color: #BE74D5;
  537. font-weight: bold;
  538. }
  539. /* Keyword.Namespace */
  540. .highlight .kp {
  541. color: #be74d5;
  542. }
  543. /* Keyword.Pseudo */
  544. .highlight .kr {
  545. color: #BE74D5;
  546. font-weight: bold;
  547. }
  548. /* Keyword.Reserved */
  549. .highlight .kt {
  550. color: #d46c72;
  551. }
  552. /* Keyword.Type */
  553. .highlight .m {
  554. color: #d19a66;
  555. }
  556. /* Literal.Number */
  557. .highlight .s {
  558. color: #86c372;
  559. }
  560. /* Literal.String */
  561. .highlight .na {
  562. color: #7d9029;
  563. }
  564. /* Name.Attribute */
  565. .highlight .nb {
  566. color: #be74d5;
  567. }
  568. /* Name.Builtin */
  569. .highlight .nc {
  570. color: #61AFEF;
  571. font-weight: bold;
  572. }
  573. /* Name.Class */
  574. .highlight .no {
  575. color: #d19a66;
  576. }
  577. /* Name.Constant */
  578. .highlight .nd {
  579. color: #aa22ff;
  580. }
  581. /* Name.Decorator */
  582. .highlight .ni {
  583. color: #999999;
  584. font-weight: bold;
  585. }
  586. /* Name.Entity */
  587. .highlight .ne {
  588. color: #D2413A;
  589. font-weight: bold;
  590. }
  591. /* Name.Exception */
  592. .highlight .nf {
  593. color: #61afef;
  594. }
  595. /* Name.Function */
  596. .highlight .nl {
  597. color: #a0a000;
  598. }
  599. /* Name.Label */
  600. .highlight .nn {
  601. color: #61AFEF;
  602. font-weight: bold;
  603. }
  604. /* Name.Namespace */
  605. .highlight .nt {
  606. color: #BE74D5;
  607. font-weight: bold;
  608. }
  609. /* Name.Tag */
  610. .highlight .nv {
  611. color: #dfc06f;
  612. }
  613. /* Name.Variable */
  614. .highlight .ow {
  615. color: #AA22FF;
  616. font-weight: bold;
  617. }
  618. /* Operator.Word */
  619. .highlight .w {
  620. color: #d7dae0;
  621. }
  622. /* Text.Whitespace */
  623. .highlight .mf {
  624. color: #d19a66;
  625. }
  626. /* Literal.Number.Float */
  627. .highlight .mh {
  628. color: #d19a66;
  629. }
  630. /* Literal.Number.Hex */
  631. .highlight .mi {
  632. color: #d19a66;
  633. }
  634. /* Literal.Number.Integer */
  635. .highlight .mo {
  636. color: #d19a66;
  637. }
  638. /* Literal.Number.Oct */
  639. .highlight .sb {
  640. color: #86c372;
  641. }
  642. /* Literal.String.Backtick */
  643. .highlight .sc {
  644. color: #86c372;
  645. }
  646. /* Literal.String.Char */
  647. .highlight .sd {
  648. color: #86C372;
  649. font-style: italic;
  650. }
  651. /* Literal.String.Doc */
  652. .highlight .s2 {
  653. color: #86c372;
  654. }
  655. /* Literal.String.Double */
  656. .highlight .se {
  657. color: #BB6622;
  658. font-weight: bold;
  659. }
  660. /* Literal.String.Escape */
  661. .highlight .sh {
  662. color: #86c372;
  663. }
  664. /* Literal.String.Heredoc */
  665. .highlight .si {
  666. color: #BB6688;
  667. font-weight: bold;
  668. }
  669. /* Literal.String.Interpol */
  670. .highlight .sx {
  671. color: #be74d5;
  672. }
  673. /* Literal.String.Other */
  674. .highlight .sr {
  675. color: #bb6688;
  676. }
  677. /* Literal.String.Regex */
  678. .highlight .s1 {
  679. color: #86c372;
  680. }
  681. /* Literal.String.Single */
  682. .highlight .ss {
  683. color: #dfc06f;
  684. }
  685. /* Literal.String.Symbol */
  686. .highlight .bp {
  687. color: #be74d5;
  688. }
  689. /* Name.Builtin.Pseudo */
  690. .highlight .vc {
  691. color: #dfc06f;
  692. }
  693. /* Name.Variable.Class */
  694. .highlight .vg {
  695. color: #dfc06f;
  696. }
  697. /* Name.Variable.Global */
  698. .highlight .vi {
  699. color: #dfc06f;
  700. }
  701. /* Name.Variable.Instance */
  702. .highlight .il {
  703. color: #d19a66;
  704. }
  705. /* Literal.Number.Integer.Long */
  706. .highlight .lineno {
  707. -webkit-touch-callout: none;
  708. -webkit-user-select: none;
  709. -khtml-user-select: none;
  710. -moz-user-select: none;
  711. -ms-user-select: none;
  712. user-select: none;
  713. cursor: default;
  714. color: #556366;
  715. }
  716. .highlight .lineno::selection {
  717. background: transparent;
  718. /* WebKit/Blink Browsers */
  719. }
  720. .highlight .lineno::-moz-selection {
  721. background: transparent;
  722. /* Gecko Browsers */
  723. }
  724. .highlight pre {
  725. background-color: #282C34;
  726. color: #D7DAE0;
  727. border: none;
  728. margin-bottom: 25px;
  729. font-size: 15px;
  730. padding: 20px 10px;
  731. }
  732. .highlight {
  733. font-weight: 700;
  734. }
  735. .table > tbody > tr > td,
  736. .table > tbody > tr > th {
  737. vertical-align: middle !important;
  738. }
  739. /*Global*/
  740. body {
  741. background: #1d1f21 none !important;
  742. color: #D5D8D7 !important;
  743. }
  744. a {
  745. color: #41a2ce !important;
  746. text-decoration: none !important;
  747. }
  748. a:hover {
  749. color: #5F89AC !important;
  750. }
  751. input,
  752. button,
  753. textarea,
  754. select {
  755. border: 1px solid #282a2e !important;
  756. background-color: #444 !important;
  757. color: #BBB !important;
  758. }
  759. input:focus,
  760. button:focus,
  761. textarea:focus,
  762. select:focus {
  763. border: 1px solid #C5C8C6 !important;
  764. box-shadow: initial !important;
  765. }
  766. div#advanced-search-container div#categories label {
  767. background: none;
  768. border: 1px solid #282a2e;
  769. }
  770. ul.nav li a {
  771. border: 0 !important;
  772. border-bottom: 1px solid #4d3f43 !important;
  773. }
  774. #categories *,
  775. .modal-wrapper * {
  776. background: #1d1f21 none !important;
  777. color: #D5D8D7 !important;
  778. }
  779. #categories * {
  780. border: 1px solid #3d3f43 !important;
  781. }
  782. #categories *:checked + label {
  783. border-bottom: 4px solid #3d9f94 !important;
  784. }
  785. .result-content,
  786. .result-source,
  787. .result-format {
  788. color: #B5B8B7 !important;
  789. }
  790. .external-link {
  791. color: #35B887 !important;
  792. }
  793. .table-striped tr td,
  794. .table-striped tr th {
  795. border-color: #4d3f43 !important;
  796. }
  797. .highlight {
  798. background: #333333 !important;
  799. }
  800. /*nav*/
  801. .navbar {
  802. background: #1d1f21 none;
  803. border: none;
  804. }
  805. .navbar .active,
  806. .menu {
  807. background: none !important;
  808. }
  809. .label-default {
  810. background: none;
  811. color: #BBB;
  812. }
  813. .navbar-default .navbar-nav > .active > a,
  814. .navbar-default .navbar-nav > .active > a:hover,
  815. .navbar-default .navbar-nav > .active > a:focus,
  816. .nav-tabs.nav-justified > .active > a {
  817. background-color: #282a2e !important;
  818. }
  819. /*Search Page*/
  820. .result-default:hover,
  821. .result-code:hover,
  822. .result-torrent:hover,
  823. .result-videos:hover,
  824. .result-map:hover {
  825. background-color: #222426;
  826. }
  827. /*buttons*/
  828. .btn {
  829. color: #BBB;
  830. background-color: #444 ;
  831. border: 1px solid #282a2e;
  832. }
  833. .btn:hover {
  834. color: #444 !important;
  835. background-color: #BBB !important;
  836. }
  837. .btn-primary.active {
  838. color: #C5C8C6;
  839. background-color: #5F89AC;
  840. border-color: #5F89AC;
  841. }
  842. /*Right Pannels*/
  843. .panel {
  844. border: 1px solid #111;
  845. background: none;
  846. }
  847. .panel-heading {
  848. color: #C5C8C6 !important;
  849. background: #282a2e !important;
  850. border-bottom: none;
  851. }
  852. .panel-body {
  853. color: #C5C8C6 !important;
  854. background: #1d1f21 !important;
  855. border-color: #111 !important;
  856. }
  857. p.btn.btn-default {
  858. background: none;
  859. }
  860. .table-striped > tbody > tr:nth-child(odd) > td,
  861. .table-striped > tbody > tr:nth-child(odd) > th,
  862. .table-striped > thead > tr:nth-child(odd) > th {
  863. background: #2d2f32 none !important;
  864. color: #D5D8D7 !important;
  865. }
  866. .label-success {
  867. background: #1d6f42 none !important;
  868. }
  869. .label-danger {
  870. background: #ad1f12 none !important;
  871. }
  872. .searx-navbar {
  873. background: #333334;
  874. height: 2.3rem;
  875. font-size: 1.3rem;
  876. line-height: 1.3rem;
  877. padding: 0.5rem;
  878. font-weight: bold;
  879. margin-bottom: 0.8rem;
  880. }
  881. .searx-navbar a,
  882. .searx-navbar a:hover {
  883. margin-right: 2.0rem;
  884. color: white;
  885. text-decoration: none;
  886. }
  887. .searx-navbar .instance a {
  888. color: #01d7d4;
  889. margin-left: 2.0rem;
  890. }
  891. #main-logo {
  892. margin-top: 20vh;
  893. margin-bottom: 25px;
  894. }
  895. #main-logo > img {
  896. max-width: 350px;
  897. width: 80%;
  898. }
  899. .onoffswitch-inner:before,
  900. .onoffswitch-inner:after {
  901. background: #1d1f21 none !important;
  902. }
  903. .onoffswitch-switch,
  904. .onoffswitch-label {
  905. border: 2px solid #3d3f43 !important;
  906. }
  907. .nav > li > a:hover,
  908. .nav > li > a:focus {
  909. background-color: #3d3f43 !important;
  910. }
  911. /*Images search*/
  912. .img-thumbnail,
  913. .thumbnail {
  914. padding: 0px;
  915. line-height: 1.42857143;
  916. background: none;
  917. border: none;
  918. }
  919. .modal-content {
  920. background: #1d1f21 none !important;
  921. }
  922. /*Preferences*/
  923. .table > thead > tr > td.danger,
  924. .table > tbody > tr > td.danger,
  925. .table > tfoot > tr > td.danger,
  926. .table > thead > tr > th.danger,
  927. .table > tbody > tr > th.danger,
  928. .table > tfoot > tr > th.danger,
  929. .table > thead > tr.danger > td,
  930. .table > tbody > tr.danger > td,
  931. .table > tfoot > tr.danger > td,
  932. .table > thead > tr.danger > th,
  933. .table > tbody > tr.danger > th,
  934. .table > tfoot > tr.danger > th {
  935. background: rgba(240, 0, 0, 0.56) !important;
  936. color: #C5C8C6 !important;
  937. }
  938. .table-hover > tbody > tr > td.danger:hover,
  939. .table-hover > tbody > tr > th.danger:hover,
  940. .table-hover > tbody > tr.danger:hover > td,
  941. .table-hover > tbody > tr:hover > .danger,
  942. .table-hover > tbody > tr.danger:hover > th {
  943. background: rgba(237, 59, 59, 0.61) !important;
  944. color: #C5C8C6 !important;
  945. }
  946. .table-hover > tbody > tr:hover > td,
  947. .table-hover > tbody > tr:hover > th {
  948. background: #66696e !important;
  949. }
  950. .btn-success {
  951. color: #C5C8C6;
  952. background: #449d44;
  953. }
  954. .btn-danger {
  955. color: #C5C8C6;
  956. background: #d9534f;
  957. }
  958. .well {
  959. background: #444;
  960. border-color: #282a2e;
  961. }
  962. .highlight {
  963. background-color: transparent !important;
  964. }