talas

pop up text

May 3rd, 2021
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <style>
  2. #fuck {
  3. text-shadow: -1px 0 #F7B2DF, 0 1px #F7B2DF, 1px 0 #F7B2DF, 0 -1px #F7B2DF, 0 0;
  4. font-style: italic;
  5. font-size: 4em;
  6. font-weight:bold;
  7. color: #FCE4F4;
  8. -webkit-animation: pop 1s ease-in-out infinite alternate;
  9. animation: pop 1s ease-in-out infinite alternate;
  10. -moz-animation: pop 1s ease-in-out infinite alternate;
  11. }
  12. @keyframes pop {
  13. from {
  14. transform:scale(0.95)
  15. }
  16. 50% {
  17. transform:scale(1)
  18. }
  19. to {
  20. transform:scale(0.95)
  21. }
  22. }
  23. @-webkit-keyframes pop {
  24. from {
  25. -webkit-transform:scale(0.95)
  26. }
  27. 50% {
  28. -webkit-transform:scale(1)
  29. }
  30. to {
  31. -webkit-transform:scale(0.95)
  32. }
  33. }
  34. </style>
  35. <div id="fuck">tala!</div>
Add Comment
Please, Sign In to add comment