hi bestie.. (you don't know me whoops..) do you by any chance have the code for the static (still) scanlines you're using.. maybe. perhaps. looks at you with puppy eyes and does the grabby hands thing.
Hey there, Anon! Itās okay in my head weāre the bestest of friends and I reciprocate ur puppy eyes donāt even worry bro. This isnāt my code initially, I got it from God knows where haha. The one on my profile is slightly altered so Iāll give you two versions of the code. Modifying the percentages and RGB on the part of the code that says ālinear gradientā will change the color and transparency but I donāt recommend changing it too much because I havenāt tested what itāll do yet lol.
Original Code:
body::before {
content: " ";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgb(0 0 0 / 30%) 50%, rgb(0 0 0 / 0%) 50%);
z-index: 2;
background-size: 100% 2px, 3px 100%;
pointer-events: none;
}
With my Alterations:
body::before {
content: " ";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgb(0 0 0 / 10%) 20%, rgb(0 0 0 / 0%) 80%);
z-index: 2;
background-size: 100% 2px, 3px 100%;
pointer-events: none;
}
Leave a comment