diff options
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/base.html.jinja')
-rw-r--r-- | src/hydrilla/proxy/web_ui/templates/base.html.jinja | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/base.html.jinja b/src/hydrilla/proxy/web_ui/templates/base.html.jinja index c6f0dcf..4a9adf8 100644 --- a/src/hydrilla/proxy/web_ui/templates/base.html.jinja +++ b/src/hydrilla/proxy/web_ui/templates/base.html.jinja @@ -23,7 +23,19 @@ in a proprietary work, I am not going to enforce this in court. <html> <head> {% block head %} - <title>{% block title required %}{% endblock %} - Haketilo proxy</title> + <title>{% block title required %}{% endblock %} - Haketilo proxy</title> + <style> + {% block style %} + body { + color: #444; + } + + #main { + max-width: 750px; + margin: auto; + } + {% endblock %} + </style> {% endblock %} </head> <body> |