Advertisement
Guest User

Untitled

a guest
Nov 9th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. #tab1 {
  2. background-color:#FFE0F8; /* background colour */
  3. border-bottom:1px solid #000000; /* top border width and colour */
  4. border-top:1px solid #000000; /* top border width and colour */
  5. border-right:1px solid #000000; /* right border width and colour */
  6. width:45px; /* width before hovering */
  7. height:45px; /* height before hovering */
  8. font-size:14px; /* font size */
  9. font-family: 'calibri'; /* font */
  10. border-radius:0px 45px 0px 0px;
  11. -moz-border-radius:0px 45px 0px 0px;
  12. position:fixed;
  13. overflow:hidden;
  14. top:5px;
  15. left:0px;
  16. z-index:999999;
  17. padding:2px;
  18. -webkit-transition: opacity 0.7s linear;
  19. -webkit-transition: all 0.7s ease-in-out;
  20. -moz-transition: all 0.7s ease-in-out;
  21. -o-transition: all 0.7s ease-in-out;}
  22.  
  23. #tab1icon{
  24. font-size:40px; /* size of text icon */
  25. color:#ffffff; /* colour of text icon */
  26. margin-top:-5px;
  27. margin-right:10px;
  28. text-align:center;
  29. -webkit-transition: opacity 0.7s linear;
  30. -webkit-transition: all 0.7s ease-in-out;
  31. -moz-transition: all 0.7s ease-in-out;
  32. -o-transition: all 0.7s ease-in-out;}
  33.  
  34. #tab1:hover{
  35. width:270px; /* width after hovering */
  36. height:300px; /* height after hovering */
  37. border-radius:0px 0px 45px 0px;
  38. -moz-border-radius:0px 0px 45px 0px;}
  39.  
  40. #tab2 {
  41. background-color:#C2ECFF; /* background colour */
  42. border-bottom:1px solid #000000; /* bottom border width and colour */
  43. border-top:1px solid #000000; /* top border width and colour */
  44. border-right:1px solid #000000; /* right border width and colour */
  45. width:45px; /* width before hovering */
  46. height:45px; /* height before hovering */
  47. font-size:14px; /* font size */
  48. font-family: 'calibri'; /* font */
  49. border-radius:0px 0px 45px 0px;
  50. -moz-border-radius:0px 0px 45px 0px;
  51. position:fixed;
  52. overflow:hidden;
  53. top:50px;
  54. left:0px;
  55. z-index:99999;
  56. padding:2px;
  57. -webkit-transition: opacity 0.8s linear;
  58. -webkit-transition: all 0.8s ease-in-out;
  59. -moz-transition: all 0.8s ease-in-out;
  60. -o-transition: all 0.8s ease-in-out;}
  61.  
  62. #tab2icon{
  63. font-size:40px; /* size of text icon */
  64. color:#fff; /* colour of text icon */
  65. margin-top:-5px;
  66. margin-right:10px;
  67. text-align:center;
  68. -webkit-transition: opacity 0.8s linear;
  69. -webkit-transition: all 0.8s ease-in-out;
  70. -moz-transition: all 0.8s ease-in-out;
  71. -o-transition: all 0.8s ease-in-out;}
  72.  
  73. #tab2:hover{
  74. width:270px; /* width after hovering */
  75. height:300px; /* height after hovering */
  76. border-radius:0px 0px 45px 0px;
  77. -moz-border-radius:0px 0px 45px 0px;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement