Violets-Purgatory/static/themes/rain/style.css

33 lines
537 B
CSS
Raw Normal View History

2024-05-28 18:33:32 -05:00
#card {
2024-06-30 02:14:09 -05:00
background-color: rgba(25, 0, 70, 1);
2024-06-25 12:56:22 -05:00
/* backdrop-filter: blur(5px); */
2024-05-28 18:33:32 -05:00
}
.rainStuff {
position: sticky;
top: 0;
height: 0;
2024-06-26 18:18:14 -05:00
z-index: 0;
pointer-events: none;
2024-05-28 18:33:32 -05:00
}
.rainContainer {
height: 100vh;
2024-06-23 16:09:39 -05:00
width: 95vw;
2024-05-28 18:33:32 -05:00
top: 0px;
2024-06-23 16:09:39 -05:00
left: 2.5vw;
2024-05-28 18:33:32 -05:00
position: absolute;
overflow: hidden;
}
.rainDrop {
position: absolute;
width: 5px;
background-color: rgba(0, 0, 255, 0.2);
height: 10vh;
visibility: hidden;
}
body {
background: linear-gradient(rgb(10, 10, 75), black);
}