Advertisement
micsco987

updates css

Jul 5th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. /*----------------------------------------
  2. Update Tab #1 (CSS Left) 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: {color:link};} /*this is the font color*/
  12. #tabtitle, #dropdown, #dropdown p {
  13. /*background-color:#ffffff; /*this is the background color*/
  14. border-color: transparent; /*this is the border color*/
  15.  
  16. }
  17.  
  18. #updatetab {
  19. width:100px;
  20. position:fixed;
  21. top:460px;
  22. left:484px;}
  23.  
  24. #tabtitle {
  25. margin-left:110px;
  26. margin-top:90px;
  27. -ms-transform: rotate(-90deg); /* IE 9 */
  28. -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
  29. transform: rotate(-90deg);
  30. text-align:center;
  31. padding:1px 3px;
  32. letter-spacing:2px;
  33. font-size:9px;
  34. text-transform:uppercase;
  35. border-width:1px;
  36. border-style:solid;
  37. border-radius: 2px;
  38. -moz-border-radius: 2px;
  39. -webkit-border-radius: 2px;}
  40.  
  41. #dropdown {
  42. font-size:11px;
  43. text-align:center;
  44. width:100px;
  45. background-color:{color:background};
  46. margin-top:-345px;
  47. margin-left:-10px;
  48. border-style:solid;
  49. border-width:0px 1px 1px 1px;
  50. padding:2px;
  51. padding-top:0px;
  52. border-bottom-right-radius: 2px;
  53. -moz-border-bottom-right-radius: 2px;
  54. -webkit-border-bottom-right-radius: 2px;
  55. border-bottom-left-radius: 2px;
  56. -moz-border-bottom-left-radius: 2px;
  57. -webkit-border-bottom-left-radius: 2px;
  58. opacity:0;
  59. -webkit-transition: all 0.5s ease-in-out;
  60. -moz-transition: all 0.5s ease-in-out;
  61. -o-transition: all 0.5s ease-in-out;
  62. -ms-transition: all 0.5s ease-in-out;
  63. transition: all 0.5s ease-in-out;
  64.  
  65. }
  66.  
  67. #updatetab:hover #dropdown {
  68. opacity:1;
  69. -webkit-transition: all 0.5s ease-in-out;
  70. -moz-transition: all 0.5s ease-in-out;
  71. -o-transition: all 0.5s ease-in-out;
  72. -ms-transition: all 0.5s ease-in-out;
  73. transition: all 0.5s ease-in-out;}
  74.  
  75. #c {
  76. position:fixed;
  77. bottom:4px;
  78. right:4px;
  79. font-size:13px;
  80. font-family:helvetica;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement