MinifyJS, theming system WIP

This commit is contained in:
bingus_violet 2024-05-28 18:33:32 -05:00
parent c6eaf8e9d9
commit 62606fa9f6
6 changed files with 440 additions and 24 deletions

33
static/themes/rain.css Normal file
View file

@ -0,0 +1,33 @@
#card {
background-color: rgba(50, 0, 90, 0.5);
backdrop-filter: blur(5px);
}
.rainStuff {
position: sticky;
top: 0;
height: 0;
z-index: -5;
}
.rainContainer {
height: 100vh;
width: 80vw;
top: 0px;
left: 10vw;
position: absolute;
overflow: hidden;
}
.rainDrop {
position: absolute;
width: 5px;
backdrop-filter: blur(5px);
background-color: rgba(0, 0, 255, 0.2);
height: 10vh;
visibility: hidden;
}
body {
background: linear-gradient(rgb(10, 10, 75), black);
}