Advertisement
y2kcarrds

miyoun uwu ai name code

Jun 22nd, 2022
492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. src: url(https://dl.dropbox.com/s/2yw6jbbv27g8xwv/Candice%20Ef%20Regular.ttf);
  4. font-family: candice;
  5. }
  6.  
  7. #name {
  8. font-size:6em;
  9. color: #e1c8f6;
  10. font-family: candice;
  11. position: absolute;
  12. z-index: 99;
  13. top: -0.5em;
  14. left: 0.75em; /* adjust this if you want the text to be more centered */
  15. -webkit-text-stroke-width: 2px;
  16. -webkit-text-stroke-color: white;
  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. #container01, #container02, #container03 {
  54. position: absolute;
  55. z-index: 40;
  56. top: 1em;
  57. left: 1em;
  58. overflow: scroll;
  59. width: 21em;
  60. height: 21em;
  61. background: white;
  62.  
  63. </style>
  64. <div id="name">Name</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement