From ce810bd891a5250a296a4b7b6a4ff4759eb77e6a Mon Sep 17 00:00:00 2001 From: Kwangjin Lee <k.lee-5@student.tudelft.nl> Date: Mon, 2 Sep 2024 17:30:02 +0200 Subject: [PATCH] Update file footer_custom.html --- _includes/footer_custom.html | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/_includes/footer_custom.html b/_includes/footer_custom.html index 322dbaa..283ec2e 100644 --- a/_includes/footer_custom.html +++ b/_includes/footer_custom.html @@ -3,19 +3,25 @@ display: flex; align-items: center; } - .footer-logo img { - height: 40px; + .footer-logo img.tu-delft { + height: 30px; width: auto; } - .footer-logo img:last-child { - margin-left: 20px; + .footer-logo img.mude { + height: 20px; + width: auto; + margin-left: 15px; + } + .footer-text { + font-size: 14px; + margin-top: 5px; } </style> <div class="footer-logo"> - <img src="{{ site.footer_logo | relative_url }}" alt="TU Delft Logo"> - <img src="{{ site.logo | relative_url }}" alt="MUDE Logo"> + <img class="tu-delft" src="{{ site.footer_logo | relative_url }}" alt="TU Delft Logo"> + <img class="mude" src="{{ site.logo | relative_url }}" alt="MUDE Logo"> </div> -<div> +<div class="footer-text"> 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