Advertisement
iamthemelocked

Iamthemelocked - Updates Tab #10 Part 2

Sep 22nd, 2014
1,625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.88 KB | None | 0 0
  1. /* --- UPDATES TAB ---*/
  2.  
  3. #tab10boxes {
  4. width: auto;
  5. height: auto;
  6. position:fixed;
  7. float:right;
  8. display:inline-block;
  9. top:70px; /* --- MOVE THE TAB UP OR DOWN HERE ---*/
  10. right: 20px; /* --- MOVE THE TAB TO THE LEFT OR TO THE RIGHT HERE ---*/
  11. }
  12.  
  13. #tab10boxes a{
  14. color:{color:Tab Links Colour};
  15. font-size:9px; /* --- CHANGE THE LINK FONT SIZE HERE ---*/
  16. text-decoration:none;
  17. -webkit-transition: all 0.5s ease-in-out;
  18. -moz-transition: all 0.5s ease-in-out;
  19. -o-transition: all 0.5s ease-in-out;
  20. transition: all 0.5s ease-in-out;
  21. }
  22.  
  23. #tab10boxes a:hover{
  24. color:{color:Tab Links Colour Hover};
  25. font-size:9px; /* --- CHANGE THE LINK FONT SIZE HERE ---*/
  26. -webkit-transition: all 0.5s ease-in-out;
  27. -moz-transition: all 0.5s ease-in-out;
  28. -o-transition: all 0.5s ease-in-out;
  29. transition: all 0.5s ease-in-out;
  30. }
  31.  
  32. /* --- UPDATES TAB BOX 1 START ---*/
  33.  
  34. #tab10line1 {
  35. height:40px;
  36. width: 6px;
  37. display: inline-block;
  38. float:left;
  39. margin-right:5px;
  40. opacity:1;
  41. background-color: {color:Tab Line 1 Colour};
  42. -webkit-transition: all 0.5s ease-in-out;
  43. -moz-transition: all 0.5s ease-in-out;
  44. -o-transition: all 0.5s ease-in-out;
  45. transition: all 0.5s ease-in-out;
  46. }
  47.  
  48. #tab10line1:hover {
  49. height:100px;
  50. -webkit-transition: all 0.5s ease-in-out;
  51. -moz-transition: all 0.5s ease-in-out;
  52. -o-transition: all 0.5s ease-in-out;
  53. transition: all 0.5s ease-in-out;
  54. }
  55.  
  56. #tab10box1 {
  57. width: 0px;
  58. height: 32px;
  59. display: inline-block;
  60. float:right;
  61. opacity:1;
  62. padding-bottom:4px;
  63. padding-top:4px;
  64. letter-spacing:1px;
  65. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  66. line-height:110%;
  67. overflow:hidden;
  68. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  69. border-right:6px solid {color:Tab Line 1 Colour};
  70. text-transform:uppercase;
  71. text-align:right;
  72. background:#ffffff;
  73. color:{color:Tab Text Colour};
  74. -webkit-transition: all 0.5s ease-in-out;
  75. -moz-transition: all 0.5s ease-in-out;
  76. -o-transition: all 0.5s ease-in-out;
  77. transition: all 0.5s ease-in-out;
  78. }
  79.  
  80. #tab10line1:hover #tab10box1 {
  81. opacity:1;
  82. padding-right:10px;
  83. padding-left:4px;
  84. height:150px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  85. width: 100px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  86. -webkit-transition: all 0.5s ease-in-out;
  87. -moz-transition: all 0.5s ease-in-out;
  88. -o-transition: all 0.5s ease-in-out;
  89. transition: all 0.5s ease-in-out;
  90. }
  91.  
  92. /* --- UPDATES TAB BOX 1 END ---*/
  93.  
  94. /* --- UPDATES TAB BOX 2 START ---*/
  95.  
  96. #tab10line2 {
  97. height:40px;
  98. width: 6px;
  99. display: inline-block;
  100. float:left;
  101. margin-right:5px;
  102. opacity:1;
  103. background-color: {color:Tab Line 2 Colour};
  104. -webkit-transition: all 0.5s ease-in-out;
  105. -moz-transition: all 0.5s ease-in-out;
  106. -o-transition: all 0.5s ease-in-out;
  107. transition: all 0.5s ease-in-out;
  108. }
  109.  
  110. #tab10line2:hover {
  111. height:100px;
  112. -webkit-transition: all 0.5s ease-in-out;
  113. -moz-transition: all 0.5s ease-in-out;
  114. -o-transition: all 0.5s ease-in-out;
  115. transition: all 0.5s ease-in-out;
  116. }
  117.  
  118. #tab10box2 {
  119. width: 0px;
  120. height: 32px;
  121. display: inline-block;
  122. float:right;
  123. opacity:1;
  124. padding-bottom:4px;
  125. padding-top:4px;
  126. letter-spacing:1px;
  127. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  128. line-height:110%;
  129. overflow:hidden;
  130. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  131. border-right:6px solid {color:Tab Line 2 Colour};
  132. text-transform:uppercase;
  133. text-align:right;
  134. background:#ffffff;
  135. color:{color:Tab Text Colour};
  136. -webkit-transition: all 0.5s ease-in-out;
  137. -moz-transition: all 0.5s ease-in-out;
  138. -o-transition: all 0.5s ease-in-out;
  139. transition: all 0.5s ease-in-out;
  140. }
  141.  
  142. #tab10line2:hover #tab10box2 {
  143. opacity:1;
  144. padding-right:10px;
  145. padding-left:4px;
  146. height:150px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  147. width: 100px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  148. -webkit-transition: all 0.5s ease-in-out;
  149. -moz-transition: all 0.5s ease-in-out;
  150. -o-transition: all 0.5s ease-in-out;
  151. transition: all 0.5s ease-in-out;
  152. }
  153.  
  154. /* --- UPDATES TAB BOX 2 END ---*/
  155.  
  156. /* --- UPDATES TAB BOX 3 START ---*/
  157.  
  158. #tab10line3 {
  159. height:40px;
  160. width: 6px;
  161. display: inline-block;
  162. float:left;
  163. margin-right:5px;
  164. opacity:1;
  165. background-color: {color:Tab Line 3 Colour};
  166. -webkit-transition: all 0.5s ease-in-out;
  167. -moz-transition: all 0.5s ease-in-out;
  168. -o-transition: all 0.5s ease-in-out;
  169. transition: all 0.5s ease-in-out;
  170. }
  171.  
  172. #tab10line3:hover {
  173. height:100px;
  174. -webkit-transition: all 0.5s ease-in-out;
  175. -moz-transition: all 0.5s ease-in-out;
  176. -o-transition: all 0.5s ease-in-out;
  177. transition: all 0.5s ease-in-out;
  178. }
  179.  
  180. #tab10box3 {
  181. width: 0px;
  182. height: 32px;
  183. display: inline-block;
  184. float:right;
  185. opacity:1;
  186. padding-bottom:4px;
  187. padding-top:4px;
  188. letter-spacing:1px;
  189. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  190. line-height:110%;
  191. overflow:hidden;
  192. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  193. border-right:6px solid {color:Tab Line 3 Colour};
  194. text-transform:uppercase;
  195. text-align:right;
  196. background:#ffffff;
  197. color:{color:Tab Text Colour};
  198. -webkit-transition: all 0.5s ease-in-out;
  199. -moz-transition: all 0.5s ease-in-out;
  200. -o-transition: all 0.5s ease-in-out;
  201. transition: all 0.5s ease-in-out;
  202. }
  203.  
  204. #tab10line3:hover #tab10box3 {
  205. opacity:1;
  206. padding-right:10px;
  207. padding-left:4px;
  208. height:150px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  209. width: 100px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  210. -webkit-transition: all 0.5s ease-in-out;
  211. -moz-transition: all 0.5s ease-in-out;
  212. -o-transition: all 0.5s ease-in-out;
  213. transition: all 0.5s ease-in-out;
  214. }
  215.  
  216. /* --- UPDATES TAB BOX 3 END ---*/
  217.  
  218. /* --- UPDATES TAB BOX 4 START ---*/
  219.  
  220. #tab10line4 {
  221. height:40px;
  222. width: 6px;
  223. display: inline-block;
  224. float:left;
  225. margin-right:5px;
  226. opacity:1;
  227. background-color: {color:Tab Line 4 Colour};
  228. -webkit-transition: all 0.5s ease-in-out;
  229. -moz-transition: all 0.5s ease-in-out;
  230. -o-transition: all 0.5s ease-in-out;
  231. transition: all 0.5s ease-in-out;
  232. }
  233.  
  234. #tab10line4:hover {
  235. height:100px;
  236. -webkit-transition: all 0.5s ease-in-out;
  237. -moz-transition: all 0.5s ease-in-out;
  238. -o-transition: all 0.5s ease-in-out;
  239. transition: all 0.5s ease-in-out;
  240. }
  241.  
  242. #tab10box4 {
  243. width: 0px;
  244. height: 32px;
  245. display: inline-block;
  246. float:right;
  247. opacity:1;
  248. padding-bottom:4px;
  249. padding-top:4px;
  250. letter-spacing:1px;
  251. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  252. line-height:110%;
  253. overflow:hidden;
  254. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  255. border-right:6px solid {color:Tab Line 4 Colour};
  256. text-transform:uppercase;
  257. text-align:right;
  258. background:#ffffff;
  259. color:{color:Tab Text Colour};
  260. -webkit-transition: all 0.5s ease-in-out;
  261. -moz-transition: all 0.5s ease-in-out;
  262. -o-transition: all 0.5s ease-in-out;
  263. transition: all 0.5s ease-in-out;
  264. }
  265.  
  266. #tab10line4:hover #tab10box4 {
  267. opacity:1;
  268. padding-right:10px;
  269. padding-left:4px;
  270. height:150px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  271. width: 100px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  272. -webkit-transition: all 0.5s ease-in-out;
  273. -moz-transition: all 0.5s ease-in-out;
  274. -o-transition: all 0.5s ease-in-out;
  275. transition: all 0.5s ease-in-out;
  276. }
  277.  
  278. /* --- UPDATES TAB BOX 4 END ---*/
  279.  
  280. /* --- UPDATES TAB BOX 5 START ---*/
  281.  
  282. #tab10line5 {
  283. height:40px;
  284. width: 6px;
  285. display: inline-block;
  286. float:left;
  287. margin-right:5px;
  288. opacity:1;
  289. background-color: {color:Tab Line 5 Colour};
  290. -webkit-transition: all 0.5s ease-in-out;
  291. -moz-transition: all 0.5s ease-in-out;
  292. -o-transition: all 0.5s ease-in-out;
  293. transition: all 0.5s ease-in-out;
  294. }
  295.  
  296. #tab10line5:hover {
  297. height:100px;
  298. -webkit-transition: all 0.5s ease-in-out;
  299. -moz-transition: all 0.5s ease-in-out;
  300. -o-transition: all 0.5s ease-in-out;
  301. transition: all 0.5s ease-in-out;
  302. }
  303.  
  304. #tab10box5 {
  305. width: 0px;
  306. height: 32px;
  307. display: inline-block;
  308. float:right;
  309. opacity:1;
  310. padding-bottom:4px;
  311. padding-top:4px;
  312. letter-spacing:1px;
  313. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  314. line-height:110%;
  315. overflow:hidden;
  316. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  317. border-right:6px solid {color:Tab Line 5 Colour};
  318. text-transform:uppercase;
  319. text-align:right;
  320. background:#ffffff;
  321. color:{color:Tab Text Colour};
  322. -webkit-transition: all 0.5s ease-in-out;
  323. -moz-transition: all 0.5s ease-in-out;
  324. -o-transition: all 0.5s ease-in-out;
  325. transition: all 0.5s ease-in-out;
  326. }
  327.  
  328. #tab10line5:hover #tab10box5 {
  329. opacity:1;
  330. padding-right:10px;
  331. padding-left:4px;
  332. height:150px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  333. width: 100px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  334. -webkit-transition: all 0.5s ease-in-out;
  335. -moz-transition: all 0.5s ease-in-out;
  336. -o-transition: all 0.5s ease-in-out;
  337. transition: all 0.5s ease-in-out;
  338. }
  339.  
  340. /* --- UPDATES TAB BOX 5 END ---*/
  341.  
  342. /* --- IF YOU WANT TO ADD MORE BOXES THEN JUST COPY ONE OF THE ABOVE AND ADD IT IN THE HTML AS WELL (HTML=THE BLUEISH PART A LITTLE FURTHER BELOW. IF THERE ARE ANY QUESTIONS DON´T HESITATE TO ASK ME ON MY THEME BLOG (IAMTHEMELOCKED)---*/
  343.  
  344. /* --- UPDATES TAB ---*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement