overlay god help me

This commit is contained in:
etherware-novice 2024-08-31 12:22:50 -05:00
parent 0497e60372
commit 96d8e07817
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701

View File

@ -112,3 +112,25 @@ code {
padding: .5em;
margin: 0.5em 0.25em;
}
a:hover{
text-shadow: 0px 0px 3px #C8CEB0 ;
}
body::before {
content: "";
position: fixed;
left: 0px; top: 0px;
width: 100%; height: 100%;
opacity: 0.2;
pointer-events: none; z-index: 1000;
background-image: url("/assets/images/decor/overlay.png");
animation-name: static;
animation-duration: 2s; animation-iteration-count: infinite;
animation-timing-function: steps(4);
}
@keyframes static {
0% { background-position: 0 0 }
100% { background-position: 0 4px }
}