aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-09-03 10:16:19 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-09-03 10:16:19 +0200
commit0dfd0a73a5727eb254065c961cff82bb31e51320 (patch)
tree30151e168366a4ef53907b674292cd393f561d12 /source
parentImprovement of the template for the /index page. (diff)
downloadnewspipe-0dfd0a73a5727eb254065c961cff82bb31e51320.tar.gz
newspipe-0dfd0a73a5727eb254065c961cff82bb31e51320.tar.bz2
newspipe-0dfd0a73a5727eb254065c961cff82bb31e51320.zip
Improvement to the CSS for the navigation container.
Diffstat (limited to 'source')
-rwxr-xr-xsource/static/css/style.css8
-rw-r--r--source/static/templates/index.html1
2 files changed, 5 insertions, 4 deletions
diff --git a/source/static/css/style.css b/source/static/css/style.css
index 87408e36..e99bfb7c 100755
--- a/source/static/css/style.css
+++ b/source/static/css/style.css
@@ -67,13 +67,15 @@ hr {
/* Navigation bars */
.nav_container {
position:fixed;
- top:112px;
right:5px;
- margin:0px;
- padding:0px;
+ margin:5px;
+ padding:5px;
white-space:nowrap;
z-index:3;
clear:both;
+ border-style:dashed;
+ border-width:thin;
+ border-color:#98bf21;
}
.nav_container.horizontal {
position:absolute;
diff --git a/source/static/templates/index.html b/source/static/templates/index.html
index 0b2a23b8..88ca7a87 100644
--- a/source/static/templates/index.html
+++ b/source/static/templates/index.html
@@ -7,7 +7,6 @@ import utils
<form method=get action="/search/">
<input type="search" name="query" value="" placeholder="Search articles" maxlength=2048 autocomplete="on" />
</form>
- <hr />
<div class="nav_container"><div align="center"><i><a href="/subscriptions/">Subscriptions</a></i> (${nb_feeds})<br /></div>
<%
html = ""
bgstack15