diff options
author | ankitjavalkar | 2020-10-08 16:40:35 +0530 |
---|---|---|
committer | GitHub | 2020-10-08 16:40:35 +0530 |
commit | 906e7cc6f30e8a07ed10deb35c4f2f57d397b70e (patch) | |
tree | f26c2e09475eac0c21e2a0232efb1b749ea8bcbf /yaksh | |
parent | aaf8f36bce5fff6c36bcbac3fa038ae99304b73f (diff) | |
parent | 4975c2ebd8fcebbb34944b7ef4b16add3071ea43 (diff) | |
download | online_test-906e7cc6f30e8a07ed10deb35c4f2f57d397b70e.tar.gz online_test-906e7cc6f30e8a07ed10deb35c4f2f57d397b70e.tar.bz2 online_test-906e7cc6f30e8a07ed10deb35c4f2f57d397b70e.zip |
Merge pull request #779 from ankitjavalkar/fix-foot
Add footer and CSS
Diffstat (limited to 'yaksh')
-rw-r--r-- | yaksh/static/yaksh/css/custom.css | 12 | ||||
-rw-r--r-- | yaksh/templates/base.html | 12 |
2 files changed, 23 insertions, 1 deletions
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 %} + <footer class="footer"> + <div class="container"> + <div class="row"> + <div class="col"> + Developed by FOSSEE group, IIT Bombay + </div> + <div class="col"> + Contact: pythonsupport@fossee.in + </div> + </div> + </div> + </footer> {% endblock %} </body> |