logicodev.css 19 KB

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