Advertisement
thisisnotras

Kya code

May 13th, 2015
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.95 KB | None | 0 0
  1. <style>
  2.  
  3. .pfor {display: none;
  4. }
  5.  
  6. #profile {background: transparent; border: 0px;}
  7.  
  8. body { color: black; font-size: 12pt; }
  9.  
  10. #whole{position: fixed;
  11. top: 0px;
  12. left: 0px;
  13. right: 0px;
  14. bottom: 0px;
  15. background: #cccccc;
  16. background-image:
  17. url(http://i.picpar.com/ovvb.png);
  18. background-repeat: no-repeat;
  19. background-position: bottom -25px right;
  20. background-size: 500px auto;
  21. }
  22.  
  23. #smallbox {position: absolute;
  24. right: 501px;
  25. top: 201px;
  26. height: 301px;
  27. width: 200px;
  28. border-radius: 30px 30px 30px 30px;
  29. z-index: 3;
  30. background: #727272;
  31. border: 2px dashed black;
  32. box-sizing: border-box;
  33. overflow: hidden;
  34. background-image: url(http://i62.tinypic.com/2zg81w9.png);
  35. background-size: 100%;
  36. background-repeat: no-repeat;
  37. background-position: bottom center;
  38. transition: all 1s;
  39. -webkit-transition: all 1s;
  40. }
  41.  
  42.  
  43. #overbox{ position: absolute;
  44. height: 314px;
  45. width: 212px;
  46. top: 195px;
  47. right: 495px;
  48. border: 0px solid black;
  49. border-radius: 30px 30px 30px 30px;
  50. z-index: 1;
  51. background: transparent;}
  52.  
  53. #selections{height: 50%;
  54. width: 50%;
  55. position: absolute;
  56. border: 1px solid black;
  57. background: #090817;;
  58. transition: all .5s;
  59. -webkit-transition: all .5s;
  60. -webkit-animation: shadowloop 1s infinite;
  61. animation: shadowloop 1s infinite;}
  62.  
  63. #selections.a {top: -1px;
  64. left: -1px;
  65. border-radius: 30px 0px 0px 0px;}
  66.  
  67. #selections.b {top: -1px;
  68. right: -1px;
  69. border-radius: 0px 30px 0px 0px;}
  70.  
  71. #selections.c {bottom: -1px;
  72. left: -1px;
  73. border-radius: 0px 0px 0px 30px;}
  74.  
  75. #selections.d {bottom: -1px;
  76. right: -1px;
  77. border-radius: 0px 0px 30px 0px;}
  78.  
  79. #selections:hover{
  80. background: #cccccc ;
  81. border: 1px solid yellow;}
  82.  
  83. #selections:active{
  84. background: yellow;
  85. opacity: .3;}
  86.  
  87.  
  88. #blockervert { position: absolute;
  89. height: 370px;
  90. width: 120px;
  91. right: 540px;
  92. top: 170px;
  93. border: 0px solid black;
  94. z-index: 2;
  95. background: #cccccc;
  96. }
  97.  
  98. #blockerhorz {position:absolute;
  99. height: 205px;
  100. width: 280px;
  101. top: 250px;
  102. right: 460px;
  103. border: 0px solid black;
  104. z-index: 2;
  105. background: #cccccc;
  106. }
  107.  
  108. @-webkit-keyframes shadowloop {
  109. 0% {box-shadow: 0px 0px 3px yellow;}
  110. 50% {box-shadow: 0px 0px 25px yellow;}
  111. 60% {box-shadow: 0px 0px 25px yellow;}
  112. 100% {box-shadow: 0px 0px 3px yellow;}
  113. }
  114.  
  115. @keyframes shadowloop {
  116. 0% {box-shadow: 0px 0px 3px yellow;}
  117. 50% {box-shadow: 0px 0px 15px yellow;}
  118. 60% {box-shadow: 0px 0px 15px yellow;}
  119. 100% {box-shadow: 0px 0px 3px yellow;}
  120. }
  121.  
  122. .pages{position: absolute;
  123. top: 1px;
  124. left: 1px;
  125. text-align: center;
  126. width: 193px;
  127. border-radius: 30px 30px 30px 30px;
  128. height: 295px;
  129. border: 1px solid black;
  130. background: transparent;
  131. opacity: 0;
  132. transition: all 1s;
  133. -webkit-transition: all 1s;
  134. overflow: hidden;
  135. }
  136.  
  137. .pages:target {
  138. left: 1px;
  139. opacity: 1;}
  140.  
  141. #backgroundfiller{position: absolute;
  142. left: 0px;
  143. top: 0px;
  144. background: #cccccc;
  145. opacity: .8;
  146. height: 100%;
  147. width: 100%;
  148. }
  149. #textstuff{position: absolute;
  150. left: 0px;
  151. top: 0px;
  152. height: 100%;
  153. width: 100%;
  154. box-sizing: border-box;
  155. padding: 10px;
  156. opacity: 1;
  157. background: transparent;
  158. }
  159.  
  160. #titlehover{ position: absolute;
  161. height: 20px;
  162. width: 170px;
  163. text-align: center;
  164. z-index: 10;
  165. right: 409px;
  166. top: 342px;
  167. transform: rotate(90deg);
  168. border: 0px solid black;
  169. overflow: hidden;
  170. letter-spacing: 5px;
  171. text-transform: uppercase;
  172. transition: all 1s;
  173. -webkit-transition: all 1s;
  174. font-size: 12pt;
  175. }
  176.  
  177. #titlehover.b{
  178. right: 623px;
  179. top: 340px;
  180. transform: rotate(-90deg);}
  181.  
  182. #titlehover:hover{
  183. font-size: 14pt;
  184. margin-right: -3px;
  185. }
  186.  
  187. #titlehover.b:hover{
  188. margin-right: 3px;
  189. }
  190.  
  191. #backgroundcover{position: absolute;
  192. height:297px;
  193. width: 196px;
  194. background: white;
  195. border-radius: 30px 30px 30px 30px;
  196. right: 503px;
  197. top: 203px;
  198. background-image:
  199. url(http://i59.tinypic.com/1xx8vo.gif);
  200. background-size: 100%;
  201. background-color: #48261A;
  202. background-repeat: no-repeat;
  203. background-position: center;
  204. opacity: 0;
  205. z-index: 0;
  206. transition: all 1s;
  207. -webkit-transition: all 1s;}
  208.  
  209. #titlehover:hover + #backgroundcover{
  210. opacity: 1;
  211. z-index: 10;}
  212. }
  213.  
  214.  
  215. </style>
  216.  
  217.  
  218. <div id="whole">
  219.  
  220. <div id="titlehover">
  221. Title Here
  222. </div>
  223.  
  224. <div id="titlehover" class="b">
  225. Title Here
  226. </div>
  227.  
  228. <div id="backgroundcover">
  229. </div>
  230.  
  231. <div id="smallbox">
  232. <div class="pages" id="page1">
  233. <div id="backgroundfiller"></div>
  234. <div id="textstuff">1</div>
  235. </div>
  236. <div class="pages" id="page2">
  237. <div id="backgroundfiller"></div>
  238. <div id="textstuff">2</div>
  239. </div>
  240. <div class="pages" id="page3">
  241. <div id="backgroundfiller"></div>
  242. <div id="textstuff">3</div>
  243. </div>
  244. </div>
  245.  
  246. <div id="overbox">
  247. <a href=#page1><div id="selections" class="a">
  248. </div></a>
  249. <a href=#page2><div id="selections" class="b">
  250. </div></a>
  251. <a href=#page3><div id="selections" class="c">
  252. </div></a>
  253. <a href=#blank><div id="selections" class="d">
  254. </div></a>
  255. </div>
  256.  
  257. <div id="blockervert">
  258. </div>
  259.  
  260. <div id="blockerhorz">
  261. </div>
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement