Make overlay scale better

This commit is contained in:
Emilia Allison 2022-10-02 21:59:53 -04:00
parent d77ccd47ee
commit adcd9b0f38
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
@keyframes overlay-breathe {
from {opacity: 0.04;}
to {opacity: 0.12;}
to {opacity: 0.10;}
}
#overlay {
width: 100%;
@ -12,7 +12,7 @@
opacity: 0.10;
z-index: 1;
background-image: url('https://ilia.moe/img/noise.gif');
background-size: 25%;
background-size: 20vmin;
animation: overlay-breathe 4s ease infinite alternate;
animation: overlay-breathe 3s ease-in infinite alternate;
}