-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.IEOinputSA.html
More file actions
34 lines (33 loc) · 916 Bytes
/
footer.IEOinputSA.html
File metadata and controls
34 lines (33 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<style>
footer: {
background: rgb(3, 77, 162);
padding: 20px 40px;
}
footer .logo-container {
max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1rem
}
footer .logo-container img {
max-width: 100%; object-fit: contain
}
footer a:hover .logo-container img {
filter: drop-shadow(1px 1px 5px #888);
}
</style>
<footer style="background: rgb(3, 77, 162); padding: 20px 40px;">
<a href="https://math4fish.ieo.csic.es/">
<div class="logo-container">
<div style="flex: 1"><img loading="lazy"
width="300"
height="200"
src="logo.math4fish.white.png"
alt="Math4fish"
sizes="(max-width: 300px) 100vw, 300px"></div>
<div style="flex: 4"><img loading="lazy"
width="1280"
height="212"
src="logo.pie.white.png"
alt=""
sizes="(max-width: 1280px) 100vw, 1280px"></div>
</div>
</a>
</footer>