logicodev.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  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: #068922;
  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: #666666;
  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: #007ab8;
  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: #888888;
  341. }
  342. #search_form .input-group-btn .btn {
  343. border-color: #888888;
  344. }
  345. #search_form .input-group-btn .btn:hover {
  346. background-color: #068922;
  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: #888888 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. .label-danger,
  382. .btn-danger {
  383. background: #c9432f;
  384. }
  385. .label-success,
  386. .btn-success {
  387. background: #068922;
  388. }
  389. select.form-control {
  390. border-color: #888888 !important;
  391. }
  392. #advanced-search-container {
  393. display: none;
  394. text-align: left;
  395. margin-bottom: 1rem;
  396. clear: both;
  397. }
  398. #advanced-search-container label,
  399. #advanced-search-container .input-group-addon {
  400. font-size: 1.2rem;
  401. font-weight: normal;
  402. background-color: white;
  403. border: #dddddd 1px solid;
  404. border-right: none;
  405. color: #666666;
  406. padding-bottom: 0.4rem;
  407. padding-right: 0.7rem;
  408. padding-left: 0.7rem;
  409. }
  410. #advanced-search-container label:last-child,
  411. #advanced-search-container .input-group-addon:last-child {
  412. border-right: #dddddd 1px solid;
  413. }
  414. #advanced-search-container input[type="radio"] {
  415. display: none;
  416. }
  417. #advanced-search-container input[type="radio"]:checked + label {
  418. color: #29314d;
  419. font-weight: bold;
  420. border-bottom: #01d7d4 5px solid;
  421. }
  422. #check-advanced:focus + label {
  423. text-decoration: underline;
  424. }
  425. #check-advanced:checked ~ #advanced-search-container {
  426. display: block;
  427. }
  428. .advanced {
  429. padding: 0;
  430. margin-top: 0.3rem;
  431. text-align: right;
  432. }
  433. .advanced label,
  434. .advanced select {
  435. cursor: pointer;
  436. }
  437. .cursor-text {
  438. cursor: text !important;
  439. }
  440. .cursor-pointer {
  441. cursor: pointer !important;
  442. }
  443. pre,
  444. code {
  445. font-family: 'Ubuntu Mono', 'Courier New', 'Lucida Console', monospace !important;
  446. }
  447. .lineno {
  448. margin-right: 5px;
  449. }
  450. .highlight .hll {
  451. background-color: #ffffcc;
  452. }
  453. .highlight {
  454. background: #f8f8f8;
  455. }
  456. .highlight .c {
  457. color: #556366;
  458. font-style: italic;
  459. }
  460. /* Comment */
  461. .highlight .err {
  462. border: 1px solid #ffa92f;
  463. }
  464. /* Error */
  465. .highlight .k {
  466. color: #BE74D5;
  467. font-weight: bold;
  468. }
  469. /* Keyword */
  470. .highlight .o {
  471. color: #d19a66;
  472. }
  473. /* Operator */
  474. .highlight .cm {
  475. color: #556366;
  476. font-style: italic;
  477. }
  478. /* Comment.Multiline */
  479. .highlight .cp {
  480. color: #bc7a00;
  481. }
  482. /* Comment.Preproc */
  483. .highlight .c1 {
  484. color: #556366;
  485. font-style: italic;
  486. }
  487. /* Comment.Single */
  488. .highlight .cs {
  489. color: #556366;
  490. font-style: italic;
  491. }
  492. /* Comment.Special */
  493. .highlight .gd {
  494. color: #a00000;
  495. }
  496. /* Generic.Deleted */
  497. .highlight .ge {
  498. font-style: italic;
  499. }
  500. /* Generic.Emph */
  501. .highlight .gr {
  502. color: #ff0000;
  503. }
  504. /* Generic.Error */
  505. .highlight .gh {
  506. color: #000080;
  507. font-weight: bold;
  508. }
  509. /* Generic.Heading */
  510. .highlight .gi {
  511. color: #00a000;
  512. }
  513. /* Generic.Inserted */
  514. .highlight .go {
  515. color: #888888;
  516. }
  517. /* Generic.Output */
  518. .highlight .gp {
  519. color: #000080;
  520. font-weight: bold;
  521. }
  522. /* Generic.Prompt */
  523. .highlight .gs {
  524. font-weight: bold;
  525. }
  526. /* Generic.Strong */
  527. .highlight .gu {
  528. color: #800080;
  529. font-weight: bold;
  530. }
  531. /* Generic.Subheading */
  532. .highlight .gt {
  533. color: #0044dd;
  534. }
  535. /* Generic.Traceback */
  536. .highlight .kc {
  537. color: #BE74D5;
  538. font-weight: bold;
  539. }
  540. /* Keyword.Constant */
  541. .highlight .kd {
  542. color: #BE74D5;
  543. font-weight: bold;
  544. }
  545. /* Keyword.Declaration */
  546. .highlight .kn {
  547. color: #BE74D5;
  548. font-weight: bold;
  549. }
  550. /* Keyword.Namespace */
  551. .highlight .kp {
  552. color: #be74d5;
  553. }
  554. /* Keyword.Pseudo */
  555. .highlight .kr {
  556. color: #BE74D5;
  557. font-weight: bold;
  558. }
  559. /* Keyword.Reserved */
  560. .highlight .kt {
  561. color: #d46c72;
  562. }
  563. /* Keyword.Type */
  564. .highlight .m {
  565. color: #d19a66;
  566. }
  567. /* Literal.Number */
  568. .highlight .s {
  569. color: #86c372;
  570. }
  571. /* Literal.String */
  572. .highlight .na {
  573. color: #7d9029;
  574. }
  575. /* Name.Attribute */
  576. .highlight .nb {
  577. color: #be74d5;
  578. }
  579. /* Name.Builtin */
  580. .highlight .nc {
  581. color: #61AFEF;
  582. font-weight: bold;
  583. }
  584. /* Name.Class */
  585. .highlight .no {
  586. color: #d19a66;
  587. }
  588. /* Name.Constant */
  589. .highlight .nd {
  590. color: #aa22ff;
  591. }
  592. /* Name.Decorator */
  593. .highlight .ni {
  594. color: #999999;
  595. font-weight: bold;
  596. }
  597. /* Name.Entity */
  598. .highlight .ne {
  599. color: #D2413A;
  600. font-weight: bold;
  601. }
  602. /* Name.Exception */
  603. .highlight .nf {
  604. color: #61afef;
  605. }
  606. /* Name.Function */
  607. .highlight .nl {
  608. color: #a0a000;
  609. }
  610. /* Name.Label */
  611. .highlight .nn {
  612. color: #61AFEF;
  613. font-weight: bold;
  614. }
  615. /* Name.Namespace */
  616. .highlight .nt {
  617. color: #BE74D5;
  618. font-weight: bold;
  619. }
  620. /* Name.Tag */
  621. .highlight .nv {
  622. color: #dfc06f;
  623. }
  624. /* Name.Variable */
  625. .highlight .ow {
  626. color: #AA22FF;
  627. font-weight: bold;
  628. }
  629. /* Operator.Word */
  630. .highlight .w {
  631. color: #d7dae0;
  632. }
  633. /* Text.Whitespace */
  634. .highlight .mf {
  635. color: #d19a66;
  636. }
  637. /* Literal.Number.Float */
  638. .highlight .mh {
  639. color: #d19a66;
  640. }
  641. /* Literal.Number.Hex */
  642. .highlight .mi {
  643. color: #d19a66;
  644. }
  645. /* Literal.Number.Integer */
  646. .highlight .mo {
  647. color: #d19a66;
  648. }
  649. /* Literal.Number.Oct */
  650. .highlight .sb {
  651. color: #86c372;
  652. }
  653. /* Literal.String.Backtick */
  654. .highlight .sc {
  655. color: #86c372;
  656. }
  657. /* Literal.String.Char */
  658. .highlight .sd {
  659. color: #86C372;
  660. font-style: italic;
  661. }
  662. /* Literal.String.Doc */
  663. .highlight .s2 {
  664. color: #86c372;
  665. }
  666. /* Literal.String.Double */
  667. .highlight .se {
  668. color: #BB6622;
  669. font-weight: bold;
  670. }
  671. /* Literal.String.Escape */
  672. .highlight .sh {
  673. color: #86c372;
  674. }
  675. /* Literal.String.Heredoc */
  676. .highlight .si {
  677. color: #BB6688;
  678. font-weight: bold;
  679. }
  680. /* Literal.String.Interpol */
  681. .highlight .sx {
  682. color: #be74d5;
  683. }
  684. /* Literal.String.Other */
  685. .highlight .sr {
  686. color: #bb6688;
  687. }
  688. /* Literal.String.Regex */
  689. .highlight .s1 {
  690. color: #86c372;
  691. }
  692. /* Literal.String.Single */
  693. .highlight .ss {
  694. color: #dfc06f;
  695. }
  696. /* Literal.String.Symbol */
  697. .highlight .bp {
  698. color: #be74d5;
  699. }
  700. /* Name.Builtin.Pseudo */
  701. .highlight .vc {
  702. color: #dfc06f;
  703. }
  704. /* Name.Variable.Class */
  705. .highlight .vg {
  706. color: #dfc06f;
  707. }
  708. /* Name.Variable.Global */
  709. .highlight .vi {
  710. color: #dfc06f;
  711. }
  712. /* Name.Variable.Instance */
  713. .highlight .il {
  714. color: #d19a66;
  715. }
  716. /* Literal.Number.Integer.Long */
  717. .highlight .lineno {
  718. -webkit-touch-callout: none;
  719. -webkit-user-select: none;
  720. -khtml-user-select: none;
  721. -moz-user-select: none;
  722. -ms-user-select: none;
  723. user-select: none;
  724. cursor: default;
  725. color: #556366;
  726. }
  727. .highlight .lineno::selection {
  728. background: transparent;
  729. /* WebKit/Blink Browsers */
  730. }
  731. .highlight .lineno::-moz-selection {
  732. background: transparent;
  733. /* Gecko Browsers */
  734. }
  735. .highlight pre {
  736. background-color: #282C34;
  737. color: #D7DAE0;
  738. border: none;
  739. margin-bottom: 25px;
  740. font-size: 15px;
  741. padding: 20px 10px;
  742. }
  743. .highlight {
  744. font-weight: 700;
  745. }
  746. .table > tbody > tr > td,
  747. .table > tbody > tr > th {
  748. vertical-align: middle !important;
  749. }
  750. .nav-tabs.nav-justified {
  751. margin-bottom: 20px;
  752. }
  753. p {
  754. margin: 10px 0;
  755. }
  756. input.cursor-text {
  757. margin: 10px 0;
  758. }
  759. /*Global*/
  760. body {
  761. background: #1d1f21 none !important;
  762. color: #D5D8D7 !important;
  763. }
  764. a {
  765. color: #41a2ce !important;
  766. text-decoration: none !important;
  767. }
  768. a:hover {
  769. color: #5F89AC !important;
  770. }
  771. input,
  772. button,
  773. textarea,
  774. select {
  775. border: 1px solid #282a2e !important;
  776. background-color: #444 !important;
  777. color: #BBB !important;
  778. }
  779. input:focus,
  780. button:focus,
  781. textarea:focus,
  782. select:focus {
  783. border: 1px solid #C5C8C6 !important;
  784. box-shadow: initial !important;
  785. }
  786. div#advanced-search-container div#categories label {
  787. background: none;
  788. border: 1px solid #282a2e;
  789. }
  790. ul.nav li a {
  791. border: 0 !important;
  792. border-bottom: 1px solid #4d3f43 !important;
  793. }
  794. #categories *,
  795. .modal-wrapper * {
  796. background: #1d1f21 none !important;
  797. color: #D5D8D7 !important;
  798. }
  799. #categories * {
  800. border: 1px solid #3d3f43 !important;
  801. }
  802. #categories *:checked + label {
  803. border-bottom: 4px solid #3d9f94 !important;
  804. }
  805. .result-content,
  806. .result-source,
  807. .result-format {
  808. color: #B5B8B7 !important;
  809. }
  810. .external-link {
  811. color: #35B887 !important;
  812. }
  813. .table-striped tr td,
  814. .table-striped tr th {
  815. border-color: #4d3f43 !important;
  816. }
  817. .highlight {
  818. background: #333333 !important;
  819. }
  820. /*nav*/
  821. .navbar {
  822. background: #1d1f21 none;
  823. border: none;
  824. }
  825. .navbar .active,
  826. .menu {
  827. background: none !important;
  828. }
  829. .label-default {
  830. background: none;
  831. color: #BBB;
  832. }
  833. .navbar-default .navbar-nav > .active > a,
  834. .navbar-default .navbar-nav > .active > a:hover,
  835. .navbar-default .navbar-nav > .active > a:focus,
  836. .nav-tabs.nav-justified > .active > a {
  837. background-color: #282a2e !important;
  838. }
  839. /*Search Page*/
  840. .result-default:hover,
  841. .result-code:hover,
  842. .result-torrent:hover,
  843. .result-videos:hover,
  844. .result-map:hover {
  845. background-color: #222426;
  846. }
  847. /*buttons*/
  848. .btn {
  849. color: #BBB;
  850. background-color: #444 ;
  851. border: 1px solid #282a2e;
  852. }
  853. .btn:hover {
  854. color: #444 !important;
  855. background-color: #BBB !important;
  856. }
  857. .btn-primary.active {
  858. color: #C5C8C6;
  859. background-color: #5F89AC;
  860. border-color: #5F89AC;
  861. }
  862. /*Right Pannels*/
  863. .panel {
  864. border: 1px solid #111;
  865. background: none;
  866. }
  867. .panel-heading {
  868. color: #C5C8C6 !important;
  869. background: #282a2e !important;
  870. border-bottom: none;
  871. }
  872. .panel-body {
  873. color: #C5C8C6 !important;
  874. background: #1d1f21 !important;
  875. border-color: #111 !important;
  876. }
  877. p.btn.btn-default {
  878. background: none;
  879. }
  880. .table-striped > tbody > tr:nth-child(odd) > td,
  881. .table-striped > tbody > tr:nth-child(odd) > th,
  882. .table-striped > thead > tr:nth-child(odd) > th {
  883. background: #2d2f32 none !important;
  884. color: #D5D8D7 !important;
  885. }
  886. .label-success {
  887. background: #1d6f42 none !important;
  888. }
  889. .label-danger {
  890. background: #ad1f12 none !important;
  891. }
  892. .searx-navbar {
  893. background: #333334;
  894. height: 2.3rem;
  895. font-size: 1.3rem;
  896. line-height: 1.3rem;
  897. padding: 0.5rem;
  898. font-weight: bold;
  899. margin-bottom: 0.8rem;
  900. }
  901. .searx-navbar a,
  902. .searx-navbar a:hover {
  903. margin-right: 2.0rem;
  904. color: white;
  905. text-decoration: none;
  906. }
  907. .searx-navbar .instance a {
  908. color: #01d7d4;
  909. margin-left: 2.0rem;
  910. }
  911. #main-logo {
  912. margin-top: 20vh;
  913. margin-bottom: 25px;
  914. }
  915. #main-logo > img {
  916. max-width: 350px;
  917. width: 80%;
  918. }
  919. .onoffswitch-inner:before,
  920. .onoffswitch-inner:after {
  921. background: #1d1f21 none !important;
  922. }
  923. .onoffswitch-switch,
  924. .onoffswitch-label {
  925. border: 2px solid #3d3f43 !important;
  926. }
  927. .nav > li > a:hover,
  928. .nav > li > a:focus {
  929. background-color: #3d3f43 !important;
  930. }
  931. /*Images search*/
  932. .img-thumbnail,
  933. .thumbnail {
  934. padding: 0px;
  935. line-height: 1.42857143;
  936. background: none;
  937. border: none;
  938. }
  939. .modal-content {
  940. background: #1d1f21 none !important;
  941. }
  942. /*Preferences*/
  943. .table > thead > tr > td.danger,
  944. .table > tbody > tr > td.danger,
  945. .table > tfoot > tr > td.danger,
  946. .table > thead > tr > th.danger,
  947. .table > tbody > tr > th.danger,
  948. .table > tfoot > tr > th.danger,
  949. .table > thead > tr.danger > td,
  950. .table > tbody > tr.danger > td,
  951. .table > tfoot > tr.danger > td,
  952. .table > thead > tr.danger > th,
  953. .table > tbody > tr.danger > th,
  954. .table > tfoot > tr.danger > th {
  955. background: rgba(240, 0, 0, 0.56) !important;
  956. color: #C5C8C6 !important;
  957. }
  958. .table-hover > tbody > tr > td.danger:hover,
  959. .table-hover > tbody > tr > th.danger:hover,
  960. .table-hover > tbody > tr.danger:hover > td,
  961. .table-hover > tbody > tr:hover > .danger,
  962. .table-hover > tbody > tr.danger:hover > th {
  963. background: rgba(237, 59, 59, 0.61) !important;
  964. color: #C5C8C6 !important;
  965. }
  966. .table-hover > tbody > tr:hover > td,
  967. .table-hover > tbody > tr:hover > th {
  968. background: #66696e !important;
  969. }
  970. .btn-success {
  971. color: #C5C8C6;
  972. background: #449d44;
  973. }
  974. .btn-danger {
  975. color: #C5C8C6;
  976. background: #d9534f;
  977. }
  978. .well {
  979. background: #444;
  980. border-color: #282a2e;
  981. }
  982. .highlight {
  983. background-color: transparent !important;
  984. }