Advertisement
iamthemelocked

Colourful 5 Boxes Updates Tab Code 2

Jun 2nd, 2014
2,829
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.81 KB | None | 0 0
  1. /* --- UPDATES TAB ---*/
  2.  
  3. #updateboxes {
  4. width: 150px;
  5. height: 150px;
  6. position:fixed;
  7. margin-top:50px;
  8. margin-left: 100px;
  9. }
  10.  
  11. /* --- UPDATES TAB BOX 1 START---*/
  12.  
  13. #updatebox1 {
  14. width: 18px;
  15. height: 18px;
  16. display: block;
  17. opacity:1;
  18. margin-bottom: 5px;
  19. background-color: {color:Tab Box 1 Colour};
  20. -webkit-transition: all 0.4s ease-in-out;
  21. -moz-transition: all 0.4s ease-in-out;
  22. -o-transition: all 0.4s ease-in-out;
  23. transition: all 0.4s ease-in-out;
  24. }
  25.  
  26. #updatebox1:hover {
  27. height: 85px;
  28. background-color: {color:Tab Box 1 Colour Hover};
  29. -webkit-transition: all 0.4s ease-in-out;
  30. -moz-transition: all 0.4s ease-in-out;
  31. -o-transition: all 0.4s ease-in-out;
  32. transition: all 0.4s ease-in-out;
  33. }
  34.  
  35. #updatebox1:hover #updatebox1content{
  36. height: 77px;
  37. opacity:1;
  38. background-color: {color:Tab Box 1 Content Background};
  39. -webkit-transition: all 0.4s ease-in-out;
  40. -moz-transition: all 0.4s ease-in-out;
  41. -o-transition: all 0.4s ease-in-out;
  42. transition: all 0.4s ease-in-out;
  43. }
  44.  
  45. #updatebox1content {
  46. width: 250px;
  47. height: 10px;
  48. display: block;
  49. opacity:0;
  50. margin-left:20px;
  51. padding:4px;
  52. font-size:8px;
  53. font-family:calibri;
  54. text-transform:uppercase;
  55. margin-bottom: 5px;
  56. text-align:left;
  57. color:{color:Tab Box 1 Content Text};
  58. -webkit-transition: all 0.4s ease-in-out;
  59. -moz-transition: all 0.4s ease-in-out;
  60. -o-transition: all 0.4s ease-in-out;
  61. transition: all 0.4s ease-in-out;
  62. }
  63.  
  64. #updatebox1content a{
  65. color:{color:Tab Box 1 Content Links};
  66. font-size:8px;
  67. text-transform:uppercase;
  68. background-color: transparent;
  69. -webkit-transition: all 0.4s ease-in-out;
  70. -moz-transition: all 0.4s ease-in-out;
  71. -o-transition: all 0.4s ease-in-out;
  72. transition: all 0.4s ease-in-out;
  73. }
  74.  
  75. #updatebox1content a:hover{
  76. color:{color:Tab Box 1 Content Links Hover};
  77. letter-spacing:3px;
  78. font-size:8px;
  79. text-transform:uppercase;
  80. background-color: transparent;
  81. -webkit-transition: all 0.4s ease-in-out;
  82. -moz-transition: all 0.4s ease-in-out;
  83. -o-transition: all 0.4s ease-in-out;
  84. transition: all 0.4s ease-in-out;
  85. }
  86.  
  87. /* --- UPDATES TAB BOX 1 END---*/
  88.  
  89. /* --- UPDATES TAB BOX 2 START---*/
  90.  
  91. #updatebox2 {
  92. width: 18px;
  93. height: 18px;
  94. display: block;
  95. opacity:1;
  96. margin-bottom: 5px;
  97. background-color: {color:Tab Box 2 Colour};
  98. -webkit-transition: all 0.4s ease-in-out;
  99. -moz-transition: all 0.4s ease-in-out;
  100. -o-transition: all 0.4s ease-in-out;
  101. transition: all 0.4s ease-in-out;
  102. }
  103.  
  104. #updatebox2:hover {
  105. height: 85px;
  106. background-color: {color:Tab Box 2 Colour Hover};
  107. -webkit-transition: all 0.4s ease-in-out;
  108. -moz-transition: all 0.4s ease-in-out;
  109. -o-transition: all 0.4s ease-in-out;
  110. transition: all 0.4s ease-in-out;
  111. }
  112.  
  113. #updatebox2:hover #updatebox2content{
  114. height: 77px;
  115. opacity:1;
  116. background-color: {color:Tab Box 2 Content Background};
  117. -webkit-transition: all 0.4s ease-in-out;
  118. -moz-transition: all 0.4s ease-in-out;
  119. -o-transition: all 0.4s ease-in-out;
  120. transition: all 0.4s ease-in-out;
  121. }
  122.  
  123. #updatebox2content {
  124. width: 250px;
  125. height: 10px;
  126. display: block;
  127. opacity:0;
  128. margin-left:20px;
  129. padding:4px;
  130. font-size:8px;
  131. font-family:calibri;
  132. text-transform:uppercase;
  133. margin-bottom: 5px;
  134. text-align:left;
  135. color:{color:Tab Box 2 Content Text};
  136. -webkit-transition: all 0.4s ease-in-out;
  137. -moz-transition: all 0.4s ease-in-out;
  138. -o-transition: all 0.4s ease-in-out;
  139. transition: all 0.4s ease-in-out;
  140. }
  141.  
  142. #updatebox2content a{
  143. color:{color:Tab Box 2 Content Links};
  144. font-size:8px;
  145. text-transform:uppercase;
  146. background-color: transparent;
  147. -webkit-transition: all 0.4s ease-in-out;
  148. -moz-transition: all 0.4s ease-in-out;
  149. -o-transition: all 0.4s ease-in-out;
  150. transition: all 0.4s ease-in-out;
  151. }
  152.  
  153. #updatebox2content a:hover{
  154. color:{color:Tab Box 2 Content Links Hover};
  155. letter-spacing:3px;
  156. font-size:8px;
  157. text-transform:uppercase;
  158. background-color: transparent;
  159. -webkit-transition: all 0.4s ease-in-out;
  160. -moz-transition: all 0.4s ease-in-out;
  161. -o-transition: all 0.4s ease-in-out;
  162. transition: all 0.4s ease-in-out;
  163. }
  164. /* --- UPDATES TAB BOX 2 END---*/
  165.  
  166. /* --- UPDATES TAB BOX 3 START---*/
  167.  
  168. #updatebox3 {
  169. width: 18px;
  170. height: 18px;
  171. display: block;
  172. opacity:1;
  173. margin-bottom: 5px;
  174. background-color: {color:Tab Box 3 Colour};
  175. -webkit-transition: all 0.4s ease-in-out;
  176. -moz-transition: all 0.4s ease-in-out;
  177. -o-transition: all 0.4s ease-in-out;
  178. transition: all 0.4s ease-in-out;
  179. }
  180.  
  181. #updatebox3:hover {
  182. height: 85px;
  183. background-color: {color:Tab Box 3 Colour Hover};
  184. -webkit-transition: all 0.4s ease-in-out;
  185. -moz-transition: all 0.4s ease-in-out;
  186. -o-transition: all 0.4s ease-in-out;
  187. transition: all 0.4s ease-in-out;
  188. }
  189.  
  190. #updatebox3:hover #updatebox3content{
  191. height: 77px;
  192. opacity:1;
  193. background-color: {color:Tab Box 3 Content Background};
  194. -webkit-transition: all 0.4s ease-in-out;
  195. -moz-transition: all 0.4s ease-in-out;
  196. -o-transition: all 0.4s ease-in-out;
  197. transition: all 0.4s ease-in-out;
  198. }
  199.  
  200. #updatebox3content {
  201. width: 250px;
  202. height: 10px;
  203. display: block;
  204. opacity:0;
  205. margin-left:20px;
  206. padding:4px;
  207. font-size:8px;
  208. font-family:calibri;
  209. text-transform:uppercase;
  210. margin-bottom: 5px;
  211. color:{color:Tab Box 3 Content Text};
  212. text-align:left;
  213. -webkit-transition: all 0.4s ease-in-out;
  214. -moz-transition: all 0.4s ease-in-out;
  215. -o-transition: all 0.4s ease-in-out;
  216. transition: all 0.4s ease-in-out;
  217. }
  218.  
  219. #updatebox3content a{
  220. color:{color:Tab Box 3 Content Links};
  221. font-size:8px;
  222. text-transform:uppercase;
  223. background-color: transparent;
  224. -webkit-transition: all 0.4s ease-in-out;
  225. -moz-transition: all 0.4s ease-in-out;
  226. -o-transition: all 0.4s ease-in-out;
  227. transition: all 0.4s ease-in-out;
  228. }
  229.  
  230. #updatebox3content a:hover{
  231. color:{color:Tab Box 3 Content Links Hover};
  232. letter-spacing:3px;
  233. font-size:8px;
  234. text-transform:uppercase;
  235. background-color: transparent;
  236. -webkit-transition: all 0.4s ease-in-out;
  237. -moz-transition: all 0.4s ease-in-out;
  238. -o-transition: all 0.4s ease-in-out;
  239. transition: all 0.4s ease-in-out;
  240. }
  241.  
  242. /* --- UPDATES TAB BOX 3 END---*/
  243.  
  244. /* --- UPDATES TAB BOX 4 START---*/
  245.  
  246. #updatebox4 {
  247. width: 18px;
  248. height: 18px;
  249. display: block;
  250. opacity:1;
  251. margin-bottom: 5px;
  252. background-color: {color:Tab Box 4 Colour};
  253. -webkit-transition: all 0.4s ease-in-out;
  254. -moz-transition: all 0.4s ease-in-out;
  255. -o-transition: all 0.4s ease-in-out;
  256. transition: all 0.4s ease-in-out;
  257. }
  258.  
  259. #updatebox4:hover {
  260. height: 85px;
  261. background-color: {color:Tab Box 4 Colour Hover};
  262. -webkit-transition: all 0.4s ease-in-out;
  263. -moz-transition: all 0.4s ease-in-out;
  264. -o-transition: all 0.4s ease-in-out;
  265. transition: all 0.4s ease-in-out;
  266. }
  267.  
  268. #updatebox4:hover #updatebox4content{
  269. height: 77px;
  270. opacity:1;
  271. background-color: {color:Tab Box 4 Content Background};
  272. -webkit-transition: all 0.4s ease-in-out;
  273. -moz-transition: all 0.4s ease-in-out;
  274. -o-transition: all 0.4s ease-in-out;
  275. transition: all 0.4s ease-in-out;
  276. }
  277.  
  278. #updatebox4content {
  279. width: 250px;
  280. height: 10px;
  281. display: block;
  282. opacity:0;
  283. margin-left:20px;
  284. padding:4px;
  285. font-size:8px;
  286. font-family:calibri;
  287. text-transform:uppercase;
  288. margin-bottom: 5px;
  289. color:{color:Tab Box 4 Content Text};
  290. text-align:left;
  291. -webkit-transition: all 0.4s ease-in-out;
  292. -moz-transition: all 0.4s ease-in-out;
  293. -o-transition: all 0.4s ease-in-out;
  294. transition: all 0.4s ease-in-out;
  295. }
  296.  
  297. #updatebox4content a{
  298. color:{color:Tab Box 4 Content Links};
  299. font-size:8px;
  300. text-transform:uppercase;
  301. background-color: transparent;
  302. -webkit-transition: all 0.4s ease-in-out;
  303. -moz-transition: all 0.4s ease-in-out;
  304. -o-transition: all 0.4s ease-in-out;
  305. transition: all 0.4s ease-in-out;
  306. }
  307.  
  308. #updatebox4content a:hover{
  309. color:{color:Tab Box 4 Content Links Hover};
  310. letter-spacing:3px;
  311. font-size:8px;
  312. text-transform:uppercase;
  313. background-color: transparent;
  314. -webkit-transition: all 0.4s ease-in-out;
  315. -moz-transition: all 0.4s ease-in-out;
  316. -o-transition: all 0.4s ease-in-out;
  317. transition: all 0.4s ease-in-out;
  318. }
  319.  
  320. /* --- UPDATES TAB BOX 4 END---*/
  321.  
  322. /* --- UPDATES TAB BOX 5 START---*/
  323.  
  324. #updatebox5 {
  325. width: 18px;
  326. height: 18px;
  327. display: block;
  328. opacity:1;
  329. margin-bottom: 5px;
  330. background-color: {color:Tab Box 5 Colour};
  331. -webkit-transition: all 0.4s ease-in-out;
  332. -moz-transition: all 0.4s ease-in-out;
  333. -o-transition: all 0.4s ease-in-out;
  334. transition: all 0.4s ease-in-out;
  335. }
  336.  
  337. #updatebox5:hover {
  338. height: 85px;
  339. background-color: {color:Tab Box 5 Colour Hover};
  340. -webkit-transition: all 0.4s ease-in-out;
  341. -moz-transition: all 0.4s ease-in-out;
  342. -o-transition: all 0.4s ease-in-out;
  343. transition: all 0.4s ease-in-out;
  344. }
  345.  
  346. #updatebox5:hover #updatebox5content{
  347. height: 77px;
  348. opacity:1;
  349. background-color: {color:Tab Box 5 Content Background};
  350. -webkit-transition: all 0.4s ease-in-out;
  351. -moz-transition: all 0.4s ease-in-out;
  352. -o-transition: all 0.4s ease-in-out;
  353. transition: all 0.4s ease-in-out;
  354. }
  355.  
  356. #updatebox5content {
  357. width: 250px;
  358. height: 10px;
  359. display: block;
  360. opacity:0;
  361. margin-left:20px;
  362. padding:4px;
  363. font-size:8px;
  364. text-align:left;
  365. font-family:calibri;
  366. text-transform:uppercase;
  367. margin-bottom: 5px;
  368. color:{color:Tab Box 5 Content Text};
  369. -webkit-transition: all 0.4s ease-in-out;
  370. -moz-transition: all 0.4s ease-in-out;
  371. -o-transition: all 0.4s ease-in-out;
  372. transition: all 0.4s ease-in-out;
  373. }
  374.  
  375. #updatebox5content a{
  376. color:{color:Tab Box 5 Content Links};
  377. font-size:8px;
  378. text-transform:uppercase;
  379. background-color: transparent;
  380. -webkit-transition: all 0.4s ease-in-out;
  381. -moz-transition: all 0.4s ease-in-out;
  382. -o-transition: all 0.4s ease-in-out;
  383. transition: all 0.4s ease-in-out;
  384. }
  385.  
  386. #updatebox5content a:hover{
  387. color:{color:Tab Box 5 Content Links Hover};
  388. letter-spacing:3px;
  389. font-size:8px;
  390. text-transform:uppercase;
  391. background-color: transparent;
  392. -webkit-transition: all 0.4s ease-in-out;
  393. -moz-transition: all 0.4s ease-in-out;
  394. -o-transition: all 0.4s ease-in-out;
  395. transition: all 0.4s ease-in-out;
  396. }
  397. /* --- UPDATES TAB BOX 5 END---*/
  398.  
  399. /* --- UPDATES TAB IMAGE---*/
  400.  
  401. #updateimage img{
  402. width:110px;
  403. margin-top: 0px;
  404. margin-left: -50px;
  405. position:fixed;
  406. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement