logicodev.css 18 KB

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