added sun and stars

This commit is contained in:
8BitBiscotti
2024-12-11 14:51:08 +01:00
parent d66ae0dd55
commit dc61e02c60
6 changed files with 50 additions and 9 deletions
+29
View File
@@ -0,0 +1,29 @@
body {
height: 100vh;
background-image: radial-gradient(
circle at center 50%,
#62007f 0%,
#0d0035 100%);
background-position: 0% 10vh;
overflow: hidden;
background-color: #dadada !important;
}
.synthSun {
width: calc(40px * var(--pxDensity));
height: auto;
aspect-ratio: 1 / 1;
image-rendering: pixelated;
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
filter: drop-shadow(0px 0px 100px #C1AB00)
}
#starNoise {
position: fixed;
width: calc(512px * var(--pxDensity));
height: auto;
aspect-ratio: 1 / 1;
image-rendering: pixelated;
transform: translate(-50%, -50%);
}