hi guys!!! iāve redone my theme today (everything other than my bio and fontā¦) can i get some opinions? it was done on mobile, so im unsure if itāll look weird elsewhereā¦
Yours is so pretty, how to do those moving things though...
Reactions
Comments
Leave a comment
itās a pagedoll!!! you can only have one on your profile, the image i used has two different thingies in it to beat around thatā¦ i hope that makes sense AND YEAH HERES THE CODE!!! //
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-30px); }
} body:before { animation: float 3s ease-in-out infinite; content: ''; position: fixed; bottom: 45px; right: -5px; width: 250px; height: 250px; background-image: url(https://files.catbox.moe/xtx5al.png); background-size: contain; background-repeat: no-repeat; z-index: 1000; pointer-events: none; }
// you just need to replace the link in there with the link to ur image, and maybe muddle around with the size / position depending on how you want it placed :P