Repos / pytaku / a775d20a5d
commit a775d20a5dfaf3b2e76689e312e090b95792cf59
Author: Bùi Thành Nhân <hi@imnhan.com>
Date: Sat Aug 8 15:56:54 2020 +0700
less intrusive footer
diff --git a/pyproject.toml b/pyproject.toml
index f4b556e..48bf9e1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytaku"
-version = "0.2.3"
+version = "0.2.4"
description = ""
authors = ["Bùi Thành Nhân <hi@imnhan.com>"]
license = "AGPL-3.0-only"
diff --git a/src/pytaku/static/base.css b/src/pytaku/static/base.css
index 6307f64..447e396 100644
--- a/src/pytaku/static/base.css
+++ b/src/pytaku/static/base.css
@@ -181,9 +181,12 @@ .content > * {
}
footer {
- padding: 1rem var(--body-padding);
- background-color: #eee;
+ padding: 1rem var(--body-padding) var(--body-padding) var(--body-padding);
line-height: 1.5em;
+ opacity: 0.7;
+}
+footer a {
+ color: inherit;
}
/* sticky footer */
diff --git a/src/pytaku/templates/home.html b/src/pytaku/templates/home.html
index 76030ea..92c7871 100644
--- a/src/pytaku/templates/home.html
+++ b/src/pytaku/templates/home.html
@@ -7,6 +7,4 @@
{% block content %}
<p>Try searching for some manga title using the box above.</p>
<p>Logging in allows you to follow manga titles.</p>
-
-<p><strong>This is a work in progress.</strong> Expect bugs.</p>
{% endblock %}