Advertisement
incedothemes

Update Tab #1 (CSS Right) by Incedo

Jun 14th, 2014
10,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. /*----------------------------------------
  2. Update Tab #1 (CSS Right) by Incedo
  3. http://incedothemes.tumblr.com
  4. Please do not remove the credit.
  5. Instructions @ http://incedothenes.tumblr.com/tab
  6. Updated 8/7/14
  7. ------------------------------------------*/
  8.  
  9. #updatetab {
  10. font-family: helvetica; /*this is the font*/
  11. color: #A0A0A0;} /*this is the font color*/
  12. #tabtitle, #dropdown, #dropdown p {
  13. background-color:#ffffff; /*this is the background color*/
  14. border-color: #D8D8D8;} /*this is the border color*/
  15.  
  16. #updatetab {
  17. width:100px;
  18. position:fixed;
  19. top:36px;
  20. right:14px;}
  21.  
  22. #tabtitle {
  23. text-align:center;
  24. padding:1px 3px;
  25. letter-spacing:2px;
  26. font-size:9px;
  27. text-transform:uppercase;
  28. border-width:1px;
  29. border-style:solid;
  30. border-radius: 2px;
  31. -moz-border-radius: 2px;
  32. -webkit-border-radius: 2px;}
  33.  
  34. #dropdown {
  35. border-style:solid;
  36. border-width:0px 1px 1px 1px;
  37. padding:2px 5px 0px 5px;
  38. border-bottom-right-radius: 2px;
  39. -moz-border-bottom-right-radius: 2px;
  40. -webkit-border-bottom-right-radius: 2px;
  41. border-bottom-left-radius: 2px;
  42. -moz-border-bottom-left-radius: 2px;
  43. -webkit-border-bottom-left-radius: 2px;
  44. opacity:0;
  45. -webkit-transition: all 0.5s ease-in-out;
  46. -moz-transition: all 0.5s ease-in-out;
  47. -o-transition: all 0.5s ease-in-out;
  48. -ms-transition: all 0.5s ease-in-out;
  49. transition: all 0.5s ease-in-out;}
  50.  
  51. #updatetab:hover #dropdown {
  52. opacity:1;
  53. -webkit-transition: all 0.5s ease-in-out;
  54. -moz-transition: all 0.5s ease-in-out;
  55. -o-transition: all 0.5s ease-in-out;
  56. -ms-transition: all 0.5s ease-in-out;
  57. transition: all 0.5s ease-in-out;}
  58.  
  59. #dropdown p {
  60. padding-top:3px;
  61. padding-bottom:3px;
  62. border-width:0px 0px 1px 0px;
  63. border-style:solid;
  64. font-size:10px;}
  65.  
  66. #dropdown p:last-of-type {
  67. border-bottom:0px solid transparent;}
  68.  
  69. #updatetab p, #updatetab ul, #updatetab li, #updatetab ol {
  70. margin: 0px 0px 0px 0px;}
  71.  
  72. #c {
  73. position:fixed;
  74. bottom:4px;
  75. right:4px;
  76. font-size:13px;
  77. font-family:helvetica;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement