Add textbook nav on the bottom of the page too

This commit is contained in:
Kyle Fiedler
2012-02-20 11:18:58 -05:00
parent d83a4d22f3
commit bf632da06f
2 changed files with 18 additions and 0 deletions

View File

@@ -74,6 +74,13 @@ div.book-wrapper {
}
}
}
&.bottom-nav {
margin-top: lh();
margin-bottom: -(lh());
border-bottom: 0;
border-top: 1px solid #EDDFAA;
}
}
section.page {

View File

@@ -57,6 +57,17 @@ function next_page() {
</nav>
<img id="bookpage" src="${ settings.BOOK_URL }p${ "%03i"%(page) }.png">
<nav class="bottom-nav">
<ul>
<li class="last">
<a href="javascript:prev_page()">Previous page</a>
</li>
<li class="next">
<a href="javascript:next_page()">Next page</a>
</li>
</ul>
</nav>
</section>
</section>
</div>