Advertisement
nofacesface

Aqua Music Player (CSS)

Jun 17th, 2014
3,459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.31 KB | None | 0 0
  1. @import url(http://weloveiconfonts.com/api/?family=fontawesome);
  2.  
  3. /* fontawesome */
  4. [class*="fontawesome-"]:before {
  5.   font-family: 'FontAwesome', sans-serif;
  6. }
  7.  
  8. .melody {
  9. background-color: rgba(255,255,255,0.6); /* REPLACE THE FOUR "255" WITH "0" TO MAKE IT DARK INSTEAD OF LIGHT */
  10. overflow: hidden;
  11. position:absolute;
  12. height: 50px;
  13. width: 50px;
  14. top: 15px; /* INCREASE VALUE TO MOVE DOWN AND DECREASE VALUE TO MOVE UP */
  15. left: 15px; /* INCREASE VALUE TO MOVE RIGHT AND DECREASE VALUE TO MOVE LEFT */
  16. }
  17.  
  18. .reverberate {
  19. position:absolute;
  20. height: 14px;
  21. width: 14px;
  22. margin-top: 0px;
  23. margin-left: 0px;
  24. padding: 18px;
  25. font-size: 13px;
  26. font-style: normal;
  27. color: #000;
  28. -webkit-transition: opacity .7s linear;
  29. -webkit-transition: all .7s ease-in-out;
  30. -moz-transition: all .7s ease-in-out;
  31. -o-transition: all .7s ease-in-out; }
  32.  
  33. .melody:hover .reverberate {
  34. margin-top: -50px; }
  35.  
  36. .harmony {
  37. overflow: hidden;
  38. position:absolute;
  39. height: 50px;
  40. width: 20px;
  41. margin-top: 50px;
  42. margin-left: 15px;
  43. -webkit-transition: opacity .7s linear;
  44. -webkit-transition: all .7s ease-in-out;
  45. -moz-transition: all .7s ease-in-out;
  46. -o-transition: all .7s ease-in-out; }
  47.  
  48. .melody:hover .harmony {
  49. margin-top: 5px; }
  50.  
  51. .rhythm {
  52. position:absolute;
  53. height: 25px;
  54. width: 30px;
  55. margin-top: 12px;
  56. margin-left: -20px; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement