hydrathemes

Updates Tab #01 [CSS]

Jul 1st, 2015
811
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. /** UPDATES TAB BY HYDRATHEMES **/
  2. #updates {
  3. top:10px;
  4. left:10px;
  5. height:10px;
  6. width:120px;
  7. border:1px solid gray;
  8. padding:10px;
  9. padding-bottom:15px;
  10. text-align:center;
  11. font-size:12px;
  12. font-family:arial;
  13. letter-spacing:-0.5px;
  14. font-weight:bold;
  15. text-transform:uppercase;
  16. color:#000;
  17. background:#fff;
  18. position:fixed;
  19. transition:0.5s ease;
  20. -o-transition:0.5s ease;
  21. -moz-transition:0.5s ease;
  22. -webkit-transition:0.5s ease;
  23. }
  24.  
  25. #updates:hover {
  26. height:100px; /** this height is adjustable **/
  27. transition:0.5s ease;
  28. -o-transition:0.5s ease;
  29. -moz-transition:0.5s ease;
  30. -webkit-transition:0.5s ease;
  31. }
  32.  
  33. #updates:hover .info {
  34. opacity:1;
  35. transition:0.5s ease;
  36. -o-transition:0.5s ease;
  37. -moz-transition:0.5s ease;
  38. -webkit-transition:0.5s ease;
  39. }
  40.  
  41. .info {
  42. font-family:arial;
  43. font-size:10px;
  44. font-weight:none;
  45. text-transform:none;
  46. margin-top:5px;
  47. opacity:0;
  48. transition:0.5s ease;
  49. -o-transition:0.5s ease;
  50. -moz-transition:0.5s ease;
  51. -webkit-transition:0.5s ease;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment