should now look more like a floor

This commit is contained in:
2026-03-30 09:18:01 +13:00
parent 541dfa8c41
commit 785c20d737

View File

@@ -3,29 +3,26 @@ const today = new Date();
--- ---
<footer> <footer>
&copy; {today.getFullYear()} sirlilpanda. All rights reserved. <div class="top-floor">
</div>
<div class="sub-floor">
&copy; {today.getFullYear()} sirlilpanda. All rights reserved.
</div> </div>
</footer> </footer>
<style> <style>
footer {
.sub-floor {
padding: 5em 1em 2em 1em; padding: 5em 1em 2em 1em;
text-align: center; text-align: center;
height: 100%; height: 100%;
background: var(--footer-colour); background: var(--footer-colour);
box-shadow: 0 50vh 0 50vh var(--footer-colour); box-shadow: 0 50vh 0 50vh var(--footer-colour);
} }
.social-links {
display: flex;
justify-content: center; .top-floor {
gap: 1em; background: var(--top-footer-colour);
margin-top: 1em; width: 100%;
} height: 4em;
.social-links a {
text-decoration: none;
color: rgb(var(--gray));
}
.social-links a:hover {
color: rgb(var(--gray-dark));
} }
</style> </style>