Advertisement
Guest User

fdgjhk

a guest
Jul 10th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. /* BOX 1 */
  2.  
  3. #box {
  4. position:fixed;
  5. top:30px; /* distance from top*/
  6. left:30px; /* distance from left*/
  7. border:1px solid #000000; /* border colour*/
  8. width:4px; /* box width*/
  9. height:4px; /* box height*/
  10. padding:2px;
  11. z-index:9999999; /* every box you add take off a nine from here */
  12. -webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  13. }
  14.  
  15.  
  16. #box:hover {
  17. height:150px; /* content box height */
  18. width:85px; /* content box width */
  19. background:#fff;
  20.  
  21. }
  22.  
  23. #box:hover #cont {
  24. opacity:1;
  25. /* keep these same as above but take off 5 px from width */
  26. width:80px;
  27. height:150px;
  28. }
  29.  
  30. #cont {
  31. position:fixed;
  32. padding:2px;
  33. text-align:center;
  34. overflow:hidden;
  35. width:0;
  36. height:0;
  37. opacity:0;
  38. z-index:9;
  39. -webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  40. }
  41.  
  42. /* BOX 2 */
  43.  
  44. #box2 {
  45. position:fixed;
  46. top:30px;
  47. left:44px;
  48. border:1px solid #000000;
  49. width:4px;
  50. height:4px;
  51. padding:2px;
  52. z-index:999999;
  53. -webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  54. }
  55.  
  56.  
  57. #box2:hover {
  58. height:150px;
  59. width:85px;
  60. background:#fff;
  61. }
  62.  
  63. #box2:hover #cont2 {
  64. opacity:1;
  65. width:80px;
  66. height:150px;
  67. }
  68.  
  69. #cont2 {
  70. position:fixed;
  71. font-size:10px;
  72. padding:2px;
  73. text-align:center;
  74. overflow:hidden;
  75. width:0;
  76. height:0;
  77. opacity:0;
  78. z-index:9;
  79. -webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  80. }
  81.  
  82. /* BOX 3 */
  83.  
  84. #box3 {
  85. position:fixed;
  86. top:30px;
  87. left:58px;
  88. border:1px solid #000000;
  89. width:4px;
  90. height:4px;
  91. padding:2px;
  92. z-index:99999;
  93. -webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  94. }
  95.  
  96.  
  97. #box3:hover {
  98. height:150px;
  99. width:85px;
  100. background:#fff;
  101. }
  102.  
  103. #box3:hover #cont3 {
  104. opacity:1;
  105. width:80px;
  106. height:150px;
  107. }
  108.  
  109. #cont3 {
  110. position:fixed;
  111. font-size:10px;
  112. padding:2px;
  113. text-align:center;
  114. overflow:hidden;
  115. width:0;
  116. height:0;
  117. opacity:0;
  118. z-index:9;
  119. -webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  120. }
  121.  
  122.  
  123. <body>
  124. <div id="box">
  125. <div id="cont">
  126. XVIII, polish,
  127. <br>i like cute girls
  128. <br><br>i'm good at ruining lives.
  129. <br><br>this blog contains dicks and boobs
  130. </div>
  131. </div>
  132.  
  133.  
  134. <div id="box2">
  135. <div id="cont2">
  136. <br>Girlfriend:
  137. <br><a href="http://sherleg.tumblr.com//">Femke</a>
  138.  
  139. <br><br>Fiancee:
  140. <br><a href="http://aconissa.tumblr.com">Ana Rosa</a>
  141. </div>
  142. </div>
  143.  
  144. <div id="box3">
  145. <div id="cont3">
  146. <br>Network:
  147. <br><a href="http://thejarenenetwork.tumblr.com/">The Jarene Network</a>
  148.  
  149. <br><br>Side Blogs:
  150.  
  151. <br><a href="http://evilandgay.tumblr.com/">photography & art</a>
  152. <br><a href="http://historywithwomen.tumblr.com/">women in history</a>
  153. </div>
  154. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement