Advertisement
izuemis

cr imnamiem on codepen

Mar 23rd, 2023
512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. -- MAIN CONTAINER --
  2. width: 60%;
  3. height: 15em;
  4.  
  5. -- MUSIC CONTAINER --
  6. width: 55%;
  7. position: absolute;
  8. right: 0em;
  9. top: -16em;
  10. height:4em;
  11.  
  12. -- GUIDELINES CONTAINER --
  13. width: 50%;
  14. position: absolute;
  15. right: 0em;
  16. top: -11.5em;
  17. height: 13em;
  18.  
  19. -- MUSIC PLAYER --
  20. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  21.  
  22. <!-------MUSIC PLAYER BY GLENTHEMES------->
  23. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  24.  
  25. <head>
  26. <script src="https://kit.fontawesome.com/77e60dd6da.js" crossorigin="anonymous"></script></head>
  27.  
  28. <style type="text/css">
  29. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  30. #glenplayer02 {
  31. position:absolute;
  32. bottom: 2.5em;
  33. right: 0.5em;
  34. display:flex;
  35. z-index:99;
  36. }
  37. #glenplayer02 a {
  38. text-decoration:none;
  39. }
  40.  
  41. #glenplayer02 > div {
  42. align-self:center;
  43. -webkit-align-self:center;
  44. }
  45.  
  46. .music-controls {
  47. user-select:none;
  48. -webkit-user-select:none;
  49. width:15px;
  50. font-size:15px;
  51. cursor:pointer;
  52. }
  53.  
  54. .playy, .pausee {
  55. background: #A19474;
  56. -webkit-background-clip: text;
  57. -webkit-text-fill-color:transparent;
  58. -webkit-text-stroke-width: 1px;
  59. -webkit-text-stroke-color: #A19474;
  60. font-size: 15px;
  61. color: #ffffff;
  62. }
  63.  
  64. .pausee {
  65. display:none;
  66. }
  67.  
  68. </style>
  69. <body>
  70. <!-------MUSIC PLAYER BY GLENTHEMES------->
  71. <div id="glenplayer02">
  72. <div class="music-controls" onclick="songstart();">
  73. <div class="playy" style="display: block;"><span><i class="fas fa-play-circle" aria-hidden="true"></i></span></div>
  74. <div class="pausee" style="display: none;"><span><i class="fas fa-pause-circle" aria-hidden="true"></i></span></div></div>
  75. </div>
  76.  
  77. <audio id="tune" src="https://cdn.discordapp.com/attachments/1011654612551487558/1085098923317792789/YT2mp3.info_-_-_320kbps.mp3"></audio>
  78. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement