/* = Alphabetic book list = */
/* ======================== */
#book-list-nav {
- position: fixed;
+ position: absolute;
right: 50px;
width: 200px;
border: 2px #325F70 solid;
color: black;
}
+#book-list-up {
+ position: fixed;
+ bottom: 50px;
+ right: 50px;
+ border: 2px #325F70 solid;
+ padding: 10px;
+ background-color: white;
+}
+
#top-message {
background-color: #2F4110;
color: #FFF;
<form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form">
<p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
</form>
+ <a name="top">
<div id="book-list-nav">
{% trans "Table of Content" %}
{% for index, authors in books_nav.items %}
{% endif %}
{% endfor %}
</div>
+ <div id="book-list-up">
+ <p><a href="#top">{% trans "↑ top ↑" %}</a></p>
+ </div>
{% endblock %}