logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

search.less (1286B)


  1. /*
  2. * searx, A privacy-respecting, hackable metasearch engine
  3. */
  4. .search {
  5. padding: 0;
  6. margin: 0;
  7. .checkbox_container label {
  8. font-size: 0.9em;
  9. border-bottom: 2px solid @color-categories-item-border-unselected;
  10. }
  11. .checkbox_container label:hover {
  12. border-bottom: 2px solid @color-categories-item-border-unselected-hover;
  13. }
  14. .checkbox_container input[type="checkbox"]:checked + label {
  15. border-bottom: 2px solid @color-categories-item-border-selected;
  16. }
  17. }
  18. #search_wrapper {
  19. position: relative;
  20. width: @results-width;
  21. padding: 10px;
  22. }
  23. .center #search_wrapper {
  24. margin-left: auto;
  25. margin-right: auto;
  26. }
  27. .q {
  28. background: none repeat scroll 0 0 @color-search-background;
  29. border: 1px solid @color-search-border;
  30. color: @color-search-font;
  31. font-size: 16px;
  32. height: 28px;
  33. margin: 0;
  34. outline: medium none;
  35. padding: 2px;
  36. padding-left: 8px;
  37. padding-right: 0px !important;
  38. width: 100%;
  39. z-index: 2;
  40. }
  41. #search_submit {
  42. position: absolute;
  43. top: 13px;
  44. right: 1px;
  45. padding: 0;
  46. border: 0;
  47. background: url('../img/search-icon.png') no-repeat;
  48. background-size: 24px 24px;
  49. opacity: 0.8;
  50. width: 24px;
  51. height: 30px;
  52. font-size: 0;
  53. }
  54. @media screen and (max-width: @results-width) {
  55. #search_wrapper {
  56. width: 90%;
  57. clear:both;
  58. overflow: hidden
  59. }
  60. }