logicodev.css 19 KB

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