diff options
| author | MrPaulBlack <paul.accounts@protonmail.com> | 2021-09-25 15:59:10 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-09-27 12:26:54 +0200 |
| commit | 385dce213b3541feadcb820fdb49a8c7d6a39fc2 (patch) | |
| tree | ee60634eb18695e4e6473615d7c37f9e6f252c13 /searx/static/themes/simple/src/less/search.less | |
| parent | cc3c54f4cdd5d78a3db8cc80dd7ce53275133294 (diff) | |
[theme] cleanup grid layout and remove various margins and paddings from elements
Diffstat (limited to 'searx/static/themes/simple/src/less/search.less')
| -rw-r--r-- | searx/static/themes/simple/src/less/search.less | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/searx/static/themes/simple/src/less/search.less b/searx/static/themes/simple/src/less/search.less index 09ee92646..dd810de2a 100644 --- a/searx/static/themes/simple/src/less/search.less +++ b/searx/static/themes/simple/src/less/search.less @@ -3,10 +3,10 @@ */ #search { - padding: 0 2em; + padding: 0 2em 0 @results-offset; margin: 0; - background: #f7f7f7; - border-bottom: 1px solid #d7d7d7; + background: @color-header-background; + border-bottom: 1px solid @color-header-border; } #search_wrapper { @@ -104,7 +104,11 @@ vertical-align: middle; } -@media screen and (max-width: 75em) { +@media screen and (max-width: 1250px) { + #search { + padding: 0 @results-tablet-offset; + } + #categories { font-size: 90%; clear: both; |