Advertisement
nofacesface

Aqua Music Player

May 28th, 2014
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.52 KB | None | 0 0
  1. /* I GO UNDER <STYLE TYPE="TEXT/CSS"> */
  2. .melody {
  3. background-color: rgba(255,255,255,0.7); /* CHANGE ALL THE "255"'S TO "0"'S TO MAKE ME DARK TRANSPARENT */
  4. overflow: hidden;
  5. position:absolute;
  6. height: 50px;
  7. width: 50px;
  8. margin-top: 15px; /* ADJUST VALUE TO MOVE ME */
  9. margin-left: 15px; /* ADJUST VALUE TO MOVE ME */ }
  10.  
  11. .reverberate {
  12. position:absolute;
  13. height: 14px;
  14. width: 14px;
  15. margin-top: 0px;
  16. margin-left: 0px;
  17. padding: 18px;
  18. font-size: 13px;
  19. font-style: normal;
  20. color: {color:Music Note};
  21. -webkit-transition: opacity .7s linear;
  22. -webkit-transition: all .7s ease-in-out;
  23. -moz-transition: all .7s ease-in-out;
  24. -o-transition: all .7s ease-in-out; }
  25.  
  26. .melody:hover .reverberate {
  27. margin-top: -50px; }
  28.  
  29. .harmony {
  30. overflow: hidden;
  31. position:absolute;
  32. height: 50px;
  33. width: 20px;
  34. margin-top: 50px;
  35. margin-left: 15px;
  36. -webkit-transition: opacity .7s linear;
  37. -webkit-transition: all .7s ease-in-out;
  38. -moz-transition: all .7s ease-in-out;
  39. -o-transition: all .7s ease-in-out; }
  40.  
  41. .melody:hover .harmony {
  42. margin-top: 0px; }
  43.  
  44. .rhythm {
  45. position:absolute;
  46. height: 25px;
  47. width: 30px;
  48. margin-top: 12px;
  49. margin-left: -20px; }
  50. /* I GO UNDER <STYLE TYPE="TEXT/CSS"> */
  51.  
  52.  
  53.  
  54. <!--I GO UNDER <BODY>-->
  55. <div class="melody">
  56. <div class="reverberate">
  57. <span class="fontawesome-music"></span>
  58. </div><!--reverberate-->
  59. <div class="harmony">
  60. <div class="rhythm">
  61. <!--INSERT YOU BILLY MUSIC PLAYER EMBED CODE HERE!!!!!-->
  62. </div><!--rhythm-->    
  63. </div><!--harmony-->
  64. </div><!--melody-->
  65. <!--I GO UNDER <BODY>-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement