cindie

CD Player Code

May 28th, 2012
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,700' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,800' rel='stylesheet' type='text/css'>
  2.  
  3. <!--"CD Player" CODED BY CINDIE.TUMBLR.COM!-->
  4.  
  5. <style type="text/css">
  6. #cd{
  7. background-color:#fff; /*Background Color*/
  8. position:fixed;
  9. left:10px; /*Position from Left*/
  10. bottom:10px; /*Position from Bottom */
  11. height: 40px;
  12. width: 40px;
  13. border:2px solid #eee; /*Border*/
  14. -moz-border-radius: 35px; /*Delete These to Make Player Square*/
  15. border-radius: 35px; /*Delete These to Make Player Square*/
  16. overflow:hidden;
  17. transition-duration: 0.50s;
  18. -moz-transition-duration: 0.50s;
  19. -webkit-transition-duration: 0.50s;
  20. }
  21.  
  22. #cd:hover{
  23. width:120px;
  24. height:30px;
  25. opacity:1.0;
  26. transition-duration: 0.50s;
  27. -moz-transition-duration: 0.50s;
  28. -webkit-transition-duration: 0.50s;
  29. }
  30.  
  31. .track{
  32. color:#909090; /*Title Color*/
  33. font-family:'Yanone Kaffeesatz', sans-serif;
  34. font-size:15px;
  35. margin-top:10px;
  36. margin-right:4px; /*Title Position from Right Might be off depending upon your theme settings*/
  37. }
  38.  
  39. #cd:hover .song{
  40. position:relative;
  41. opacity:1.0;
  42. margin-top:10px;
  43. }
  44.  
  45. .song{
  46. opacity:0;
  47. font-size:12px;
  48. vertical-align:middle;
  49. margin-top:10px;
  50. width:50px;
  51. }
  52.  
  53. #cd:hover .track{
  54. display:none;
  55. }
  56. </style>
Advertisement
Add Comment
Please, Sign In to add comment