Advertisement
powys

pop name on claris crd

Jun 13th, 2021
856
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <head>
  2. <link rel="preconnect" href="https://fonts.gstatic.com">
  3. <link href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap" rel="stylesheet">
  4. </head>
  5.  
  6. <style>
  7. #oops {
  8. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  9. font-style: normal;
  10. font-size:3em;
  11. font-family: 'Fredoka One', cursive;
  12. font-weight:bold;
  13. color: #fff;
  14. position:relative;
  15. bottom:-45px;
  16. z-index:1;
  17. -webkit-animation: pop 1s ease-in-out infinite alternate;
  18. animation: pop 1s ease-in-out infinite alternate;
  19. -moz-animation: pop 1s ease-in-out infinite alternate;
  20. }
  21.  
  22. @keyframes pop {
  23. from {
  24. transform:scale(0.95)
  25. }
  26.  
  27. 50% {
  28. transform:scale(1)
  29. }
  30.  
  31. to {
  32. transform:scale(0.95)
  33. }
  34. }
  35.  
  36. @-webkit-keyframes pop {
  37. from {
  38. -webkit-transform:scale(0.95)
  39.  
  40. }
  41.  
  42. 50% {
  43. -webkit-transform:scale(1)
  44.  
  45. }
  46.  
  47. to {
  48. -webkit-transform:scale(0.95)
  49.  
  50. }
  51. }
  52.  
  53. </style>
  54. <div id="oops">name</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement