diff --git a/project/static/css/base.css b/project/static/css/base.css new file mode 100644 index 0000000..a519c5f --- /dev/null +++ b/project/static/css/base.css @@ -0,0 +1,22 @@ +.container-footer { + height: 100%; + display: table; + width: 100%; +} + +.footer-el { + display: table-cell; + width: 33%; + vertical-align: middle; +} + +.footer-left { + text-align: left; +} + +.footer-center { + text-align: center; +} +.footer-right { + text-align: right; +} \ No newline at end of file diff --git a/project/templates/base.html b/project/templates/base.html index 14a843e..6db516d 100644 --- a/project/templates/base.html +++ b/project/templates/base.html @@ -5,6 +5,7 @@ {% block meta %}{% endblock%} + {% block title %}{% endblock %} @@ -53,13 +54,15 @@ {% block footer %} {% endblock %}