styling the shit out of this crap

This commit is contained in:
sakrecoer 2025-05-18 21:28:22 +02:00
parent 85c3c1b324
commit 688334611c
11 changed files with 535 additions and 163 deletions

View file

@ -0,0 +1,32 @@
<style>
nav {
position: fixed;
bottom: 0;
left: 0;
z-index: 1000;
width: 100vw;
height: 100px;
background-color: rgba(128, 0, 128, .5);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
color: orange;
ul {
display: flex;
list-style-type: none;
}
li > a {
color: orange;
}
}
</style>
<nav>
<ul>
<li><a href="/2025/#video">Video</a></li>
<li><a href="/2025/#about">About</a></li>
<li><a href="/2025/#radio">Radio</a></li>
<li><a href="/2025/#discog">Discography</a></li>
</ul>
</nav>