diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-09-27 12:33:22 +0200 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 14:40:46 +0200 |
| commit | f3b565e17ecd4c875381a3a212d73fb065f9a89d (patch) | |
| tree | 1d9fe5384e3103a910286f69f17f5fa0bd24102f /searx/static | |
| parent | 915857105997357f24db86b9fcc6739fd816e98e (diff) | |
oscar template: implement first version of results page
* implement results page
* improve search form template
* implement all result_templates
* fix youtube engine
Diffstat (limited to 'searx/static')
| -rw-r--r-- | searx/static/oscar/css/oscar.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/searx/static/oscar/css/oscar.css b/searx/static/oscar/css/oscar.css index 4ff475e89..b3e42f607 100644 --- a/searx/static/oscar/css/oscar.css +++ b/searx/static/oscar/css/oscar.css @@ -25,3 +25,29 @@ input[type=checkbox]:checked ~ .label_hide_if_checked { input[type=checkbox]:not(:checked) ~ .label_hide_if_not_checked { display:none; } + +.search_categories { + margin:10px 0; +} + +.result-default { + clear: both; +} + +.result-images { + float: left !important; +} + +.result-videos { + clear: both; +} + +.result-torrents { + clear: both; +} + +.img-thumbnail { + margin: 5px; + max-height: 128px; + min-height: 128px; +} |