From 4975c2ebd8fcebbb34944b7ef4b16add3071ea43 Mon Sep 17 00:00:00 2001 From: ankitjavalkar Date: Thu, 8 Oct 2020 16:35:32 +0530 Subject: Add footer and CSS --- yaksh/static/yaksh/css/custom.css | 12 +++++++++++- yaksh/templates/base.html | 12 ++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) (limited to 'yaksh') diff --git a/yaksh/static/yaksh/css/custom.css b/yaksh/static/yaksh/css/custom.css index edb9530..302ac19 100644 --- a/yaksh/static/yaksh/css/custom.css +++ b/yaksh/static/yaksh/css/custom.css @@ -214,4 +214,14 @@ iframe { .toast-top-center { padding-top: 5em; -} \ No newline at end of file +} + +.footer { + position: fixed; + z-index: 100; + bottom: 0; + width: 100%; + background-color: #61615F; + color: white; + text-align: center; +} diff --git a/yaksh/templates/base.html b/yaksh/templates/base.html index 7bf70fb..2cc607c 100644 --- a/yaksh/templates/base.html +++ b/yaksh/templates/base.html @@ -105,6 +105,18 @@ {% block footer %} + {% endblock %} -- cgit