From 9e5ac55f84184de2613494153f1e08721613b233 Mon Sep 17 00:00:00 2001 From: Kwangjin Lee <k.lee-5@student.tudelft.nl> Date: Mon, 2 Sep 2024 17:27:29 +0200 Subject: [PATCH] Update file footer_custom.html --- _includes/footer_custom.html | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/_includes/footer_custom.html b/_includes/footer_custom.html index eaece45..322dbaa 100644 --- a/_includes/footer_custom.html +++ b/_includes/footer_custom.html @@ -1,7 +1,21 @@ +<style> + .footer-logo { + display: flex; + align-items: center; + } + .footer-logo img { + height: 40px; + width: auto; + } + .footer-logo img:last-child { + margin-left: 20px; + } +</style> + <div class="footer-logo"> - <img src="{{ site.footer_logo | relative_url }}" alt="TU Delft Logo" style="height: 40px; width: auto;"> - <img src="{{ site.logo | relative_url }}" alt="MUDE Logo" style="height: 50px; width: auto; margin-top: 10px;"> - </div> - <div> - The MUDE Team © 2024 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> - </div> \ No newline at end of file + <img src="{{ site.footer_logo | relative_url }}" alt="TU Delft Logo"> + <img src="{{ site.logo | relative_url }}" alt="MUDE Logo"> +</div> +<div> + The MUDE Team © 2024 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> +</div> \ No newline at end of file -- GitLab