Advertisement
thisisnotras

for Diva

Jul 30th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. <style>
  2.  
  3. .pfor {display: none;}
  4. #profile {background: none; border: 0px; }
  5.  
  6. #whole {
  7. position: fixed;
  8. top: 0px;
  9. left: 0px;
  10. right: 0px;
  11. bottom: 0px;
  12. background-image: url(http://i.imgur.com/yXwlTiD.png);
  13. background-repeat: no-repeat;
  14. background-position: left center -10%;
  15. background-size: auto 130%;
  16. background-color: #9FE2FF;
  17. }
  18.  
  19. @font-face {
  20. font-family: 'Distillated';
  21. src: url('https://dl.dropboxusercontent.com/u/4556289/Distillated.ttf');
  22. }
  23.  
  24. @font-face {
  25. font-family: 'Free Agent Bold Semi-Italic';
  26. src: url('https://dl.dropboxusercontent.com/u/4556289/freeagentboldsemital.ttf');
  27. }
  28.  
  29. #bigdiv {
  30. position: absolute;
  31. left: 40%;
  32. top: 0px;
  33. bottom: 0px;
  34. margin: auto;
  35. height: 300px;
  36. width: 320px;
  37. color: #1f495b;
  38. border: 1px solid black;
  39. background-image: url(http://i62.tinypic.com/124uet3.jpg);
  40. background-repeat: repeat;
  41. background-size: 70%;
  42. font-family: 'Distillated', Arial;
  43. font-size: 13pt;
  44. transition: all 1s;
  45. -webkit-transition: all 1s;
  46. }
  47.  
  48. #bigdiv:hover {
  49. height: 450px;
  50. }
  51.  
  52. #div1 {
  53. position: absolute;
  54. top: 10px;
  55. left: 0px;
  56. right: 0px;
  57. margin: auto;
  58. width: 280px;
  59. height: 130px;
  60. border: 1px solid transparent;
  61. background: #9FE2FF;
  62. }
  63.  
  64. #div2 {
  65. position: absolute;
  66. bottom: 10px;
  67. left: 0px;
  68. right: 0px;
  69. margin: auto;
  70. width: 280px;
  71. height: 130px;
  72. background: #9FE2FF;
  73. border: 1px solid transparent;
  74. }
  75.  
  76. #div3 {
  77. position: absolute;
  78. top: 148px;
  79. bottom: 148px;
  80. left: 0px;
  81. right: 0px;
  82. width: 280px;
  83. border: 1px solid #9FE2FF;
  84. margin: auto;
  85. background: #77b4ce;
  86. overflow: hidden;
  87. }
  88.  
  89. #div3menu {
  90. position: absolute;
  91. top: 3px;
  92. height: 15px;
  93. margin: auto;
  94. left: 20px;
  95. right: 20px;
  96. border: 0px solid black;
  97. text-align: center;
  98. }
  99.  
  100. #div3menu a {
  101. height: 15px;
  102. box-sizing: border-box;
  103. padding-left: 3px;
  104. padding-right: 3px;
  105. border: 1px solid #9FE2FF;
  106. font-size: 9pt;
  107. color: black;
  108. text-decoration: none;
  109. background: transparent;
  110. font-family: 'Free Agent Bold Semi-Italic', Arial;
  111. transition: all 1s;
  112. -webkit-transition: all 1s;
  113. margin-left: 1px;
  114. margin-right: 1px;
  115. }
  116.  
  117. #div3menu a:hover {
  118. background: #9FE2FF;
  119. margin-left: 5px;
  120. margin-right: 5px;
  121. }
  122.  
  123. #div3container {
  124. position: absolute;
  125. bottom: 1px;
  126. left: 2px;
  127. right: 2px;
  128. top: 25px;
  129. border: 1px solid #9FE2FF;
  130. }
  131.  
  132. .div3sub {
  133. position: absolute;
  134. top: 0px;
  135. left: 0px;
  136. height: 100%;
  137. width: 100%;
  138. opacity: 0;
  139. overflow: hidden;
  140. transition: all .5s;
  141. -webkit-transition: all .5s;
  142. z-index: 0;
  143. }
  144.  
  145. .div3sub:target {
  146. opacity: 1;
  147. transition: all 1s;
  148. -webkit-transition: all 1s;
  149. z-index: 1;
  150. }
  151.  
  152. </style>
  153.  
  154. <div id="whole">
  155. <div id="bigdiv">
  156. <div id="div1">lorem ipsum stuff
  157. </div>
  158. <div id="div2">lorem ipsum stuff
  159. </div>
  160. <div id="div3">
  161. <div id="div3menu">
  162. <a href=#history>history</a>
  163. <a href=#gallery>gallery</a>
  164. <a href=#ooc>ooc</a>
  165. </div>
  166. <div id="div3container">
  167. <div id="history" class="div3sub">
  168. lorem ipsum
  169. </div>
  170. <div id="gallery" class="div3sub">
  171. lorem ipsum2
  172. </div>
  173. <div id="ooc" class="div3sub">
  174. loremipsum3
  175. </div>
  176.  
  177. </div>
  178. </div>
  179. </div>
  180. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement