logo

searx

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

search.less (966B)


  1. /*
  2. * searx, A privacy-respecting, hackable metasearch engine
  3. */
  4. .search {
  5. padding: 0;
  6. margin: 0;
  7. }
  8. #search_wrapper {
  9. position: relative;
  10. width: @results-width;
  11. padding: 10px;
  12. }
  13. .center #search_wrapper {
  14. margin-left: auto;
  15. margin-right: auto;
  16. }
  17. .q {
  18. background: none repeat scroll 0 0 @color-search-background;
  19. border: 1px solid @color-search-border;
  20. color: @color-search-font;
  21. font-size: 16px;
  22. font-family: "Courier New", Courier, monospace;
  23. height: 28px;
  24. margin: 0;
  25. outline: medium none;
  26. padding: 2px;
  27. padding-left: 8px;
  28. padding-right: 0px !important;
  29. width: 100%;
  30. z-index: 2;
  31. }
  32. #search_submit {
  33. position: absolute;
  34. top: 15px;
  35. right: 5px;
  36. padding: 0;
  37. border: 0;
  38. background: url('../img/search-icon-pixel.png') no-repeat;
  39. background-size: 24px 24px;
  40. opacity: 0.8;
  41. width: 24px;
  42. height: 24px;
  43. font-size: 0;
  44. }
  45. @media screen and (max-width: @results-width) {
  46. #search_wrapper {
  47. width: 90%;
  48. clear:both;
  49. overflow: hidden
  50. }
  51. }