From 0714474dc6e24cb1b37142a7bbb5c29ef9908cc6 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 13 Jul 2018 08:58:12 +0200 Subject: [PATCH] Move site CSS to a separate file --- calsocial/static/css/style.css | 10 ++++++++++ calsocial/templates/base.html | 15 ++------------- 2 files changed, 12 insertions(+), 13 deletions(-) create mode 100644 calsocial/static/css/style.css diff --git a/calsocial/static/css/style.css b/calsocial/static/css/style.css new file mode 100644 index 0000000..3a40d93 --- /dev/null +++ b/calsocial/static/css/style.css @@ -0,0 +1,10 @@ +header > h1 > img { + height: 1em; +} + +footer { + margin-top: 3em; + font-weight: bold; + border-top: 1px dotted black; + padding-top: 1em; +} diff --git a/calsocial/templates/base.html b/calsocial/templates/base.html index e3adf11..10637be 100644 --- a/calsocial/templates/base.html +++ b/calsocial/templates/base.html @@ -7,20 +7,9 @@ -{% block head %} - -{% endblock %} + +{% block head %}{% endblock %}