logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 94b824dc579a78c0a28ddc0e9c43c23904c03f57
parent: bb9dcf6e575be83ce1e68fb68ea63ae188ba30eb
Author: asciimoo <asciimoo@gmail.com>
Date:   Fri,  1 Nov 2013 19:04:48 +0100

[enh] ui mods

Diffstat:

Msearx/static/css/style.css2+-
Msearx/templates/results.html6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/searx/static/css/style.css b/searx/static/css/style.css @@ -126,4 +126,4 @@ tr:hover td { background: #DDDDDD; } } #search_submit { position: absolute; top: 6px; right: 3px; border: 0; padding: 6px; background: url('/static/img/search-icon.png'); background-size: 30px 30px; width: 30px; height: 30px; } -#results { margin-left: 10px; } +#results { margin-left: 10px; margin-top: 10px; } diff --git a/searx/templates/results.html b/searx/templates/results.html @@ -1,13 +1,13 @@ {% extends "base.html" %} {% block head %} {% endblock %} {% block content %} -<div class="right"> - <a href="/" title="searx" class="site_link">searx</a> | Number of results: {{ number_of_results }} -</div> <div class="small"> {% include 'search.html' %} </div> <div id="results"> +<div> + Number of results: {{ number_of_results }} +</div> {% for result in results %} {% if result['template'] %} {% include 'result_templates/'+result['template'] %}