aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui/templates/base.html.jinja
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-08-18 13:40:16 +0200
committerWojtek Kosior <koszko@koszko.org>2022-08-22 12:55:02 +0200
commit46ac94463bf42c6a071c258a37b2a58e88e0dfaa (patch)
tree39e7379f3bc7465a787a301be9ae7d560ceeaeee /src/hydrilla/proxy/web_ui/templates/base.html.jinja
parentdd332603636dc82c15abc3aa13ea0497174f9c32 (diff)
downloadhaketilo-hydrilla-46ac94463bf42c6a071c258a37b2a58e88e0dfaa.tar.gz
haketilo-hydrilla-46ac94463bf42c6a071c258a37b2a58e88e0dfaa.zip
make it possible to list all repositories in the web UI
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/base.html.jinja')
-rw-r--r--src/hydrilla/proxy/web_ui/templates/base.html.jinja34
1 files changed, 24 insertions, 10 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/base.html.jinja b/src/hydrilla/proxy/web_ui/templates/base.html.jinja
index 4a9adf8..bca5948 100644
--- a/src/hydrilla/proxy/web_ui/templates/base.html.jinja
+++ b/src/hydrilla/proxy/web_ui/templates/base.html.jinja
@@ -25,16 +25,30 @@ in a proprietary work, I am not going to enforce this in court.
{% block head %}
<title>{% block title required %}{% endblock %} - Haketilo proxy</title>
<style>
- {% block style %}
- body {
- color: #444;
- }
-
- #main {
- max-width: 750px;
- margin: auto;
- }
- {% endblock %}
+ {% block style %}
+ body {
+ color: #444;
+ }
+
+ #main {
+ max-width: 750px;
+ margin: auto;
+ }
+
+ a {
+ text-decoration: inherit;
+ color: inherit;
+ }
+
+ .small-print {
+ font-size: 80%;
+ color: #555;
+ }
+
+ .hide {
+ display: none !important;
+ }
+ {% endblock %}
</style>
{% endblock %}
</head>