diff options
| author | asciimoo <asciimoo@gmail.com> | 2013-11-02 17:38:57 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2013-11-02 17:38:57 +0100 |
| commit | aca566eadf7c70d31e679029cba05ab139ab4bcc (patch) | |
| tree | 14049191c7e8223a28c127d1d2f8f72b492029aa | |
| parent | 90db1f33e19ef723b0a2df731e8ca7f4f9a8ffd3 (diff) | |
[enh] searx index image added
| -rw-r--r-- | searx/static/css/style.css | 4 | ||||
| -rw-r--r-- | searx/static/img/searx.png | bin | 0 -> 34690 bytes | |||
| -rw-r--r-- | searx/templates/index.html | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/searx/static/css/style.css b/searx/static/css/style.css index 3170d76c4..8b27b3c05 100644 --- a/searx/static/css/style.css +++ b/searx/static/css/style.css @@ -18,6 +18,10 @@ html { h1 { font-size: 5em; } +h1.title { background: url('/static/img/searx.png') no-repeat; width: 100%; background-position: center; } +h1.title div { visibility: hidden; } + + input { border: 2px solid #666666; color: #444444; padding: 8px; background-color: #FFFFFF; font-size: 1.1em; } input[type="checkbox"] { visibility: hidden; } diff --git a/searx/static/img/searx.png b/searx/static/img/searx.png Binary files differnew file mode 100644 index 000000000..45037ee33 --- /dev/null +++ b/searx/static/img/searx.png diff --git a/searx/templates/index.html b/searx/templates/index.html index 8da2ef942..af9fc0942 100644 --- a/searx/templates/index.html +++ b/searx/templates/index.html @@ -2,7 +2,7 @@ {% block content %} {% include 'github_ribbon.html' %} <div class="center"> - <h1 class="title">searx</h1> + <h1 class="title"><div>searx</div></h1> {% include 'search.html' %} <p class="top_margin"> <a href="/about" class="hmarg">about</a> |