silvercybermen

Updates Tab 02 css

Jun 25th, 2014
5,934
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. #thing {
  2. width:180px;
  3. height:180px;
  4. position:fixed;
  5. transition:0.6s ease-in-out;
  6. -o-transition:0.6s ease-in-out;
  7. -ms-transition:0.6s ease-in-out;
  8. -moz-transition:0.6s ease-in-out;
  9. -webkit-transition:0.6s ease-in-out;
  10. }
  11.  
  12. #thing:hover #updates {
  13. height:400px;
  14. opacity:1;
  15. transition:0.6s ease-in-out;
  16. -o-transition:0.6s ease-in-out;
  17. -ms-transition:0.6s ease-in-out;
  18. -moz-transition:0.6s ease-in-out;
  19. -webkit-transition:0.6s ease-in-out;
  20.  
  21. }
  22.  
  23. #thing:hover #t {
  24. margin-top:-10px;
  25. width:170px;
  26. -ms-transform:none;
  27. -moz-transform:none;
  28. -webkit-transform:none;
  29. -o-transform:rotate:none;
  30. }
  31.  
  32. #thing:hover #l {
  33. margin-top:400px;
  34. width:170px;
  35. -ms-transform:none;
  36. -moz-transform:none;
  37. -webkit-transform:none;
  38. -o-transform:none;
  39. }
  40.  
  41. #thing:hover #l a {
  42. opacity:1;
  43. }
  44.  
  45. #l a {
  46. margin-left:80px;
  47. font-size:10px;
  48. text-align:center;
  49. display:inline-block;
  50. position:fixed;
  51. opacity:0;
  52. margin-top:-5px;
  53. transition:0.7s ease-in-out;
  54. -o-transition:0.7s ease-in-out;
  55. -ms-transition:0.7s ease-in-out;
  56. -moz-transition:0.7s ease-in-out;
  57. -webkit-transition:0.7s ease-in-out;
  58. }
  59.  
  60. #t {
  61. width:100px;
  62. height:1px;
  63. background-color:#777;
  64. margin:20px 5px 0;
  65. position:fixed;
  66. z-index:2;
  67. -ms-transform:rotate(45deg);
  68. -moz-transform:rotate(45deg);
  69. -webkit-transform:rotate(45deg);
  70. -o-transform:rotate(45deg);
  71. transition:0.7s ease-in-out;
  72. -o-transition:0.7s ease-in-out;
  73. -ms-transition:0.7s ease-in-out;
  74. -moz-transition:0.7s ease-in-out;
  75. -webkit-transition:0.7s ease-in-out;
  76. }
  77.  
  78. #l {
  79. position:fixed;
  80. width:100px;
  81. height:1px;
  82. background-color:#777;
  83. margin:20px 5px 0;
  84. z-index:2;
  85. -ms-transform:rotate(-45deg);
  86. -moz-transform:rotate(-45deg);
  87. -webkit-transform:rotate(-45deg);
  88. -o-transform:rotate(-45deg);
  89. transition:0.7s ease-in-out;
  90. -o-transition:0.7s ease-in-out;
  91. -ms-transition:0.7s ease-in-out;
  92. -moz-transition:0.7s ease-in-out;
  93. -webkit-transition:0.7s ease-in-out;
  94. }
  95.  
  96. #updates {
  97. z-index:1;
  98. opacity:0;
  99. padding:2px 0;
  100. position:fixed;
  101. height:20px;
  102. width:150px;
  103. color:#777777;
  104. font-size:11px;
  105. margin-top:0px;
  106. margin-left:15px;
  107. margin-bottom:10px;
  108. font-family:Times;
  109. overflow:hidden;
  110. line-height:110%;
  111. text-align:justify;
  112. background:rgba(255, 255, 255, 0.8);
  113. transition:0.7s ease-in-out;
  114. -o-transition:0.7s ease-in-out;
  115. -ms-transition:0.7s ease-in-out;
  116. -moz-transition:0.7s ease-in-out;
  117. -webkit-transition:0.7s ease-in-out;
  118. }
Advertisement
Add Comment
Please, Sign In to add comment