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 | |
parent | b1a18d1ee5f198e02f15254d62f50c6810e5ba5f (diff) |
added alt to plip and fixed css footer
-rw-r--r-- | app/templates/base.html | 10 | ||||
-rw-r--r-- | app/templates/home.html | 2 |
2 files changed, 8 insertions, 4 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; } diff --git a/app/templates/home.html b/app/templates/home.html index 82cbc23..14b5f71 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -36,7 +36,7 @@ <br> This project would not have been possible without the following: <br><br> - <h2><img src="{{url_for('static',filename='assets/pliplogo.svg')}}" width=100vw /> PLIP</h2> + <h2><img src="{{url_for('static',filename='assets/pliplogo.svg')}}" alt="Logo of PLIP" width=100vw /> PLIP</h2> <ul> <li>PLIP is used for binding site analysis, interaction detection and visualisations.</li> |