diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-10-31 08:40:30 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-10-31 08:40:30 +0100 |
commit | 987fd1483329c53a77b97b95242fdf51b209f6d6 (patch) | |
tree | 8b40997da100e8bded1c5e7edbbf47d28aff48b2 /templates | |
parent | 0e8ab5c2735b94166552ce80c18e523357a048ab (diff) | |
download | hydrilla-common-html-jinja-templates-987fd1483329c53a77b97b95242fdf51b209f6d6.tar.gz hydrilla-common-html-jinja-templates-987fd1483329c53a77b97b95242fdf51b209f6d6.zip |
adjustments to base styling
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html.jinja | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/base.html.jinja b/templates/base.html.jinja index c4d288b..b0025bd 100644 --- a/templates/base.html.jinja +++ b/templates/base.html.jinja @@ -133,7 +133,14 @@ code in a proprietary work, I am not going to enforce this in court. {% block style %} body { color: #444; + background-color: white; margin: 0; + padding: 0; + } + + div { + margin: 0; + padding: 0; } #main { @@ -147,7 +154,7 @@ code in a proprietary work, I am not going to enforce this in court. color: inherit; } - .has-colored-links a { + .has-colored-links a, p > a { color: #557b8e; } |