Comments on 8byte All Comments

Hi! I just saw your user code and I was wondering what css you were using to make your interface completely black/grey. And also how you got your characters picture to like move up and down/animate itself?

It's custom CSS I wrote for myself! And for the character, it's an animation CSS on infinite loop.

Ah do you have the animation CSS available for use?

It's a small snippet so I don't have it posted anywhere! It's a very simple keyframes animation.

Can you maybe help me add that to my profile page? Where the focal image is of my character?

@keyframes upAndDown {
  0% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(-7px);
  }
}
2 Replies