ukamori

css and mp3 for blue crd tut

Jul 11th, 2022 (edited)
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.53 KB | None | 0 0
  1. <!--- MAIN CSS --->
  2. <style>
  3. @font-face {
  4. font-family: lovely script;
  5. src: url(https://dl.dropbox.com/s/ss5bqbogijw4zfj/Lovely%20Script.otf);
  6. }
  7.  
  8. #text01 {
  9. font-family: lovely script;
  10. text-shadow: -1px 0 #59ade7, 0 1px #59ade7, 1px 0 #59ade7, 0 -1px #59ade7;
  11. position: relative;
  12. top: 0.5em;
  13. z-index: 99;
  14. }
  15.  
  16. #text02, #text03, #text04 {
  17. height: 11.375em;
  18. overflow: auto;
  19. padding: 2px;
  20. padding-top: 4px;
  21. }
  22.  
  23. #image01, #image02, #image03 {
  24. border-width:9px;
  25. border-style:solid;
  26. border-image: url("https://cdn.discordapp.com/attachments/904308736712138793/995929957790388284/image_copy.png") 7 fill round;
  27. }
  28.  
  29. #text05 a {
  30. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
  31. }
  32.  
  33. #text05 a:hover {
  34. webkit-filter: blur(1px);
  35. filter: blur(1px);
  36. }
  37. </style>
  38.  
  39.  
  40. <!--- MUSIC PLAYER --->
  41. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  42.  
  43. <!-------MUSIC PLAYER BY GLENTHEMES------->
  44. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  45.  
  46. <style type="text/css">
  47. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  48. #glenplayer02 {
  49. position:relative;
  50. bottom:0;
  51. margin-bottom:0;
  52. left:0;
  53. margin-left:0;
  54. display:flex;
  55. z-index:99;
  56. }
  57. #glenplayer02 a {
  58. text-decoration:none;
  59. }
  60.  
  61. #glenplayer02 > div {
  62. align-self:center;
  63. -webkit-align-self:center;
  64. }
  65.  
  66. .music-controls {
  67. user-select:none;
  68. -webkit-user-select:none;
  69. width:25px;
  70. font-size:20px;
  71. cursor:pointer;
  72. }
  73.  
  74. .playy, .pausee {
  75. background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(144,210,255,1) 100%);
  76. -webkit-background-clip: text;
  77. -webkit-text-fill-color:transparent;
  78. -webkit-text-stroke-width: 0.5px;
  79. -webkit-text-stroke-color: #45b4ff;
  80. -webkit-filter: drop-shadow(0px 0px 1px #6fc5ff);
  81. } /* color of play & pause buttons */
  82.  
  83. .pausee {
  84. display:none;
  85. }
  86.  
  87. .sonata {
  88. margin-left:0px;
  89. margin-bottom:0;
  90. color:#222; /* color of music note symbol */
  91. }
  92.  
  93. .labeltext {
  94. margin-bottom:0;
  95. margin-left:0px;
  96. font-family:courier new;
  97. font-size:12px;
  98. color:#222; /* color of song title */
  99. }
  100.  
  101. </style>
  102. <body>
  103. <!-------MUSIC PLAYER BY GLENTHEMES------->
  104. <div id="glenplayer02">
  105. <div class="music-controls" onclick="songstart();">
  106. <div class="playy">►</div>
  107. <div class="pausee">❚❚</div>
  108. </div>
  109. <div class="sonata"></div>
  110. <div class="labeltext"><img src="http://media.tumblr.com/tumblr_mai9bahMMI1qbq39l.gif"></div>
  111. </div><!--end music player-->
  112.  
  113. <audio id="tune" src="https://cdn.discordapp.com/attachments/916511538410569829/934992724006932580/WJSN_CHOCOME___-_Super_Yuppers___Audio.mp3"></audio>
Add Comment
Please, Sign In to add comment