mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
Ui redesign
This commit is contained in:
2
src/interface/static/css/main.css
vendored
2
src/interface/static/css/main.css
vendored
@@ -144,7 +144,7 @@ body {
|
|||||||
/*! border-left: 5px solid #292f35; */
|
/*! border-left: 5px solid #292f35; */
|
||||||
/*! border-right: 5px solid #292f35; */
|
/*! border-right: 5px solid #292f35; */
|
||||||
/* border-right: 1px solid; */
|
/* border-right: 1px solid; */
|
||||||
background: linear-gradient(to right, #333 51%, #7d7a7ad6 181%);
|
background: linear-gradient(to right, #333 51%, #7d7a7aed 181%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.vert-nav-item {}
|
.vert-nav-item {}
|
||||||
|
|||||||
2
src/interface/templates/index.html
vendored
2
src/interface/templates/index.html
vendored
@@ -73,7 +73,7 @@
|
|||||||
<ul id="book_shelf">
|
<ul id="book_shelf">
|
||||||
{% for book in Books %}
|
{% for book in Books %}
|
||||||
<li class="shelf_item">
|
<li class="shelf_item">
|
||||||
<img alt="cover missing" src="data:image;base64,{{ book.cover | bin_2_img }}" class="book_thumb" />
|
<img alt="cover missing" src="data:image;base64,{{ book.cover | bin_2_img }}" class="book_thumb" onerror="this.src='/static/img/pysBook.png'"/>
|
||||||
<ul class="book_details_list">
|
<ul class="book_details_list">
|
||||||
<li class="book_title">{{ book.title }}</li>
|
<li class="book_title">{{ book.title }}</li>
|
||||||
<li class="book_author">{{ book.author }}</li>
|
<li class="book_author">{{ book.author }}</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user