dollcrds

2 ikisschris crd codes

Jul 5th, 2022
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <style>
  2. ::-webkit-scrollbar {
  3. width: 0; /* remove scrollbar space */
  4. background: transparent; /* to make scrollbar invisible */
  5. }
  6. ::-webkit-scrollbar-thumb {
  7. background: transparent;
  8. }
  9. @font-face {
  10. font-family: lovely;
  11. src: url(https://dl.dropbox.com/s/xde2bkhiie1bm8r/LovelyRegular.ttf);
  12. }
  13.  
  14. @font-face {
  15. font-family:'fenotype';
  16. src: url(https://dl.dropbox.com/s/klo6yfrf62916qp/02.10FEN.TTF);
  17.  
  18. }
  19.  
  20. #float {
  21. animation-name: floating;
  22. animation-duration: 3s;
  23. animation-iteration-count: infinite;
  24. animation-timing-function: ease-in-out;
  25. z-index: 9999;
  26. }
  27.  
  28. @keyframes floating {
  29. 0% { transform: translate(0, 0px); }
  30. 50% { transform: translate(0, 7px); }
  31. 100% { transform: translate(0, -0px); }
  32. </style>
Advertisement
Add Comment
Please, Sign In to add comment