Advertisement
althindor

Single-Button Media

Jun 10th, 2023 (edited)
1,324
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 1 0
  1. /* Basic Media Panel Code */
  2.  
  3. #multimedia, .media_panel {
  4.   background: magenta !important;
  5.   padding: 0;
  6.   margin: 0;
  7.   position: absolute;
  8.   top: 0;
  9.   left: 0;
  10.   z-index: 1;
  11. }
  12. #multimedia h2, .media_panel h2 {display: none;}
  13.  
  14. #multimedia embed, .media_panel iframe {
  15.   width: 300px;
  16.   height: 200px;
  17.   position: absolute;
  18.   bottom: calc(50% - 20px);
  19.   left: calc(50% - 35px);
  20.   opacity: .001;
  21. }
  22.  
  23. /* CHOOSE ONLY ONE OPTION */
  24. /* Small Music Visualizer */
  25.  
  26. #multimedia, .media_panel {
  27.  -webkit-mask: url('https://i.imgur.com/MWTKBXK.gif') center no-repeat;
  28.   mask: url('https://i.imgur.com/MWTKBXK.gif') center no-repeat;
  29.   width: 20px;
  30.   height: 20px !important;
  31. }
  32.  
  33. /* YT Play + Pause Button */
  34.  
  35. #multimedia, .media_panel {
  36.  -webkit-mask: url('https://i.imgur.com/gqTTTvw.png') -26px -7px;
  37.   mask: url('https://i.imgur.com/gqTTTvw.png') -26px -7px;
  38.   width: 30px;
  39.   height: 30px !important;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement