Advertisement
dylaenobriens

Updates Tab #3 Part 1

Oct 10th, 2013
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. #bat {
  2. top:30px;
  3. position:fixed;
  4. }
  5.  
  6. #bat:hover #updates {
  7. opacity:1;
  8. -webkit-transition: all 0.8s ease-out;
  9. -moz-transition: all 0.8s ease-out;
  10. transition: all 0.8s ease-out;
  11. }
  12.  
  13. #updates {
  14. border:5px double orange;
  15. text-align:center;
  16. width:100px;
  17. color:#fff;
  18. padding:5px;
  19. background-color:#000;
  20. position:fixed;
  21. opacity:0;
  22. top:120px;
  23. left:10px;
  24. font-size:9px;
  25. -webkit-transition: all 0.5s ease-out;
  26. -moz-transition: all 0.5s ease-out;
  27. transition: all 0.5s ease-out;
  28. }
  29.  
  30. #updates a {
  31. color:#fff;
  32. }
  33.  
  34. #cooltitles {
  35. background-color:orange;
  36. color:#fff;
  37. padding:3px;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement