Advertisement
ruesha

pop text (candice)

Apr 7th, 2022
1,133
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 1 0
  1. <style>
  2. @font-face {
  3. src: url(https://dl.dropbox.com/s/6mx33s74urhg4sv/Candice.ttf);
  4. font-family: Candice;
  5. }
  6.  
  7. #candice {
  8. font-family: Candice;
  9. font-size: 5em;
  10. color: #F0D1EB;
  11. -webkit-text-stroke: 2px #FFF;
  12. position: relative;
  13. top: 0.5em;
  14. z-index: 999;
  15. -webkit-animation: pop 1s ease-in-out infinite alternate;
  16. animation: pop 1s ease-in-out infinite alternate;
  17. -moz-animation: pop 1s ease-in-out infinite alternate;
  18. }
  19. @keyframes pop {
  20. from {
  21. transform:scale(0.95)
  22. }
  23. 50% {
  24. transform:scale(1)
  25. }
  26. to {
  27. transform:scale(0.95)
  28. }
  29. }
  30. @-webkit-keyframes pop {
  31. from {
  32. -webkit-transform:scale(0.95)
  33. }
  34. 50% {
  35. -webkit-transform:scale(1)
  36. }
  37. to {
  38. -webkit-transform:scale(0.95)
  39. }
  40. }
  41.  
  42. </style>
  43.  
  44. <div id="candice"> Riti! </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement