Bläddra i källkod

[enh] container div added

asciimoo 11 år sedan
förälder
incheckning
2cfefea06d
2 ändrade filer med 6 tillägg och 0 borttagningar
  1. 4
    0
      searx/static/css/style.css
  2. 2
    0
      searx/templates/base.html

+ 4
- 0
searx/static/css/style.css Visa fil

12
 
12
 
13
 a { text-decoration: none; }
13
 a { text-decoration: none; }
14
 
14
 
15
+#container { position: relative;}
16
+
15
 .result_title { margin-bottom: 0; }
17
 .result_title { margin-bottom: 0; }
16
 
18
 
17
 .result p { margin-top: 0; padding-top: 0; font-size: 0.8em; max-width: 50em; }
19
 .result p { margin-top: 0; padding-top: 0; font-size: 0.8em; max-width: 50em; }
25
 .engines { color: #888888; }
27
 .engines { color: #888888; }
26
 
28
 
27
 .small p { margin: 2px 0; }
29
 .small p { margin: 2px 0; }
30
+
31
+.right { float: right; }

+ 2
- 0
searx/templates/base.html Visa fil

12
     {% endblock %}
12
     {% endblock %}
13
 </head>
13
 </head>
14
 <body>
14
 <body>
15
+<div id="container">
15
 {% block content %}
16
 {% block content %}
16
 {% endblock %}
17
 {% endblock %}
18
+</div>
17
 </body>
19
 </body>
18
 </html>
20
 </html>