Advertisement
hzrrys

corner player {css}

Aug 5th, 2013
5,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. #player {
  2. z-index:999;
  3. background-color:transparent;
  4. width:50px;
  5. height:23px;
  6. position:fixed;
  7. overflow:hidden;
  8. bottom:3px;
  9. right:0px;
  10. -webkit-transition: opacity 0.8s linear;
  11. -webkit-transition: all 0.8s ease-in-out;
  12. -moz-transition: all 0.8s ease-in-out;
  13. -o-transition: all 0.8s ease-in-out;
  14. }
  15.  
  16. #icon {
  17. margin-top:3px;
  18. margin-bottom:20px;
  19. margin-left:10px;
  20. font-size:9px;
  21. color:{color:text};
  22. font-family:san-serif;
  23. -webkit-transition: opacity 0.8s linear;
  24. -webkit-transition: all 0.8s ease-in-out;
  25. -moz-transition: all 0.8s ease-in-out;
  26. -o-transition: all 0.8s ease-in-out;
  27. }
  28.  
  29. #player:hover {
  30. width:50px;
  31. background:#fff;
  32. -moz-border-radius:0px;
  33. border-radius:0px;
  34. }
  35.  
  36. #player:hover #icon {
  37. margin-top:-25px;
  38. margin-bottom:4px;
  39. opacity:0;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement