summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/static/css/style.css4
-rw-r--r--searx/templates/base.html2
2 files changed, 6 insertions, 0 deletions
diff --git a/searx/static/css/style.css b/searx/static/css/style.css
index 79e7ca2cb..0ae826002 100644
--- a/searx/static/css/style.css
+++ b/searx/static/css/style.css
@@ -12,6 +12,8 @@ input { border: 2px solid #666666; color: #444444; padding: 8px; background-col
a { text-decoration: none; }
+#container { position: relative;}
+
.result_title { margin-bottom: 0; }
.result p { margin-top: 0; padding-top: 0; font-size: 0.8em; max-width: 50em; }
@@ -25,3 +27,5 @@ a { text-decoration: none; }
.engines { color: #888888; }
.small p { margin: 2px 0; }
+
+.right { float: right; }
diff --git a/searx/templates/base.html b/searx/templates/base.html
index 4031aec9d..27b7dd26d 100644
--- a/searx/templates/base.html
+++ b/searx/templates/base.html
@@ -12,7 +12,9 @@
{% endblock %}
</head>
<body>
+<div id="container">
{% block content %}
{% endblock %}
+</div>
</body>
</html>