thisisnotras

Rumor

May 16th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.82 KB | None | 0 0
  1. <style>
  2.  
  3. @font-face{
  4. font-family:'headerfont';
  5. src:url(https://dl.dropboxusercontent.com/u/4556289/NOsferatu.TTF);
  6. }
  7.  
  8. @font-face{
  9. font-family: 'bodyfont';
  10. src:url(https://dl.dropboxusercontent.com/u/4556289/JaspersHandwriting.ttf);
  11. }
  12.  
  13.  
  14. body{
  15. background: #2f2429;
  16. background-image:url(https://puu.sh/tqgpp/1070cdc649.png);
  17. overflow: hidden;
  18. }
  19.  
  20.  
  21. ::-webkit-scrollbar {
  22. width: 2px;
  23. background-color: transparent;
  24. }
  25.  
  26.  
  27. ::-webkit-scrollbar-thumb {
  28. border-radius: 0px;
  29. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  30. box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  31. background-color: #E3B956;
  32. }
  33.  
  34.  
  35. #whole{
  36. position: fixed;
  37. top: 0px;
  38. left: 0px;
  39. right: 0px;
  40. bottom: 0px;
  41. background-image:url(http://i.imgur.com/LGkJTJp.png);
  42. background-image:url(https://puu.sh/tC28S/893f27ae8b.png);
  43. background-repeat: no-repeat;
  44. background-size: auto 130%;
  45. background-position: top 10% left 5%;
  46. }
  47.  
  48. #rightshift{
  49. position: absolute;
  50. top: 0px;
  51. left: 5%;
  52. right: 0px;
  53. bottom: 0px;}
  54.  
  55. #containerarea, #containerarea2, #containerarea3{
  56. position: absolute;
  57. left: -5%;
  58. right: 0px;
  59. top: 100px;
  60. bottom: 0px;
  61. margin: auto;
  62. height: 50px;
  63. width: 330px;
  64. border-radius: 5px;
  65. box-shadow: 0px 0px 3px gray;
  66. }
  67.  
  68. #containerarea:before{
  69. content:'';
  70. position: absolute;
  71. top: -5px;
  72. left: -5px;
  73. right: -5px;
  74. bottom: -5px;
  75. background: black;
  76. z-index: -1;
  77. opacity: .7;
  78. border-radius: 3px;
  79. }
  80.  
  81. #contentarea{
  82. position: absolute;
  83. top: 0px;
  84. left: 0px;
  85. bottom: 0px;
  86. right: -10px;
  87. font-family:'bodyfont';
  88. font-size: 17pt;
  89. color: gray;
  90. font-weight: 600p;
  91. letter-spacing: -1px;
  92. padding: 10px;
  93. text-align: left;
  94. }
  95.  
  96. #containerarea #contentarea b,
  97. #containerarea2 #contentarea b{
  98. font-family:'headerfont';
  99. font-size: 20pt;
  100. color: #48313C;
  101. letter-spacing: 3px;
  102. box-sizing: border-box;
  103. padding: 5px;
  104. font-style: italic;
  105. }
  106.  
  107. #containerarea{
  108. height: 60px;
  109. -webkit-transition: all 1s 6s;
  110. transition: all 1s 6s;
  111. }
  112.  
  113. #containerarea2{
  114. box-shadow: 0px 0px 0px;
  115. height: 160px;
  116. top: 80px;
  117. border-radius: 0px;
  118. -webkit-transition: all 1s 5s;
  119. transition: all 1s 5s;
  120. opacity: 0;
  121. left: 600px;
  122. }
  123.  
  124. #containerarea2 #contentarea,
  125. #containerarea3 #contentarea{
  126. padding-left: 20px;
  127. padding-right: 20px;
  128. -webkit-transition: overflow 1s 5s;
  129. transition: overflow 1s 5s;
  130. overflow: hidden;
  131. font-size: 14pt;
  132. }
  133.  
  134. #containerarea2 #contentarea b,
  135. #containerarea3 #contentarea b{
  136. color: #48313C;
  137. font-weight: 800;
  138. }
  139.  
  140. #containerarea2 #contentarea b{
  141. font-style: italic;
  142. font-weight: 600;
  143. font-size: 12pt;
  144. letter-spacing: 0px;
  145. }
  146.  
  147. #containerarea3{
  148. box-shadow: 0px 0px 0px;
  149. border-radius: 0px;
  150. top: 400px;
  151. height: 150px;
  152. -webkit-transition: all 1s 5s;
  153. transition: all 1s 5s;
  154. opacity: 0;
  155. left: -600px;
  156. }
  157.  
  158. #dividerdiv{
  159. position: absolute;
  160. height: 1px;
  161. width: 310px;
  162. box-shadow: 0px 0px 3px gray;
  163. top: 0px;
  164. left: 0px;
  165. right: 0px;
  166. margin: auto;
  167. }
  168.  
  169. #whole:hover #containerarea{
  170. -webkit-transition: all 2s;
  171. transition: all 2s;
  172. height: 300px;
  173. }
  174.  
  175. #whole:hover #containerarea2,
  176. #whole:hover #containerarea3{
  177. -webkit-transition: all 2s, opacity 1s .7s;
  178. transition: all 2s, opacity 1s .7s;
  179. opacity: 1;
  180. left: -5%;
  181. }
  182.  
  183. #whole:hover #containerarea2 #contentarea{
  184. -webkit-transition: overflow 1s 2s;
  185. transition: overflow 1s 2s;
  186. overflow: auto;
  187. }
  188.  
  189. #containerarea2 #contentarea{
  190. top: 5px;
  191. padding-top: 0px;
  192. }
  193.  
  194. #musicbarcover{
  195. opacity: 0;
  196. -webkit-transition: all 1s 5s;
  197. transition: all 1s 5s;
  198. }
  199.  
  200. #musicbar{
  201. position: absolute;
  202. left: 205px;
  203. top: 142px;
  204. -webkit-transform: rotate(90deg);
  205. transform:rotate(90deg);
  206. height: 15px;
  207. width: 300px;
  208. background: #1B0911;
  209. opacity: .3;
  210. box-shadow: 0px 0px 7px #E3B956;
  211. z-index: 1;
  212. border-radius: 2px;
  213. -webkit-transition: all .2s;
  214. transition: all .2s;
  215. overflow: hidden;
  216. }
  217.  
  218. #whole:hover #musicbarcover{
  219. -webkit-transition: all 1s 2s;
  220. transition: all 1s 2s;
  221. opacity: 1;
  222. }
  223.  
  224. #musicbar:hover{
  225. -webkit-transition: all .3s !important;
  226. transition: all .3s !important;
  227. opacity: .7;
  228. }
  229.  
  230. #musicbar:active{
  231. box-shadow: 0px 0px 7px black;}
  232.  
  233. #musicbar audio{
  234. zoom: 1000%;
  235. opacity: 0;
  236. margin-top: -13px;
  237. margin-left: -2px;
  238. }
  239.  
  240. #musicmarquee{
  241. position: absolute;
  242. top: 0px;
  243. left: 0px;
  244. right: 0px;
  245. bottom: 0px;
  246. border: 0px solid red;
  247. z-index: -1;
  248. text-align: center;
  249. color: gray;
  250. font-family: 'headerfont', Times, Arial;
  251. font-size: 10pt;
  252. box-sizing: border-box;
  253. padding-top: 0px;
  254. }
  255.  
  256. #contentarea a{
  257. text-decoration: none;
  258. color: #E3B956;}
  259.  
  260.  
  261. </style>
  262.  
  263. <div id="whole">
  264.  
  265. <div id="rightshift">
  266.  
  267. <div id="containerarea">
  268.  
  269. <div id="musicbarcover">
  270. <div id="musicbar" title="The xx - Dangerous">
  271. <div id="musicmarquee">
  272. <marquee direction="left" scrollamount="3">
  273.  
  274. THE XX / DANGEROUS / I SEE YOU (2017)
  275. </marquee>
  276. </div>
  277. <audio controls src="http://k003.kiwi6.com/hotlink/a0vxh74nd4/The_xx_DangerousVOL.mp3
  278. " loop=3>
  279. </audio>
  280. </div>
  281. </div>
  282.  
  283.  
  284.  
  285. <div id="contentarea">
  286. <b>Rumor </b>› maligned bakeneko
  287. </div>
  288. </div>
  289.  
  290. <div id="containerarea2">
  291. <div id="dividerdiv">
  292. </div>
  293. <div id="contentarea">
  294. the creature stood at a total height of <b>seven feet, three inches</b> › his build one that seemed to alter between <b>heavy</b> or <b>lithe</b> almost whimsically › while no defined proof of a given sex existed at all times, he was most certainly <b>male</b> › and with an inclination towards <b>random sexual behaviors</b> › alongside a <b>pansexual</b> sexual orientation › where he travels, <b>chaos</b> might sometimes follow › there is <b>no sure pattern</b> to his personality.
  295. </div>
  296. </div>
  297.  
  298. <div id="containerarea3">
  299. <div id="dividerdiv">
  300. </div>
  301. <div id="contentarea">
  302. <b>do</b> message me, ask questions<br>
  303. <b>do not</b> be an asshole
  304. </div>
  305. </div>
  306.  
  307. </div>
Add Comment
Please, Sign In to add comment