Advertisement
rpaccount

Gleeful P

May 3rd, 2018
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.05 KB | None | 0 0
  1. <html>
  2. <head>
  3. <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
  4. <script src="//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  5. <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
  6. <script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.6.5/dat.gui.min.js"></script>
  7. <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
  8. <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.11.0/d3.min.js"></script>
  9. <script src="https://roleplay.chat/jquery.tooltipster.js?v=8"></script>
  10. <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TweenMax.min.js"></script>
  11. <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/87/three.js"></script>
  12. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
  13. <link href="https://roleplay.chat/tooltipster.css" rel="stylesheet" type="text/css">
  14. <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
  15. <script defer>
  16. window.onload = function() {
  17.  
  18. };
  19. </script>
  20. <style>
  21. @import url("https://fonts.googleapis.com/css?family=Voltaire|Abel");
  22. ::-webkit-scrollbar {
  23. width: 0.3vw;
  24. height: 0.3vw;
  25. }
  26. ::-webkit-scrollbar-track {
  27. border-radius: 0px;
  28. background-color: transparent;
  29. }
  30. ::-webkit-scrollbar-thumb {
  31. border-radius: 0px;
  32. background-color: transparent;
  33. }
  34. body{background: #000;
  35. background-image: url('http://www.texasmusicpickers.com/wp-content/uploads/2015/11/Spotlight.jpg');
  36. background-size: cover;}
  37. .doors {
  38. box-sizing: border-box;
  39. position: relative;
  40. width: 100%;
  41. height: 100%;
  42. overflow: hidden;
  43. }
  44.  
  45. .doors .key {
  46. position: absolute;
  47. top: 0%;
  48. width: 100%;
  49. color: yellow;
  50. z-index: 10;
  51. text-align: center;
  52. font-size: 48px;
  53. font-family: "Trebuchet MS";
  54. text-transform: uppercase;
  55. text-shadow: 5px 0 2px #000;
  56. transition: transform 2s ease-in-out;
  57. }
  58.  
  59. .doors:hover .key {
  60. transform: scale(0);
  61. }
  62.  
  63. .doors .left {
  64. display: inline-block;
  65. position: absolute;
  66. top: 0;
  67. left: 0;
  68. width: 50%;
  69. height: 100%;
  70. box-shadow: 3px 0 4px #111;
  71. background-image: url("https://i.imgur.com/c3Je2XE.png");
  72. background-size: cover;
  73. background-repeat: no-repeat;
  74. transition: width 2s ease-in-out;
  75. }
  76. .doors .right {
  77. display: inline-block;
  78. position: absolute;
  79. top: 0;
  80. right: 0;
  81. width: 50%;
  82. height: 100%;
  83. box-shadow: 3px 0 4px #111;
  84. background-image: url("https://i.imgur.com/c3Je2XE.png");
  85. background-size: cover;
  86. background-repeat: no-repeat;
  87. transform: scaleX(-1);
  88. transition: width 2s ease-in-out;
  89. }
  90.  
  91. .doors:hover .left, .doors:hover .right {
  92. width: 5%;
  93. }
  94.  
  95. .inner {
  96. width: 100%;
  97. height: 100%;
  98. }
  99.  
  100. .image {
  101. border-radius: 50%;
  102. -webkit-transition: -webkit-transform .8s ease-in-out;
  103. transition: transform .8s ease-in-out;
  104. }
  105. .image:hover {
  106. -webkit-transform: rotate(360deg);
  107. transform: rotate(360deg);
  108. }
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116. #content {
  117. position: fixed;
  118. width: 100%;
  119. height: 70%;
  120. background: transparent;
  121. top: 15%;
  122. left: 0%;
  123. transition-duration: 1s;
  124. }
  125.  
  126.  
  127.  
  128. @keyframes whoosh {
  129. 0% {
  130. opacity: 1;
  131. }
  132. 100% {
  133. opacity: 0;
  134. }
  135. }
  136.  
  137. @-webkit-keyframes whoosh {
  138. 0% {
  139. opacity: 1;
  140. }
  141. 100% {
  142. opacity: 0;
  143. }
  144. }
  145.  
  146.  
  147. #pluto {
  148. position: fixed;
  149. height: 96%;
  150. width: 25%;
  151. background: transparent;
  152. left: 36.7%;
  153. transition-duration: 1s;
  154. }
  155.  
  156. #content:hover #garnet {
  157. opacity: 1;
  158. left: 6%;
  159. transition-duration: 1.5s;
  160. }
  161.  
  162. #content:hover #guarding {
  163. opacity: 1;
  164. right: 6%;
  165. transition-duration: 1.5s;
  166. }
  167.  
  168. #garnet {
  169. position: absolute;
  170. overflow: auto;
  171. height: 92.5%;
  172. width: 25%;
  173. background: #161616;
  174. border-radius: 10px;
  175. border: 3px solid;
  176. border-color: #42d1f4;
  177. left: 35%;
  178. padding: 15px;
  179. opacity: 0;
  180. transition-duration: 1s;
  181. font-family: "Forum";
  182. font-size: 2.3vh;
  183. color: #eee;
  184.  
  185. }
  186.  
  187. #guarding {
  188. position: absolute;
  189. overflow: auto;
  190. height: 92.5%;
  191. width: 25%;
  192. background: #161616;
  193. border-radius: 10px;
  194. border: 3px solid;
  195. border-color: #42d1f4;
  196. right: 35%;
  197. padding: 15px;
  198. opacity: 0;
  199. transition-duration: 1s;
  200. font-family: "Forum";
  201. font-size: 2.3vh;
  202. color: #eee;
  203. }
  204.  
  205. #gate,
  206. #time {
  207. width: 100%;
  208. height: 100%;
  209. position: relative;
  210. overflow: hidden;
  211.  
  212. }
  213.  
  214. #leftbox,
  215. #right {
  216. width: 100%;
  217. height: 100%;
  218. overflow: auto;
  219.  
  220. }
  221. }
  222.  
  223. #leftbox:target,
  224. #rightbox:target {
  225. animation: appear 1.5s 1;
  226. -webkit-animation: appear 1.5s 1;
  227. }
  228.  
  229. @keyframes appear {
  230. from {
  231. opacity: 0;
  232. }
  233. to {
  234. opacity: 1;
  235. }
  236. }
  237.  
  238. @-webkit-keyframes appear {
  239. from {
  240. opacity: 0;
  241. }
  242. to {
  243. opacity: 1;
  244. }
  245. }
  246.  
  247. h1 {
  248. font-family: century;
  249. font-weight: normal;
  250. line-height: 9px;
  251. text-transform: uppercase;
  252. text-align: center;
  253. }
  254.  
  255. a {
  256. font-family: 'Voltaire', sans-serif;
  257. color: #42d1f4;
  258. text-decoration: none;
  259. }
  260.  
  261. a:hover {
  262. color: #eee;
  263. }
  264.  
  265. .hue {
  266. float: right;
  267. }
  268. </style>
  269. </head>
  270. <body>
  271. <div class="doors">
  272. <div class="key"><img src="https://i.imgur.com/MQfyM4n.png" height="500px" class="image"></div>
  273. <div class="left"></div>
  274. <div class="inner">
  275. <div id="sheet"></div>
  276. <div id="content">
  277. <div id="pluto">
  278.  
  279. </div>
  280.  
  281. <div id="garnet">
  282. <div id="gate">
  283. <div id="leftbox">
  284. <center><h1>Stats</h1></center>
  285. <a>Name</a> <div class="hue">Madison Gleeful</div><br>
  286. <a>Alias</a> <div class="hue">Dipper</font></div><br>
  287. <a>Age</a> <div class="hue">18</font></div><br>
  288. <a>Height + Weight</a> <div class="hue">5'4" // 112lbs</div><br>
  289. <a>Birthday</a> <div class="hue">August 31 1999</div><br>
  290. <a>Species</a> <div class="hue">Human</div><br>
  291. <a>Gender</a> <div class="hue">Female</div><br>
  292. <a>Hair</a> <div class="hue">Long + Straight//Brown</div><br>
  293. <a>Eyes</a> <div class="hue">Deep Blue</div><br>
  294. <a>Occupation</a> <div class="hue">Performer</div><br>
  295. <a>Sexual Orientation</a> <div class="hue">Bisexual</div><br>
  296. <a>Status</a> <div class="hue">Singular</div><br>
  297. <a>Origin</a> <div class="hue"><font size="-2px">Reverse Falls//Gender Swap//Identical Twin AU</font></div><br>
  298. <audio controls><source src="http://k003.kiwi6.com/hotlink/79wxioe871/Open_Up_Your_Eyes.mp3" type="audio/mpeg"></audio>
  299.  
  300. <h1>Relationships</h1><Br>
  301. <a target="_blank" href="https://roleplay.chat/profile.php?user=Gleeful+star">'Lovely' Assistant/Sister</a>
  302.  
  303.  
  304.  
  305.  
  306.  
  307. </div>
  308. </div>
  309. </div>
  310.  
  311.  
  312. <div id="guarding">
  313. <div id="time">
  314. <div id="rightbox">
  315. <Center><h1>Personality</h1></center>
  316. <font size="-2px">
  317. <p>Like her sister, Dipper has a lust for power and enjoys the pain of others. She is often seen to be either cold and unfeeling or simply disgusted by the affection or caring of others. Seemingly, the only person she shows any sign of actual care for is her sister and partner Mabel Gleeful, but even that has its limits.</p>
  318.  
  319. <p>Dipper is extremely intelligent and sly, being able to fool the town into believing him to be a kind and benevolent young woman. She has little trouble manipulating others into doing or getting what she wants. This makes him a great threat, with or without her amulet.</p>
  320.  
  321. <p>However, unlike her sister, Dipper is seen to be slightly more stoic, serious and more disgusted by those she deems pathetic or weak, instead of sinisterly amused like Mabel is shown to be.</p>
  322.  
  323. <p>Both Dipper and Mabel are obsessed with magic, specifically black magic, and will use their shows as means to continue their studies about the magic and anomalies in Gravity Falls. It can be assumed that Dipper as well as her sister are sociopathic and have some levels of emotional detachment as, with her sister, they will secretly kill and/or use the people who 'volunteer' during one of their shows. The one who volunteers will be given a challenge. While the audience is still watching, Dipper and Mabel will use their powers to make the volunteer look 'alive' by making them move even when they are already dead. This can also imply that they are quick-thinking and cunning, as they never get caught After the show, when the audience is gone, she and Mabel will secretly hide the volunteer's body to later use in magical practices and experiments.</p>
  324. </font>
  325.  
  326. <center><h1>Rules/OOC</h1></center>
  327. <font size="-4px">
  328. ✦ PM friendly.<br>
  329. ✧ IC=/= OOC. <br>
  330. ✦ Semi to Novella. I mirror.<br>
  331. ✧ Identical Twin!Fem!Reverse!Dipper, so Fem!Rev!Dipper and Mabel's identical twin. <br>
  332. ✦ Story > Sex <br>
  333. ✧ Once I get a better grasp on the personality and it's more cemented then I'll right my own personality section. <br>
  334. ✦ None of the art is mine. And I shall remove them upon request.<br>
  335. ✧ Code belongs to me! Do not snatch. You can ask. I don't bite.<Br>
  336.  
  337. </font>
  338. </div>
  339.  
  340. </div>
  341. </div>
  342. </div>
  343. <img src="https://i.imgur.com/7IDtObZ.png" Width="200px" style="float:center; margin-left:575px; margin-top: 200px">
  344.  
  345.  
  346. <div class="right"></div>
  347. </div>
  348.  
  349.  
  350.  
  351.  
  352. </body>
  353. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement