diff options
| author | asciimoo <asciimoo@gmail.com> | 2013-10-19 19:55:43 +0200 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2013-10-19 19:55:43 +0200 |
| commit | 247c9144f20572be29aa8f0911dd1aa1824007b1 (patch) | |
| tree | d7d6cd7c3beb542aa64692f6b4d0707a992de5d6 | |
| parent | a8736f071350a08a5e66a9886dbf2c170148b53b (diff) | |
[enh] smaller search form @ results page
| -rw-r--r-- | searx/static/css/style.css | 2 | ||||
| -rw-r--r-- | searx/templates/results.html | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/searx/static/css/style.css b/searx/static/css/style.css index e9d032dfd..79e7ca2cb 100644 --- a/searx/static/css/style.css +++ b/searx/static/css/style.css @@ -23,3 +23,5 @@ a { text-decoration: none; } .q { width: 30em; } .engines { color: #888888; } + +.small p { margin: 2px 0; } diff --git a/searx/templates/results.html b/searx/templates/results.html index 192627ea3..287f71477 100644 --- a/searx/templates/results.html +++ b/searx/templates/results.html @@ -1,6 +1,8 @@ {% extends "base.html" %} {% block content %} -{% include 'search.html' %} +<div class="small"> + {% include 'search.html' %} +</div> <div id="results"> {% for result in results %} <div class="result"> |