>>17 I also just had the idea for a style that instead places the image next to the reply box, for company. It also fades the image when you start writing a post, which helps if you're ADD or something.
Again, I've sifted a few important variables and stuffed them in a block to be easy to customize.
It would probably not be practical to include this in the site. To customize your waifu, you would have to build an friggin interface (besides learn how to) and the time investment might not be worth it.
I also just had the idea for a style that instead places the image next to the reply box, for company. It also fades the image when you start writing a post, which helps if you're ADD or something.
Again, I've sifted a few important variables and stuffed them in a block to be easy to customize.
It would probably not be practical to include this in the site. To customize your waifu, you would have to build an friggin interface (besides learn how to) and the time investment might not be worth it.
:root {
--imegi: url("https://0x0.st/X-tf.avif");
--size: 10em;
--x: 15vh;
--y: 15vh;
}
form::after {
background-image: var(--imegi);
width: var(--size);
height: var(--size);
display: inline-block;
background-size: contain;
background-repeat: no-repeat;
background-position: bottom;
content: "";
margin-left: 1em;
opacity: 100%;
transition: opacity 1s ease-out
}
form:hover:after, form:focus-within:after{
opacity:50%;
transition: opacity 1s ease-out
}