dollcrds

pro-standard cr narumitsuluv misc

May 10th, 2024 (edited)
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. ---MUSIC PLAYER---
  2. <style>
  3. @font-face {
  4. font-family: emoji;
  5. src: url(https://dl.dropbox.com/s/cvba4kh6qm23mru/EmojiFont.ttf);
  6. }
  7.  
  8. #music-player {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. z-index: 99;
  13. height: 1.425em;
  14. width: 1.425em;
  15. font-size: 2em;
  16. font-family: emoji;
  17. padding: 0.125em;
  18. background: #C4D4FD;
  19. border-radius: 50%;
  20. background: -webkit-linear-gradient(-90deg, #fff, #DE9CC1, #DE9CC1 50px);
  21. -webkit-background-clip: text;
  22. -webkit-text-fill-color: transparent;
  23. -webkit-filter: drop-shadow(0px 0px 2px #424242CF);
  24. -webkit-animation: spin 2s linear infinite;
  25. -webkit-animation:spin 4s linear infinite;
  26. -moz-animation:spin 4s linear infinite;
  27. animation:spin 4s linear infinite;
  28. position: absolute;
  29. bottom: 2em;
  30. right: 25px;
  31. }
  32.  
  33. @media only screen and (max-width: 600px) {
  34. #music-player {
  35. font-size: 1.85em;
  36. bottom: 2.85em;
  37. right: 15px;
  38. }
  39. }
  40.  
  41. @-moz-keyframes spin { 100% {
  42. -moz-transform: rotate(360deg); }
  43. }
  44.  
  45. @-webkit-keyframes spin { 100% {
  46. -webkit-transform: rotate(360deg); }
  47. }
  48.  
  49. @keyframes spin { 100% {
  50. -webkit-transform: rotate(360deg); transform:rotate(360deg); }
  51. }
  52.  
  53. #music-player:hover { -webkit-animation: pop 0.3s ease; }
  54. </style>
  55.  
  56. <div id="music-player" onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()">s</div><script> document.getElementById("music-player").onclick = function() {
  57. var audio = document.getElementById("audio");
  58. if (audio.paused) audio.play();
  59. else audio.pause();
  60. };
  61. </script>
  62.  
  63. <audio id="audio" src="https://dl.dropbox.com/scl/fi/2k057sh85w76p85ce48rp/01-I_ll-See-You-There-Tomorrow.mp3?rlkey=iq7rmm38nqj1eowvs7sn5uldv&st=pvk1fr80&dl=0.mp3"></audio>
  64.  
  65. ---BLINKING TEXT---
  66. <style>
  67. @font-face {
  68. font-family: windows;
  69. src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
  70. }
  71. p3 {
  72. color: #575757;
  73. animation: blinkingText 1.2s infinite;
  74. margin: auto;
  75. font-size: 1rem;
  76. font-family: windows;
  77.  
  78. }
  79.  
  80. @keyframes blinkingText {
  81. 0% {
  82. color: #575757;
  83. }
  84.  
  85. 49% {
  86. color: #575757;
  87. }
  88.  
  89. 60% {
  90. color: white;
  91. }
  92.  
  93. 99% {
  94. color: white;
  95. }
  96.  
  97. 100% {
  98. color: #575757;
  99. }
  100. }
  101.  
  102. </style>
  103.  
  104. <p3>tubatu 4eva</p3>
  105.  
  106. ---MISC CODES & MOBILE SETTINGS---
  107. <style>
  108. * {
  109. scrollbar-width: auto;
  110. scrollbar-color: #FFFCB0 #ffffff;
  111. }
  112.  
  113. /* Chrome, Edge, and Safari */
  114. *::-webkit-scrollbar {
  115. width: 35px;
  116. }
  117.  
  118. *::-webkit-scrollbar-track {
  119. background: #ffffff;
  120. }
  121.  
  122. *::-webkit-scrollbar-thumb {
  123. background-color: #FFFCB0;
  124. border-radius: 0px;
  125. border: 0px solid #ffffff;
  126. }
  127. @font-face {
  128. font-family: windows;
  129. src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
  130. }
  131. @font-face {
  132. font-family: Butterflies;
  133. src: url(https://dl.dropbox.com/s/l1w3wn5xnj8acn2/Butterflies.ttf);
  134. }
  135. @font-face {
  136. font-family: hibiscus;
  137. src: url(https://dl.dropbox.com/s/7y1uc54cr7geagp/Hibiscus.ttf);
  138. }
  139. @font-face {
  140. font-family: kitten;
  141. src: url(https://dl.dropbox.com/s/iu9a60e3nidrio6/KittenSlantTrial.ttf);
  142. }
  143. @keyframes floating {
  144. 0% { transform: translate(0, 0px); }
  145. 50% { transform: translate(0, 15px); }
  146. 100% { transform: translate(0, -0px); }
  147. }
  148. @media only screen and (max-width: 600px) {
  149. #container01 {
  150. width: 350px;
  151. }
  152. }
  153. @media only screen and (max-width: 600px) {
  154. #container08 {
  155. width: 225px;
  156. }
  157. }
  158. @media only screen and (max-width: 600px) {
  159. #container09 {
  160. left: -1em;
  161. }
  162. }
  163. </style>
Advertisement
Add Comment
Please, Sign In to add comment