waltuh-hugo-theme/assets/scss/waltuh/components/_overlay.scss

19 lines
341 B
SCSS
Raw Permalink Normal View History

2023-07-19 19:33:57 +00:00
@keyframes overlay-breathe {
from {opacity: 0.04;}
to {opacity: 0.10;}
}
#overlay {
width: 100%;
height: 100vh;
top: 0;
left: 0;
position: fixed;
opacity: 0.10;
z-index: 1;
background-image: url('https://ilia.moe/img/noise.gif');
background-size: 20vmin;
animation: overlay-breathe 3s ease-in infinite alternate;
}