Advertisement
Kep13

Untitled

Dec 1st, 2020 (edited)
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @keyframes bganimation {
  2. 0%{background-position: 0% 50%;}
  3. 50%{background-position: 100% 50%;}
  4. 100%{background-position: 0% 50%;}
  5. }
  6. #HackingGui {
  7. background-size: 400% 400%;
  8. border-radius: 5%;
  9. width: 250px;
  10. text-align: center;
  11. margin-top:5%;
  12. background-image: linear-gradient(-45deg, #EE7752, #E73C7E,#23A6D5, #23D5AB);
  13. animation: bganimation 10s infinite;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement