Files
jonasChristoph e6eeecbf44 Update footer.ejs
Footer verlinkung
2022-03-30 14:47:37 +02:00

31 lines
545 B
Plaintext

<div class="footerDIV">
<div class="footerDIVLogo">
<img style="cursor:pointer" onclick="window.open('/', '_self')" src="/images/logo.png">
</div>
</div>
<style type="text/css">
.footerDIV {
width: 100%;
background-color: #414854;
clear: both;
position: flex;
height: 65px;
margin-top: -56px;
}
/* LOGO PART */
.footerDIVLogo {
width: 20%;
height:80%;
margin-left: auto;
margin-right: auto;
}
.footerDIVLogo > img {
height: 80%;
position: relative;
top:20%;
left:40%;
margin-left: auto;
margin-right: auto;
}
</style>