onediewreckshun

Updates Tab CSS | http://kimsjongin.tumblr.com

Apr 11th, 2013
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. #candywrapper {
  2. /*this is where you control what the whole updates tab looks like*/
  3.  
  4. /*how far apart the letters are spaced*/
  5. letter-spacing:1px;
  6.  
  7. /*how the text is aligned; it could be center, left, right, or justify*/
  8. text-align: center;
  9.  
  10. /*font size*/
  11. font-size: 11px;
  12.  
  13. /*dont touch*/
  14. position:fixed;
  15.  
  16. /*how far from the left the updates tab is*/
  17. left:0px;
  18.  
  19. /*how far from the top the updates tab is*/
  20. top:-142px;
  21.  
  22. /*dont touch the three lines below ok*/
  23. -webkit-transition: all .5s ease-in-out;
  24. -moz-transition: all .5s ease-in-out;
  25. -o-transition: all .5s ease-in-out;
  26. z-index:99;
  27. }
  28.  
  29. #candywrapper:hover {
  30. /*this is where you control what the whole tab looks like when you hover*/
  31.  
  32. /*how far from the top the updates tab will be when you hover*/
  33. top:-30px;
  34.  
  35. /*dont touch the three lines below ok*/
  36. -webkit-transition: all .5s ease-in-out;
  37. -moz-transition: all .5s ease-in-out;
  38. -o-transition: all .5s ease-in-out;}
  39.  
  40. #in {
  41. color:#999; /*this is the color of the text within the tab; pick one from colorpicker.com*/
  42.  
  43. /*this is the font of the text*/
  44. font-family:georgia;
  45.  
  46. /*title tab border style. it can be dotted or dashed; just remember to change it on all four lines!*/
  47. border-style:solid;
  48.  
  49. /*border width*/
  50. border-width:1px;
  51.  
  52. /*border color*/
  53. border-color:#999;
  54.  
  55. /*dont touch*/
  56. padding: 40px 10px 10px 10px;
  57.  
  58. /*background color*/
  59. background:#fff;
  60.  
  61. /*text alignment; could be right, left, center, justify*/
  62. text-align:center;
  63.  
  64. /*font size of the updates box*/
  65. font-size:8px;
  66.  
  67. /*width of the updates box*/
  68. width:90px;
  69.  
  70. /*height of the updates box*/
  71. height:90px;
  72.  
  73. /*dont touch*/
  74. z-index: 9999;
  75. }
  76.  
  77.  
  78. #titletab {
  79. /* the title tab where it says "updates"; if you want to change the text "updates" then command+f (control+f if on pc) and look for the word "updates"*/
  80.  
  81. /*background color of the title tab*/
  82. background:#fff;
  83.  
  84. /*color of title tab text*/
  85. color:#999;
  86.  
  87. /*title tab text letter spacing*/
  88. letter-spacing:0px;
  89.  
  90. /*dont touch*/
  91. border-top-style:none;
  92.  
  93. /*title tab border style. it can be dotted or dashed; just remember to change it on all four lines!*/
  94. border-right-style:solid;
  95. border-bottom-style:solid;
  96. border-left-style:solid;
  97.  
  98. /*font of the title tab*/
  99. font-family:georgia;
  100.  
  101. /*font size of title tab*/
  102. font-size:8px;
  103.  
  104. /*border color of title tab*/
  105. border-color:#999;
  106.  
  107. /*border width of title tab*/
  108. border-width:1px;
  109.  
  110. /*how the text is aligned; could be right, left, justify, or center*/
  111. text-align: center;
  112.  
  113. /*height of title tab*/
  114. height:5px;
  115.  
  116. /*dont touch*/
  117. padding: 3px 0 7px 0;
  118.  
  119. /*change the border radius on all of these lines if you want the tab to be rounded!*/
  120. border-bottom-right-radius: 0px;
  121. -moz-border-bottom-right-radius: 0px;
  122. -webkit-border-bottom-right-radius: 0px;
  123.  
  124. /*dont touch the three lines below ok*/
  125. -webkit-transition: all .5s ease-in-out;
  126. -moz-transition: all .5s ease-in-out;
  127. -o-transition: all .5s ease-in-out;
  128. }
Add Comment
Please, Sign In to add comment