dollcrds

2 crditem crd codes

Jul 11th, 2022
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <style>
  2. #text01 {
  3. background:linear-gradient(to top, #9f8bb0 0%, #925586 80%);
  4. -webkit-background-clip: text;
  5. -webkit-text-fill-color: transparent;
  6. -webkit-text-stroke: 0.5px #695595;
  7. -webkit-filter: drop-shadow(0px 0px 1.5px #695595);
  8. }
  9.  
  10. #text02 {
  11. background: radial-gradient(circle, #925586 0%, #9f8bb0 76%);
  12. border: 1px solid #695595;
  13. border-radius:90%;
  14. padding-left:10px;
  15. padding-right:10px;
  16. font-size:1.5em;
  17. color:white;
  18. -webkit-text-stroke: 0.5px #695595;
  19. position: absolute;
  20. z-index: 99;
  21. top: -1em;
  22. width: 4.5em;
  23. height: 1.2em;
  24. }
  25.  
  26. #image01 {
  27. position: absolute;
  28. left: 9em;
  29. bottom: 5em;
  30. }
  31.  
  32. #image01 {
  33. animation-name: floating;
  34. animation-duration: 3s;
  35. animation-iteration-count: infinite;
  36. animation-timing-function: ease-in-out;
  37. }
  38.  
  39. @keyframes floating {
  40. 0% { transform: translate(0, 0px); }
  41. 50% { transform: translate(0, 7px); }
  42. 100% { transform: translate(0, -0px); }
  43. </style>
Advertisement
Add Comment
Please, Sign In to add comment