diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-16 21:36:25 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-16 21:36:25 +0530 |
commit | ee129fd2f92adb5234ffa7737e14faf290bb859e (patch) | |
tree | 76c6641a332e02cae77afcb31d7358cbb54033f7 /app/templates/base.html | |
parent | b1a18d1ee5f198e02f15254d62f50c6810e5ba5f (diff) |
added alt to plip and fixed css footer
Diffstat (limited to 'app/templates/base.html')
-rw-r--r-- | app/templates/base.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/templates/base.html b/app/templates/base.html index 5c06eba..33380b5 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -68,8 +68,8 @@ <div class="col-sm-6 col-md-3 item"> <h3>Features</h3> <ul> - <li><a href="{{ url_for('dock_upload') }}">Dock and Report (Manual)</a></li> - <li><a href="{{ url_for('dock_upload_single') }}">Dock and Report (Automatic)</a></li> + <li><a href="{{ url_for('dock_upload') }}">Dock (Manual)</a></li> + <li><a href="{{ url_for('dock_upload_single') }}">Dock (Automatic)</a></li> <li><a href="{{ url_for('pubmed') }}">PubMed Search</a></li> </ul> </div> @@ -119,7 +119,7 @@ html { list-style: none; line-height: 1.6; font-size: 14px; - margin-bottom: 0; + margin-top: 0; } .footer-dark ul a { @@ -128,6 +128,10 @@ html { opacity: 0.6; } +.footer-dark ul li { + margin-top: 10px; +} + .footer-dark ul a:hover { opacity: 0.8; } |