Advertisement
Guest User

Star Updates Tab 4 Stars Code (Not my Coding)

a guest
Oct 31st, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.01 KB | None | 0 0
  1. #star1{
  2. position:fixed;
  3. top:100px;
  4. left:12px;
  5. color:#fae6ab; /*CHANGE THE COLOR OF YOUR FIRST STAR HERE*/
  6. height:auto;
  7. width:auto;
  8. font-size:20px;
  9. background:transparent;
  10. -webkit-transition: all 0.5s ease-in-out;
  11. -moz-transition: all 0.5s ease-in-out;
  12. transition: all 0.5s ease-in-out;
  13. }
  14.  
  15. #upd1 {
  16. position:absolute;
  17. background:#fff;
  18. color:#acacac; /*CHANGE YOUR FONT COLOR HERE*/
  19. width:100px;
  20. height:auto;
  21. padding:10px;
  22. padding-top:10px;
  23. top:0px;
  24. margin-left:8px;
  25. font-size:9px;
  26. text-align:center;
  27. border:1px solid #ececec;
  28. border-left:2px solid #fae6ab;
  29. opacity:0;
  30. line-height:10px;
  31. overflow:hidden;
  32. opacity:0;-webkit-transition: all 0.5s ease-out;
  33. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  34. }
  35.  
  36. #star1:hover #upd1{
  37. top:14px;
  38. opacity:1;
  39. -webkit-transition: all 0.8s ease-out;
  40. -moz-transition: all 0.8s ease-out;
  41. transition: all 0.8s ease-out;
  42. filter: alpha(opacity = 100);
  43. filter: alpha(opacity = 100);
  44. opacity:100;
  45. }
  46.  
  47. #tab1{
  48. background:#fae6ab; /*CHANGE YOUR TAB COLOR HERE*/
  49. color:#fff;
  50. font-size:10px;
  51. width:auto;
  52. padding:3px;
  53. padding-top:3px;
  54. letter-spacing:4px;
  55. font-weight:bold;
  56. }
  57.  
  58. #tab2{
  59. background:#fae6ab; /*CHANGE YOUR TAB COLOR HERE*/
  60. color:#fff;
  61. font-size:10px;
  62. width:auto;
  63. padding:3px;
  64. padding-top:3px;
  65. letter-spacing:4px;
  66. font-weight:bold;
  67. }
  68.  
  69. #star2{
  70. position:fixed;
  71. left:34px;
  72. top:75px;
  73. color:#fae6ab; /*CHANGE THE COLOR OF YOUR SECOND STAR HERE*/
  74. height:auto;
  75. width:auto;
  76. font-size:20px;
  77. background:transparent;
  78. -webkit-transition: all 0.5s ease-in-out;
  79. -moz-transition: all 0.5s ease-in-out;
  80. transition: all 0.5s ease-in-out;
  81. }
  82.  
  83. #upd2 {
  84. position:absolute;
  85. background:#fff;
  86. color:#acacac; /*CHANGE YOUR FONT COLOR HERE*/
  87. width:100px;
  88. height:auto;
  89. padding:10px;
  90. padding-top:10px;
  91. top:0px;
  92. margin-left:8px;
  93. font-size:9px;
  94. text-align:center;
  95. border:1px solid #ececec;
  96. border-left:2px solid #fae6ab;
  97. opacity:0;
  98. line-height:10px;
  99. overflow:hidden;
  100. opacity:0;-webkit-transition: all 0.5s ease-out;
  101. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  102. }
  103.  
  104. #star2:hover #upd2{
  105. top:14px;
  106. opacity:1;
  107. -webkit-transition: all 0.8s ease-out;
  108. -moz-transition: all 0.8s ease-out;
  109. transition: all 0.8s ease-out;
  110. filter: alpha(opacity = 100);
  111. filter: alpha(opacity = 100);
  112. opacity:100;
  113. }
  114.  
  115. #tab2{
  116. background:#fae6ab; /*CHANGE YOUR TAB COLOR HERE*/
  117. color:#fff;
  118. font-size:10px;
  119. width:auto;
  120. padding:3px;
  121. padding-top:3px;
  122. letter-spacing:4px;
  123. font-weight:bold;
  124. }
  125.  
  126. #tab2v{
  127. background:#fae6ab; /*CHANGE YOUR TAB COLOR HERE*/
  128. color:#fff;
  129. font-size:10px;
  130. width:auto;
  131. padding:3px;
  132. padding-top:3px;
  133. letter-spacing:4px;
  134. font-weight:bold;
  135. }
  136.  
  137. #star3{
  138. position:fixed;
  139. top:55px;
  140. left:56px;
  141. color:#fae6ab; /*CHANGE THE COLOR OF YOUR THIRD STAR HERE*/
  142. height:auto;
  143. width:auto;
  144. font-size:20px;
  145. background:transparent;
  146. -webkit-transition: all 0.5s ease-in-out;
  147. -moz-transition: all 0.5s ease-in-out;
  148. transition: all 0.5s ease-in-out;
  149. }
  150.  
  151. #upd3 {
  152. position:absolute;
  153. background:#fff;
  154. color:#acacac; /*CHANGE YOUR FONT COLOR HERE*/
  155. width:100px;
  156. height:auto;
  157. padding:10px;
  158. padding-top:10px;
  159. top:0px;
  160. margin-left:8px;
  161. font-size:9px;
  162. text-align:center;
  163. border:1px solid #ececec;
  164. border-left:2px solid #fae6ab;
  165. opacity:0;
  166. line-height:10px;
  167. overflow:hidden;
  168. opacity:0;-webkit-transition: all 0.5s ease-out;
  169. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  170. }
  171.  
  172. #star3:hover #upd3{
  173. top:14px;
  174. opacity:1;
  175. -webkit-transition: all 0.8s ease-out;
  176. -moz-transition: all 0.8s ease-out;
  177. transition: all 0.8s ease-out;
  178. filter: alpha(opacity = 100);
  179. filter: alpha(opacity = 100);
  180. opacity:100;
  181. }
  182.  
  183. #tab3{
  184. background:#fae6ab; /*CHANGE YOUR TAB COLOR HERE*/
  185. color:#fff;
  186. font-size:10px;
  187. width:auto;
  188. padding:3px;
  189. padding-top:3px;
  190. letter-spacing:4px;
  191. font-weight:bold;
  192. }
  193.  
  194. #star4{
  195. position:fixed;
  196. top:55px;
  197. left:56px;
  198. color:#fae6ab; /*CHANGE THE COLOR OF YOUR THIRD STAR HERE*/
  199. height:auto;
  200. width:auto;
  201. font-size:20px;
  202. background:transparent;
  203. -webkit-transition: all 0.5s ease-in-out;
  204. -moz-transition: all 0.5s ease-in-out;
  205. transition: all 0.5s ease-in-out;
  206. }
  207.  
  208. #upd4 {
  209. position:absolute;
  210. background:#fff;
  211. color:#acacac; /*CHANGE YOUR FONT COLOR HERE*/
  212. width:100px;
  213. height:auto;
  214. padding:10px;
  215. padding-top:10px;
  216. top:0px;
  217. margin-left:8px;
  218. font-size:9px;
  219. text-align:center;
  220. border:1px solid #ececec;
  221. border-left:2px solid #fae6ab;
  222. opacity:0;
  223. line-height:10px;
  224. overflow:hidden;
  225. opacity:0;-webkit-transition: all 0.5s ease-out;
  226. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  227. }
  228.  
  229. #star4:hover #upd4{
  230. top:14px;
  231. opacity:1;
  232. -webkit-transition: all 0.8s ease-out;
  233. -moz-transition: all 0.8s ease-out;
  234. transition: all 0.8s ease-out;
  235. filter: alpha(opacity = 100);
  236. filter: alpha(opacity = 100);
  237. opacity:100;
  238. }
  239.  
  240. #tab4{
  241. background:#fae6ab; /*CHANGE YOUR TAB COLOR HERE*/
  242. color:#fff;
  243. font-size:10px;
  244. width:auto;
  245. padding:3px;
  246. padding-top:3px;
  247. letter-spacing:4px;
  248. font-weight:bold;
  249. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement