search.less 917B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. height: 28px;
  23. margin: 0;
  24. outline: medium none;
  25. padding: 2px;
  26. padding-left: 8px;
  27. padding-right: 0px !important;
  28. width: 100%;
  29. z-index: 2;
  30. }
  31. #search_submit {
  32. position: absolute;
  33. top: 13px;
  34. right: 1px;
  35. padding: 0;
  36. border: 0;
  37. background: url('../img/search-icon-pixel.png') no-repeat;
  38. background-size: 24px 24px;
  39. opacity: 0.8;
  40. width: 24px;
  41. height: 30px;
  42. font-size: 0;
  43. }
  44. @media screen and (max-width: @results-width) {
  45. #search_wrapper {
  46. width: 90%;
  47. clear:both;
  48. overflow: hidden
  49. }
  50. }