Advertisement
althindor

Single-Button Media

Jun 10th, 2023 (edited)
1,724
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 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. form .media_panel {
  24.  -webkit-mask: unset;
  25.   mask: unset;
  26.   font-size: 0;
  27. }
  28.  
  29. /* CHOOSE ONLY ONE OPTION */
  30. /* Small Music Visualizer */
  31.  
  32. #multimedia, .media_panel {
  33.  -webkit-mask: url('https://i.imgur.com/MWTKBXK.gif') center no-repeat;
  34.   mask: url('https://i.imgur.com/MWTKBXK.gif') center no-repeat;
  35.   width: 20px;
  36.   height: 20px !important;
  37. }
  38.  
  39. /* YT Play + Pause Button */
  40.  
  41. #multimedia, .media_panel {
  42.  -webkit-mask: url('https://i.imgur.com/gqTTTvw.png') -26px -7px;
  43.   mask: url('https://i.imgur.com/gqTTTvw.png') -26px -7px;
  44.   width: 30px;
  45.   height: 30px !important;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement