Advertisement
iamthemelocked

Iamthemelocked - Updates Tab #7 (left) Part 2

Aug 21st, 2014
2,973
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.50 KB | None | 0 0
  1. /* --- UPDATES TAB ---*/
  2.  
  3. #updateboxes {
  4. width: auto;
  5. height: auto;
  6. position:fixed;
  7. float:left;
  8. display:inline-block;
  9. top:80px; /* --- MOVE THE TAB UP OR DOWN HERE ---*/
  10. left: 30px; /* --- MOVE THE TAB TO THE LEFT OR TO THE RIGHT HERE ---*/
  11. }
  12.  
  13. #updateboxes 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. #updateboxes 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. #updatelines1 {
  35. width: 25px;
  36. height: 25px;
  37. display: block;
  38. opacity:1;
  39. }
  40.  
  41. #updateline1 {
  42. width: 23px;
  43. height: 5px;
  44. display: block;
  45. opacity:1;
  46. background-color: {color:Tab Cross 1 Colour};
  47. transform:rotate(45deg);
  48. -ms-transform:rotate(45deg);
  49. -webkit-transform:rotate(45deg);
  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. #updatelines1:hover #updateline1 {
  57. transform:rotate(90deg);
  58. -ms-transform:rotate(90deg);
  59. -webkit-transform:rotate(90deg);
  60. -webkit-transition: all 0.5s ease-in-out;
  61. -moz-transition: all 0.5s ease-in-out;
  62. -o-transition: all 0.5s ease-in-out;
  63. transition: all 0.5s ease-in-out;
  64. }
  65.  
  66. #updateline2 {
  67. width: 23px;
  68. height: 5px;
  69. display: block;
  70. opacity:1;
  71. margin-left:1px;
  72. margin-top:-5px;
  73. background-color: {color:Tab Cross 1 Colour};
  74. transform:rotate(135deg);
  75. -ms-transform:rotate(135deg);
  76. -webkit-transform:rotate(135deg);
  77. -webkit-transition: all 0.5s ease-in-out;
  78. -moz-transition: all 0.5s ease-in-out;
  79. -o-transition: all 0.5s ease-in-out;
  80. transition: all 0.5s ease-in-out;
  81. }
  82.  
  83. #updatelines1:hover #updateline2 {
  84. transform:rotate(90deg);
  85. -ms-transform:rotate(90deg);
  86. -webkit-transform:rotate(90deg);
  87. -webkit-transition: all 0.5s ease-in-out;
  88. -moz-transition: all 0.5s ease-in-out;
  89. -o-transition: all 0.5s ease-in-out;
  90. transition: all 0.5s ease-in-out;
  91. }
  92.  
  93. #updatebox1 {
  94. width: 0px;
  95. height: 0px;
  96. display: inline-block;
  97. float:left;
  98. opacity:0;
  99. margin-top:-5px;
  100. letter-spacing:1px;
  101. margin-left:13px;
  102. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  103. line-height:110%;
  104. overflow:hidden;
  105. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  106. border-top:5px solid {color:Tab Cross 1 Colour};
  107. text-transform:uppercase;
  108. text-align:left;
  109. color:{color:Tab Text Colour};
  110. -webkit-transition: all 0.5s ease-in-out;
  111. -moz-transition: all 0.5s ease-in-out;
  112. -o-transition: all 0.5s ease-in-out;
  113. transition: all 0.5s ease-in-out;
  114. }
  115.  
  116. #updatelines1:hover #updatebox1 {
  117. opacity:1;
  118. height:200px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  119. width: 130px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  120. padding-left:18px;
  121. padding-right:5px;
  122. padding-bottom:5px;
  123. padding-top:5px;
  124. -webkit-transition: all 0.5s ease-in-out;
  125. -moz-transition: all 0.5s ease-in-out;
  126. -o-transition: all 0.5s ease-in-out;
  127. transition: all 0.5s ease-in-out;
  128. }
  129.  
  130. /* --- UPDATES TAB BOX 1 END ---*/
  131.  
  132. /* --- UPDATES TAB BOX 2 START ---*/
  133.  
  134. #updatelines2 {
  135. width: 25px;
  136. height: 25px;
  137. display: block;
  138. opacity:1;
  139. }
  140.  
  141. #updateline3 {
  142. width: 23px;
  143. height: 5px;
  144. display: block;
  145. opacity:1;
  146. margin-top:10px;
  147. background-color: {color:Tab Cross 2 Colour};
  148. transform:rotate(45deg);
  149. -ms-transform:rotate(45deg);
  150. -webkit-transform:rotate(45deg);
  151. -webkit-transition: all 0.5s ease-in-out;
  152. -moz-transition: all 0.5s ease-in-out;
  153. -o-transition: all 0.5s ease-in-out;
  154. transition: all 0.5s ease-in-out;
  155. }
  156.  
  157. #updatelines2:hover #updateline3 {
  158. transform:rotate(90deg);
  159. -ms-transform:rotate(90deg);
  160. -webkit-transform:rotate(90deg);
  161. -webkit-transition: all 0.5s ease-in-out;
  162. -moz-transition: all 0.5s ease-in-out;
  163. -o-transition: all 0.5s ease-in-out;
  164. transition: all 0.5s ease-in-out;
  165. }
  166.  
  167. #updateline4 {
  168. width: 23px;
  169. height: 5px;
  170. display: block;
  171. opacity:1;
  172. margin-left:1px;
  173. margin-top:-5px;
  174. background-color: {color:Tab Cross 2 Colour};
  175. transform:rotate(135deg);
  176. -ms-transform:rotate(135deg);
  177. -webkit-transform:rotate(135deg);
  178. -webkit-transition: all 0.5s ease-in-out;
  179. -moz-transition: all 0.5s ease-in-out;
  180. -o-transition: all 0.5s ease-in-out;
  181. transition: all 0.5s ease-in-out;
  182. }
  183.  
  184. #updatelines2:hover #updateline4 {
  185. transform:rotate(90deg);
  186. -ms-transform:rotate(90deg);
  187. -webkit-transform:rotate(90deg);
  188. -webkit-transition: all 0.5s ease-in-out;
  189. -moz-transition: all 0.5s ease-in-out;
  190. -o-transition: all 0.5s ease-in-out;
  191. transition: all 0.5s ease-in-out;
  192. }
  193.  
  194. #updatebox2 {
  195. width: 0px;
  196. height: 0px;
  197. display: inline-block;
  198. float:left;
  199. opacity:0;
  200. margin-top:-5px;
  201. letter-spacing:1px;
  202. margin-left:13px;
  203. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  204. line-height:110%;
  205. overflow:hidden;
  206. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  207. border-top:5px solid {color:Tab Cross 2 Colour};
  208. text-transform:uppercase;
  209. text-align:left;
  210. color:{color:Tab Text Colour};
  211. -webkit-transition: all 0.5s ease-in-out;
  212. -moz-transition: all 0.5s ease-in-out;
  213. -o-transition: all 0.5s ease-in-out;
  214. transition: all 0.5s ease-in-out;
  215. }
  216.  
  217. #updatelines2:hover #updatebox2 {
  218. opacity:1;
  219. height:200px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  220. width: 130px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  221. padding-left:18px;
  222. padding-right:5px;
  223. padding-bottom:5px;
  224. padding-top:5px;
  225. -webkit-transition: all 0.5s ease-in-out;
  226. -moz-transition: all 0.5s ease-in-out;
  227. -o-transition: all 0.5s ease-in-out;
  228. transition: all 0.5s ease-in-out;
  229. }
  230.  
  231. /* --- UPDATES TAB BOX 2 END ---*/
  232.  
  233. /* --- UPDATES TAB BOX 3 START ---*/
  234.  
  235. #updatelines3 {
  236. width: 25px;
  237. height: 25px;
  238. display: block;
  239. opacity:1;
  240. }
  241.  
  242. #updateline5 {
  243. width: 23px;
  244. height: 5px;
  245. display: block;
  246. opacity:1;
  247. margin-top:10px;
  248. background-color: {color:Tab Cross 3 Colour};
  249. transform:rotate(45deg);
  250. -ms-transform:rotate(45deg);
  251. -webkit-transform:rotate(45deg);
  252. -webkit-transition: all 0.5s ease-in-out;
  253. -moz-transition: all 0.5s ease-in-out;
  254. -o-transition: all 0.5s ease-in-out;
  255. transition: all 0.5s ease-in-out;
  256. }
  257.  
  258. #updatelines3:hover #updateline5 {
  259. transform:rotate(90deg);
  260. -ms-transform:rotate(90deg);
  261. -webkit-transform:rotate(90deg);
  262. -webkit-transition: all 0.5s ease-in-out;
  263. -moz-transition: all 0.5s ease-in-out;
  264. -o-transition: all 0.5s ease-in-out;
  265. transition: all 0.5s ease-in-out;
  266. }
  267.  
  268. #updateline6 {
  269. width: 23px;
  270. height: 5px;
  271. display: block;
  272. opacity:1;
  273. margin-left:1px;
  274. margin-top:-5px;
  275. background-color: {color:Tab Cross 3 Colour};
  276. transform:rotate(135deg);
  277. -ms-transform:rotate(135deg);
  278. -webkit-transform:rotate(135deg);
  279. -webkit-transition: all 0.5s ease-in-out;
  280. -moz-transition: all 0.5s ease-in-out;
  281. -o-transition: all 0.5s ease-in-out;
  282. transition: all 0.5s ease-in-out;
  283. }
  284.  
  285. #updatelines3:hover #updateline6 {
  286. transform:rotate(90deg);
  287. -ms-transform:rotate(90deg);
  288. -webkit-transform:rotate(90deg);
  289. -webkit-transition: all 0.5s ease-in-out;
  290. -moz-transition: all 0.5s ease-in-out;
  291. -o-transition: all 0.5s ease-in-out;
  292. transition: all 0.5s ease-in-out;
  293. }
  294.  
  295. #updatebox3 {
  296. width: 0px;
  297. height: 0px;
  298. display: inline-block;
  299. float:left;
  300. opacity:0;
  301. margin-top:-5px;
  302. letter-spacing:1px;
  303. margin-left:13px;
  304. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  305. line-height:110%;
  306. overflow:hidden;
  307. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  308. border-top:5px solid {color:Tab Cross 3 Colour};
  309. text-transform:uppercase;
  310. text-align:left;
  311. color:{color:Tab Text Colour};
  312. -webkit-transition: all 0.5s ease-in-out;
  313. -moz-transition: all 0.5s ease-in-out;
  314. -o-transition: all 0.5s ease-in-out;
  315. transition: all 0.5s ease-in-out;
  316. }
  317.  
  318. #updatelines3:hover #updatebox3 {
  319. opacity:1;
  320. height:200px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  321. width: 130px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  322. padding-left:18px;
  323. padding-right:5px;
  324. padding-bottom:5px;
  325. padding-top:5px;
  326. -webkit-transition: all 0.5s ease-in-out;
  327. -moz-transition: all 0.5s ease-in-out;
  328. -o-transition: all 0.5s ease-in-out;
  329. transition: all 0.5s ease-in-out;
  330. }
  331.  
  332. /* --- UPDATES TAB BOX 3 END ---*/
  333.  
  334. /* --- UPDATES TAB BOX 4 START ---*/
  335.  
  336. #updatelines4 {
  337. width: 25px;
  338. height: 25px;
  339. display: block;
  340. opacity:1;
  341. }
  342.  
  343. #updateline7 {
  344. width: 23px;
  345. height: 5px;
  346. display: block;
  347. opacity:1;
  348. margin-top:10px;
  349. background-color: {color:Tab Cross 4 Colour};
  350. transform:rotate(45deg);
  351. -ms-transform:rotate(45deg);
  352. -webkit-transform:rotate(45deg);
  353. -webkit-transition: all 0.5s ease-in-out;
  354. -moz-transition: all 0.5s ease-in-out;
  355. -o-transition: all 0.5s ease-in-out;
  356. transition: all 0.5s ease-in-out;
  357. }
  358.  
  359. #updatelines4:hover #updateline7 {
  360. transform:rotate(90deg);
  361. -ms-transform:rotate(90deg);
  362. -webkit-transform:rotate(90deg);
  363. -webkit-transition: all 0.5s ease-in-out;
  364. -moz-transition: all 0.5s ease-in-out;
  365. -o-transition: all 0.5s ease-in-out;
  366. transition: all 0.5s ease-in-out;
  367. }
  368.  
  369. #updateline8 {
  370. width: 23px;
  371. height: 5px;
  372. display: block;
  373. opacity:1;
  374. margin-left:1px;
  375. margin-top:-5px;
  376. background-color: {color:Tab Cross 4 Colour};
  377. transform:rotate(135deg);
  378. -ms-transform:rotate(135deg);
  379. -webkit-transform:rotate(135deg);
  380. -webkit-transition: all 0.5s ease-in-out;
  381. -moz-transition: all 0.5s ease-in-out;
  382. -o-transition: all 0.5s ease-in-out;
  383. transition: all 0.5s ease-in-out;
  384. }
  385.  
  386. #updatelines4:hover #updateline8 {
  387. transform:rotate(90deg);
  388. -ms-transform:rotate(90deg);
  389. -webkit-transform:rotate(90deg);
  390. -webkit-transition: all 0.5s ease-in-out;
  391. -moz-transition: all 0.5s ease-in-out;
  392. -o-transition: all 0.5s ease-in-out;
  393. transition: all 0.5s ease-in-out;
  394. }
  395.  
  396. #updatebox4 {
  397. width: 0px;
  398. height: 0px;
  399. display: inline-block;
  400. float:left;
  401. opacity:0;
  402. margin-top:-5px;
  403. letter-spacing:1px;
  404. margin-left:13px;
  405. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  406. line-height:110%;
  407. overflow:hidden;
  408. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  409. border-top:5px solid {color:Tab Cross 4 Colour};
  410. text-transform:uppercase;
  411. text-align:left;
  412. color:{color:Tab Text Colour};
  413. -webkit-transition: all 0.5s ease-in-out;
  414. -moz-transition: all 0.5s ease-in-out;
  415. -o-transition: all 0.5s ease-in-out;
  416. transition: all 0.5s ease-in-out;
  417. }
  418.  
  419. #updatelines4:hover #updatebox4 {
  420. opacity:1;
  421. height:200px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  422. width: 130px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  423. padding-left:18px;
  424. padding-right:5px;
  425. padding-bottom:5px;
  426. padding-top:5px;
  427. -webkit-transition: all 0.5s ease-in-out;
  428. -moz-transition: all 0.5s ease-in-out;
  429. -o-transition: all 0.5s ease-in-out;
  430. transition: all 0.5s ease-in-out;
  431. }
  432.  
  433. /* --- UPDATES TAB BOX 4 END ---*/
  434.  
  435. /* --- UPDATES TAB BOX 5 START ---*/
  436.  
  437. #updatelines5 {
  438. width: 25px;
  439. height: 25px;
  440. display: block;
  441. opacity:1;
  442. }
  443.  
  444. #updateline9 {
  445. width: 23px;
  446. height: 5px;
  447. display: block;
  448. opacity:1;
  449. margin-top:10px;
  450. background-color: {color:Tab Cross 5 Colour};
  451. transform:rotate(45deg);
  452. -ms-transform:rotate(45deg);
  453. -webkit-transform:rotate(45deg);
  454. -webkit-transition: all 0.5s ease-in-out;
  455. -moz-transition: all 0.5s ease-in-out;
  456. -o-transition: all 0.5s ease-in-out;
  457. transition: all 0.5s ease-in-out;
  458. }
  459.  
  460. #updatelines5:hover #updateline9 {
  461. transform:rotate(90deg);
  462. -ms-transform:rotate(90deg);
  463. -webkit-transform:rotate(90deg);
  464. -webkit-transition: all 0.5s ease-in-out;
  465. -moz-transition: all 0.5s ease-in-out;
  466. -o-transition: all 0.5s ease-in-out;
  467. transition: all 0.5s ease-in-out;
  468. }
  469.  
  470. #updateline10 {
  471. width: 23px;
  472. height: 5px;
  473. display: block;
  474. opacity:1;
  475. margin-left:1px;
  476. margin-top:-5px;
  477. background-color: {color:Tab Cross 5 Colour};
  478. transform:rotate(135deg);
  479. -ms-transform:rotate(135deg);
  480. -webkit-transform:rotate(135deg);
  481. -webkit-transition: all 0.5s ease-in-out;
  482. -moz-transition: all 0.5s ease-in-out;
  483. -o-transition: all 0.5s ease-in-out;
  484. transition: all 0.5s ease-in-out;
  485. }
  486.  
  487. #updatelines5:hover #updateline10 {
  488. transform:rotate(90deg);
  489. -ms-transform:rotate(90deg);
  490. -webkit-transform:rotate(90deg);
  491. -webkit-transition: all 0.5s ease-in-out;
  492. -moz-transition: all 0.5s ease-in-out;
  493. -o-transition: all 0.5s ease-in-out;
  494. transition: all 0.5s ease-in-out;
  495. }
  496.  
  497. #updatebox5 {
  498. width: 0px;
  499. height: 0px;
  500. display: inline-block;
  501. float:left;
  502. opacity:0;
  503. margin-top:-5px;
  504. letter-spacing:1px;
  505. margin-left:13px;
  506. font-size:9px; /* --- CHANGE THE CONTENT´S FONT SIZE HERE ---*/
  507. line-height:110%;
  508. overflow:hidden;
  509. font-family:calibri; /* --- CHANGE THE CONTENT´S FONT HERE ---*/
  510. border-top:5px solid {color:Tab Cross 5 Colour};
  511. text-transform:uppercase;
  512. text-align:left;
  513. color:{color:Tab Text Colour};
  514. -webkit-transition: all 0.5s ease-in-out;
  515. -moz-transition: all 0.5s ease-in-out;
  516. -o-transition: all 0.5s ease-in-out;
  517. transition: all 0.5s ease-in-out;
  518. }
  519.  
  520. #updatelines5:hover #updatebox5 {
  521. opacity:1;
  522. height:200px; /* --- CHANGE THE CONTENT´S HEIGHT HERE ---*/
  523. width: 130px; /* --- CHANGE THE CONTENT´S WIDTH HERE ---*/
  524. padding-left:18px;
  525. padding-right:5px;
  526. padding-bottom:5px;
  527. padding-top:5px;
  528. -webkit-transition: all 0.5s ease-in-out;
  529. -moz-transition: all 0.5s ease-in-out;
  530. -o-transition: all 0.5s ease-in-out;
  531. transition: all 0.5s ease-in-out;
  532. }
  533.  
  534. /* --- UPDATES TAB BOX 5 END ---*/
  535.  
  536. /* --- 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)---*/
  537.  
  538. /* --- UPDATES TAB ---*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement