Advertisement
mustntrunaway

update tab 01 style

Mar 5th, 2015
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.73 KB | None | 0 0
  1. /*UPDATE TAB STYLE CODE START*/
  2.  
  3. #updates {
  4.     z-index:100;
  5.     position:fixed;
  6.     bottom:10px; /*change to top:10px if you want it on the top instead*/
  7.     right:10px; /*change to left:10px if you want it on the left instead*/
  8.     background-color:#fff; /*change bg color (#______) here, set to transparent if you want*/
  9.     border:1px solid #000; /*change border color (#______) and size (__px) here, delete this line if you dont want an outside border*/
  10.     width:125px; /*change the width here*/
  11.     font-size:9px;
  12.     line-height:9px;
  13.     text-align:center;
  14.     overflow:hidden;}
  15.  
  16. .tabtop {
  17.     width:100%;
  18.     height:9px;
  19.     padding:7px 0px;
  20.     -webkit-transition: all .5s linear;
  21.     -moz-transition: all .5s linear;
  22.     transition: all .5s linear;
  23.     overflow:hidden;}
  24. .tabtop:hover {
  25.     height:100px; /*change tabtop hover height*/}
  26.  
  27. .tab1 {
  28.     width:100%;
  29.     height:9px;
  30.     padding:7px 0px;
  31.     border-top:1px solid #000; /*change divider color (#______) and size (__px) here, delete this line if you dont want a divider*/
  32.     -webkit-transition: all .5s linear;
  33.     -moz-transition: all .5s linear;
  34.     transition: all .5s linear;
  35.     overflow:hidden;}
  36. .tab1:hover {
  37.     height:100px; /*change tab1 hover height*/}
  38.  
  39. .tab2 {
  40.     width:100%;
  41.     height:9px;
  42.     padding:7px 0px;
  43.     border-top:1px solid #000; /*change divider color (#______) and size (__px) here, delete this line if you dont want a divider*/
  44.     -webkit-transition: all .5s linear;
  45.     -moz-transition: all .5s linear;
  46.     transition: all .5s linear;
  47.     overflow:hidden;}
  48. .tab2:hover {
  49.     height:100px; /*change tab2 hover height*/}
  50.    
  51. /*ask xworuthemes how to add/delete tabs if you arent sure how*/
  52. /*UPDATE TAB STYLE CODE END*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement