Advertisement
dylaenobriens

Updates Tab Part #1

Aug 17th, 2013
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. #bite1
  2. #bite1 a{
  3. display:block
  4. }
  5. #bite1 .death1 {
  6. margin-right:0px;filter: alpha(opacity = 0);
  7. opacity:0;-webkit-transition: all 0.5s ease-out;
  8. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  9. }
  10.  
  11. #bite1:hover .death1 {
  12. margin-left:150px;
  13.  
  14. -webkit-transition: all 0.8s ease-out;
  15. -moz-transition: all 0.8s ease-out;
  16. transition: all 0.8s ease-out;
  17. filter: alpha(opacity = 100);
  18. filter: alpha(opacity = 100);
  19. opacity:8;
  20. }
  21.  
  22. #bite1 .death2 {
  23. margin-right:0px;-webkit-transition: all 0.5s ease-out;
  24. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  25. }
  26.  
  27. #bite1:hover .death2 {
  28. margin-left:150px;
  29.  
  30. -webkit-transition: all 0.8s ease-out;
  31. -moz-transition: all 0.8s ease-out;
  32. transition: all 0.8s ease-out;
  33. filter: alpha(opacity = 0);
  34. opacity:0;
  35.  
  36. }
  37.  
  38.  
  39. #updates {
  40.  
  41. margin-top:50px;
  42. font-size:18px;
  43. margin-left:-83px;
  44. color:white;
  45. background-color:black;
  46. position:fixed;
  47. width:170px;
  48. font-family:times new roman;
  49. text-transform:uppercase;
  50. padding:2px;
  51. text-align:center;
  52. -webkit-transform: rotate(90deg);
  53. -moz-transform: rotate(90deg);
  54. -o-transform: rotate(90deg);
  55. -webkit-transition: all 0.5s ease-out;
  56. -moz-transition: all 0.5s ease-out;
  57. transition: all 0.5s ease-out;
  58. }
  59.  
  60. #updates:hover {
  61. opacity:0;
  62. color:white;
  63. -webkit-transition: all 0.8s ease-out;
  64. -moz-transition: all 0.8s ease-out;
  65. transition: all 0.8s ease-out;
  66. }
  67.  
  68.  
  69.  
  70. #updatestab {
  71. font-size:10px;
  72. margin-top:-10px;
  73. margin-left:-160px;
  74. color:white;
  75. background-color:black;
  76. position:fixed;
  77. width:140px;
  78. font-family:times new roman;
  79. padding:5px;
  80. text-align:center;
  81. -webkit-transition: all 0.5s ease-out;
  82. -moz-transition: all 0.5s ease-out;
  83. transition: all 0.5s ease-out;
  84. }
  85.  
  86. #updatestab a {
  87. color:white;
  88. }
  89.  
  90. #cooltitles {
  91. font-size:10px;
  92. font-family:times new roman;
  93. padding:3px;
  94. background-color:white;
  95. color:#111111;
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement