Cleanup: Reduce comments

This commit is contained in:
Donatas Kirda 2024-05-16 19:17:58 +03:00
parent 23f5740b5a
commit 036c792bcd
Signed by: bloodwiing
GPG Key ID: 63020D8D3F4A164F

View File

@ -59,8 +59,6 @@
prevTimeStamp = timeStamp;
requestAnimationFrame(follow);
// setTimeout(() => {
// }, 300);
}
onMount(() => {
@ -86,12 +84,12 @@
.background {
position: absolute;
--background: black;
--color-bg: black;
--color-1: #405bf3;
--color-2: #caad77;
--color-3: #f3404f;
background: var(--background);
background: var(--color-bg);
overflow: hidden;
@ -113,16 +111,16 @@
}
.overlay {
background: radial-gradient(circle at center, var(--background) 40%, #3f0a0a, #8a0b06, #c95141, #cca6a6 45%);
background: radial-gradient(circle at center, var(--color-bg) 40%, #3f0a0a, #8a0b06, #c95141, #cca6a6 45%);
mix-blend-mode: overlay;
}
.sphere {
background: radial-gradient(circle at center, var(--background) 40%, transparent 45%);
background: radial-gradient(circle at center, var(--color-bg) 40%, transparent 45%);
}
.glow.center {
background-size: 110% 110%;
background-size: 108% 108%;
background-position: center;
@keyframes glowloop {