ruesha

name billo embed

Nov 16th, 2021 (edited)
611
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. font-family: billo;
  4. src: url(https://dl.dropbox.com/s/klv8tmajlqrb2xz/BILLO___.TTF);
  5. }
  6.  
  7. #pop {
  8. z-index: 100;
  9. position: relative;
  10. top: 140px;
  11. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  12. font-family: billo;
  13. font-size: 2.6em;
  14. color: #E8DED5;
  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.  
  20. @keyframes pop {
  21. from {
  22. transform:scale(0.95)
  23. }
  24.  
  25. 50% {
  26. transform:scale(1)
  27. }
  28.  
  29. to {
  30. transform:scale(0.95)
  31. }
  32. }
  33.  
  34. @-webkit-keyframes pop {
  35. from {
  36. -webkit-transform:scale(0.95)
  37.  
  38. }
  39.  
  40. 50% {
  41. -webkit-transform:scale(1)
  42.  
  43. }
  44.  
  45. to {
  46. -webkit-transform:scale(0.95)
  47.  
  48. }
  49. }
  50.  
  51. </style>
  52.  
  53. <div id="pop">name <font color="#000">or</font>
  54. name!</div>
Add Comment
Please, Sign In to add comment