Violets-Purgatory/static/themes/rain.css

32 lines
508 B
CSS
Raw Normal View History

2024-05-28 18:33:32 -05:00
#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;
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);
}