Guest User

CSS

a guest
Dec 7th, 2014
584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. /* ᴜᴘᴅᴀᴛᴇs ᴛᴀʙ */
  2. #palette {
  3. margin-top:-30px; /*change the value of this to adjust how the palette is positioned vertically, so the higher the value the lower the item, the smaller the value the higher the item*/
  4. margin-left:5px; /*same thing concept applies, only this determines the position horizontally instead of vertically*/
  5. position:fixed;
  6. }
  7.  
  8. #palette img{
  9. width:55px;
  10. }
  11.  
  12. #tab1{
  13. height:12px;
  14. width:15px;
  15. border-radius:100%;
  16. position:fixed;
  17. margin-top:-95px;
  18. margin-left:20px;
  19. }
  20.  
  21. #tabtext1 {
  22. font:{select:font size updates tab} {font:updates tab};
  23. color:{color:updates tab};
  24. width:90px;
  25. text-align:left;
  26. margin-left:40px;
  27. height:0px;
  28. overflow:hidden;
  29. -moz-transition-duration:0.8s;
  30. -webkit-transition-duration:0.8s;
  31. -o-transition-duration:0.8s;
  32. }
  33.  
  34. #tab1:hover #tabtext1 {
  35. height:500px;
  36. -moz-transition-duration:0.8s;
  37. -webkit-transition-duration:0.8s;
  38. -o-transition-duration:0.8s;
  39. }
  40.  
  41.  
  42. #tab2{
  43. height:15px;
  44. width:17px;
  45. border-radius:100%;
  46. position:fixed;
  47. margin-top:-81px;
  48. margin-left:20px;
  49. }
  50.  
  51. #tabtext2 {
  52. font:{select:font size updates tab} {font:updates tab};
  53. color:{color:updates tab};
  54. width:90px;
  55. text-align:left;
  56. margin-left:40px;
  57. margin-top:-14px;
  58. height:0px;
  59. overflow:hidden;
  60. -moz-transition-duration:0.8s;
  61. -webkit-transition-duration:0.8s;
  62. -o-transition-duration:0.8s;
  63. }
  64.  
  65. #tab2:hover #tabtext2 {
  66. height:500px;
  67. -moz-transition-duration:0.8s;
  68. -webkit-transition-duration:0.8s;
  69. -o-transition-duration:0.8s;
  70. }
  71.  
  72. #tab3{
  73. height:19px;
  74. width:25px;
  75. border-radius:100%;
  76. position:fixed;
  77. margin-top:-66px;
  78. margin-left:17px;
  79. }
  80.  
  81. #tabtext3 {
  82. font:{select:font size updates tab} {font:updates tab};
  83. color:{color:updates tab};
  84. width:90px;
  85. text-align:left;
  86. margin-left:43px;
  87. margin-top:-29px;
  88. height:0px;
  89. overflow:hidden;
  90. -moz-transition-duration:0.8s;
  91. -webkit-transition-duration:0.8s;
  92. -o-transition-duration:0.8s;
  93. }
  94.  
  95. #tab3:hover #tabtext3 {
  96. height:500px;
  97. -moz-transition-duration:0.8s;
  98. -webkit-transition-duration:0.8s;
  99. -o-transition-duration:0.8s;
  100. }
  101.  
  102. #tab4{
  103. height:19px;
  104. width:25px;
  105. border-radius:100%;
  106. position:fixed;
  107. margin-top:-46px;
  108. margin-left:17px;
  109. }
  110.  
  111. #tabtext4 {
  112. font:{select:font size updates tab} {font:updates tab};
  113. color:{color:updates tab};
  114. width:90px;
  115. text-align:left;
  116. margin-left:43px;
  117. margin-top:-49px;
  118. height:0px;
  119. overflow:hidden;
  120. -moz-transition-duration:0.8s;
  121. -webkit-transition-duration:0.8s;
  122. -o-transition-duration:0.8s;
  123. }
  124.  
  125. #tab4:hover #tabtext4 {
  126. height:500px;
  127. -moz-transition-duration:0.8s;
  128. -webkit-transition-duration:0.8s;
  129. -o-transition-duration:0.8s;
  130. }
  131.  
  132. #tab5{
  133. height:19px;
  134. width:29px;
  135. border-radius:100%;
  136. position:fixed;
  137. margin-top:-26px;
  138. margin-left:17px;
  139. }
  140.  
  141. #tabtext5 {
  142. font:{select:font size updates tab} {font:updates tab};
  143. color:{color:updates tab};
  144. width:90px;
  145. text-align:left;
  146. margin-left:43px;
  147. margin-top:-69px;
  148. height:0px;
  149. overflow:hidden;
  150. -moz-transition-duration:0.8s;
  151. -webkit-transition-duration:0.8s;
  152. -o-transition-duration:0.8s;
  153. }
  154.  
  155. #tab5:hover #tabtext5 {
  156. height:500px;
  157. -moz-transition-duration:0.8s;
  158. -webkit-transition-duration:0.8s;
  159. -o-transition-duration:0.8s;
  160. }
Advertisement
Add Comment
Please, Sign In to add comment