Guest User

updates tab css

a guest
Jul 24th, 2015
5,886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. /*start of updates tab css by oxygenthemes @ tumblr*/
  2.  
  3. #updatestab {
  4. position:fixed;
  5. text-align:left;
  6. margin-top:20px; /*how far from top*/
  7. margin-left:20px; /*how far from the left - if you want the tab on the right, change margin-left to just "right:20px"*/
  8. line-height:140%;
  9. width:180px; /*width of tab*/
  10. font-size:10px; /*font size*/
  11. padding:15px;
  12. transition:0.5s ease-in-out;
  13. -webkit-transition:0.5s ease-in-out;
  14. -moz-transition:0.5s ease-in-out;
  15. }
  16.  
  17. .box {
  18. opacity:0;
  19. padding:8px;
  20. letter-spacing:1px;
  21. border:1px solid transparent;
  22. margin-top:150px;
  23. transition:0.5s ease-in-out;
  24. -webkit-transition:0.5s ease-in-out;
  25. -moz-transition:0.5s ease-in-out;
  26. }
  27.  
  28. .box:hover {
  29. opacity:1;
  30. transition:0.5s ease-in-out;
  31. -webkit-transition:0.5s ease-in-out;
  32. -moz-transition:0.5s ease-in-out;
  33. }
  34. #updatestab:hover .box {
  35. opacity:1;
  36. margin-top:0px;
  37. letter-spacing:0px;
  38. background:#fff; /*background of individual boxes*/
  39. border:1px solid #eee; /*border of boxes*/
  40. transition:0.5s ease-in-out;
  41. -webkit-transition:0.5s ease-in-out;
  42. -moz-transition:0.5s ease-in-out;
  43. }
  44.  
  45. #updatestab h7 { /*customising the subheadings: you can change the color by choosing an alternative from colorpicker.com*/
  46. font-size:8px;color:#68bfc9;text-transform:uppercase;font-weight:700;
  47. }
  48.  
  49. #updatestab h5 { /*customising the main heading: you can change the color by choosing an alternative from colorpicker.com*/
  50. color:black;font-size:9px;text-transform:uppercase;letter-spacing:1px;font-weight:700;
  51.  
  52. }
  53.  
  54. /*end of updates tab css*/
Advertisement
Add Comment
Please, Sign In to add comment