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;
gap: 1em;
margin-top: 1em;
}
.social-links a {
text-decoration: none; .top-floor {
color: rgb(var(--gray)); background: var(--top-footer-colour);
} width: 100%;
.social-links a:hover { height: 4em;
color: rgb(var(--gray-dark));
} }
</style> </style>