Advertisement
QueenOfGeckos

Untitled

Jun 13th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.60 KB | None | 0 0
  1. <html>
  2. <body>
  3. <script defer>
  4. window.onload = function() {
  5. var isCtrl = false;
  6. document.onkeyup=function(e)
  7. {
  8. if(e.which == 17)
  9. isCtrl=false;
  10. }
  11. document.onkeydown=function(e)
  12. {
  13. if(e.which == 17)
  14. isCtrl=true;
  15. if((e.which == 85) || (e.which == 67) && (isCtrl == true))
  16. {
  17. return false;
  18. }
  19. }
  20. var isNS = (navigator.appName == "Netscape") ? 1 : 0;
  21. if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
  22. function mischandler(){
  23. return false;
  24. }
  25. function mousehandler(e){
  26. var myevent = (isNS) ? e : event;
  27. var eventbutton = (isNS) ? myevent.which : myevent.button;
  28. if((eventbutton==2)||(eventbutton==3)) return false;
  29. }
  30. document.oncontextmenu = mischandler;
  31. document.onmousedown = mousehandler;
  32. document.onmouseup = mousehandler;
  33.  
  34. if (document.addEventListener) { // IE >= 9; other browsers
  35. document.addEventListener('contextmenu', function(e) {
  36. alert(" Try asking RageQxeen for her codes instead."); //here you draw your own menu
  37. e.preventDefault();
  38. }, false);
  39. } else { // IE < 9
  40. document.attachEvent('oncontextmenu', function() {
  41. alert("O sun, abide to death.");
  42. window.event.returnValue = false;
  43. });
  44. }
  45. };
  46. </script>
  47. <style type="text/css">
  48.  
  49. @import url(https://fonts.googleapis.com/css?family=Patua+One|Cinzel|Cinzel+Decorative);
  50.  
  51. html, body {
  52. background-color: #4f666a;
  53. background-image: url("https://media.giphy.com/media/3ohhwutQL0CDTq3kKA/giphy.gif");
  54. }
  55.  
  56. ::-webkit-scrollbar-button:vertical:{
  57. background-color: #transparent;}
  58.  
  59. ::-webkit-scrollbar-thumb:vertical {
  60. background-color:#transparent;
  61. height:150px;}
  62.  
  63. ::-webkit-scrollbar-thumb:horizontal {
  64. background-color:#transparent;
  65. height:60px;}
  66.  
  67.  
  68. ::-webkit-scrollbar {
  69. height:60px;
  70. width:5px;
  71. background-color:#transparent;}
  72.  
  73. #image {
  74. width: 32vw;
  75. margin: 0px;
  76. border: none;
  77. height: 47vw;
  78. background-color:transparent;
  79. position: absolute;
  80. right: 24.5vw;
  81. bottom: -10vw;
  82. background-image:url("http://i.picpar.com/Ac4e.png");
  83. background-repeat:no-repeat;
  84. background-position: bottom;
  85. background-size: 100%;
  86. z-index: 2;
  87. -webkit-transition: 0.5s linear;
  88. -moz-transition: 0.5s linear;
  89. -o-transition: 0.5s linear;
  90. transition: 0.5s linear;
  91. }
  92.  
  93. #image:hover {
  94. background-image:url("http://i.picpar.com/Bc4e.png");
  95. background-repeat:no-repeat;
  96. background-position: bottom;
  97. background-size: 100%;
  98. -webkit-transition: 0.5s linear;
  99. -moz-transition: 0.5s linear;
  100. -o-transition: 0.5s linear;
  101. transition: 0.5s linear;
  102. }
  103.  
  104. #container {
  105. background-color: transparent;
  106. width: 80vw;
  107. height: 30vw;
  108. margin:auto;
  109. position: absolute;
  110. padding: 5px;
  111. right: 10vw;
  112. bottom: 10vw;
  113. z-index:1;
  114. border: solid 4px #c0c0c0;
  115. }
  116.  
  117. #content {
  118. background-color:#c0c0c0;
  119. width: 25vw;
  120. height: 28vw;
  121. margin:auto;
  122. position: absolute;
  123. padding: 5px;
  124. font-family: 'Patua One', cursive;
  125. font-size: 18px;
  126. color: #000;
  127. left: 1vw;
  128. bottom: 1vw;
  129. z-index:1;
  130. border: #000000 solid 2px;
  131. }
  132.  
  133. #content2 {
  134. background-color:#c0c0c0;
  135. width: 25vw;
  136. height: 28vw;
  137. margin:auto;
  138. position: absolute;
  139. padding: 5px;
  140. font-family: 'Patua One', cursive;
  141. font-size: 18px;
  142. color: #000;
  143. right: 1vw;
  144. bottom: 1vw;
  145. z-index:1;
  146. border: #000000 solid 2px;
  147. }
  148.  
  149. #nav {
  150. background-color: transparent;
  151. width: 14vw;
  152. height: .5vw;
  153. margin:auto;
  154. position: absolute;
  155. left: 1vw;
  156. top: -2.7vw;
  157. z-index:3;
  158. }
  159.  
  160. #nav a, #nav a:link, #nav a:visited {
  161. display:inline-block;
  162. height: 1vw;
  163. width: 1vw;
  164. text-align: center;
  165. font-family: 'Aref Ruqaa';
  166. font-size: 15px;
  167. text-decoration: none;
  168. color: #000;
  169. background: #68707c;
  170. margin: 5px;
  171. background-image: url("https://i.imgur.com/oJUsgm3.png");
  172. border: double #000 5px;
  173. border-radius: 50px;
  174. -webkit-transition: 0.5s linear;
  175. -moz-transition: 0.5s linear;
  176. -o-transition: 0.5s linear;
  177. transition: 0.5s linear;
  178. }
  179.  
  180. #nav a:active, #nav a:hover {
  181. display:inline-block;
  182. height: 1vw;
  183. width: 1vw;
  184. text-align: center;
  185. font-family: 'Aref Ruqaa';
  186. font-size: 15px;
  187. text-decoration: none;
  188. color: #c0c0c0;
  189. background: #9eaed6;
  190. margin: 5px;
  191. background-image: url("https://i.imgur.com/oJUsgm3.png");
  192. border: double #778899 5px;
  193. border-radius: 50px;
  194. -webkit-transition: 0.5s linear;
  195. -moz-transition: 0.5s linear;
  196. -o-transition: 0.5s linear;
  197. transition: 0.5s linear;
  198. }
  199.  
  200.  
  201. .name {position: absolute;
  202. font-family: 'Cinzel Decorative';
  203. color: #fff;
  204. font-size: 4vw;
  205. top: -4.5vw;
  206. right: 2.5vw;
  207. width: 22vw;
  208. height: 9vw;
  209. border: 0px solid #000;
  210. text-align: justify;
  211. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  212. overflow: auto;
  213. padding:5px 5px 5px 5px;
  214. z-index: 2;}
  215.  
  216. .title { background: transparent;
  217. background:url('https://31.media.tumblr.com/d5383c4345000c565d406d280614ed39/tumblr_n6i1p0QzVs1sgk0tao1_500.gif') repeat;
  218. background-position: center;
  219. position: absolute;
  220. font-family: 'Cinzel Decorative';
  221. font-size: 4vw;
  222. top: -4.5vw;
  223. right: 2.5vw;
  224. width: 22vw;
  225. height: 9vw;
  226. text-align: justify;
  227. padding:5px 5px 5px 5px;
  228. -webkit-text-fill-color: transparent;
  229. -webkit-background-clip: text;
  230. z-index: 3;}
  231.  
  232. .alias {position: absolute;
  233. font-family: 'Cinzel';
  234. color: #daa520;
  235. font-size: 2vw;
  236. bottom: -3vw;
  237. left: 19.5vw;
  238. width: 40vw;
  239. height: 2.8vw;
  240. border: 0px solid #000;
  241. text-align: center;
  242. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  243. overflow: auto;
  244. padding:5px 5px 5px 5px;
  245. z-index: 7;}
  246.  
  247. i{color: #013220;}
  248. b{color: #000;}
  249. a{color: #444; text-decoration: none;}
  250. h1{border-bottom: 1px solid #000; text-align: center; font-size: 40px; font-family: 'Cinzel', cursive; color: #000;}
  251. h2{border-bottom: 1px solid #000; text-align: left; font-size: 30px; font-family: 'Cinzel', cursive; color: #000;}
  252. h3{text-align: right; font-size: 25px; font-family: 'Cinzel', cursive; color: #000;}
  253. </style>
  254. <div id="container">
  255.  
  256. <div id="nav">
  257. <a href="#one"></a>
  258. <a href="#two"></a>
  259. <a href="#three"></a>
  260. <a href="#four"></a>
  261. </div>
  262.  
  263. <div class="name">La Larona</div>
  264. <div class="title">La Larona</div>
  265. <div class="alias">Villain of my own Story</div>
  266.  
  267. <div id="image"></div>
  268.  
  269. <div id="content">
  270. <div style="width: 25vw; height: 28vw; overflow-y: hidden;">
  271.  
  272. <a name="one"></a>
  273. <div style="width: 25vw; height: 28vw; overflow: auto;" align="center">
  274. <span style="float:left;"><b>Name</b></span><span style="float:right;">Shizume Okino</span><br>
  275. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"><a title="
  276. Luviaje">hover</a></span><br>
  277. <span style="float:left;"><b>Professional Name</b></span><span style="float:right;">La Larona</span><br>
  278. <span style="float:left;"><b>Gender</b></span><span style="float:right;">Female</span><br>
  279. <span style="float:left;"><b>Age</b></span><span style="float:right;">29</span><br>
  280. <span style="float:left;"><b>Race</b></span><span style="float:right;">Human</span><br>
  281. <span style="float:left;"><b>Voice</b></span><span style="float:right;"><a target="_blank" href="https://youtu.be/KrnqmT3_ckI?t=9" target="_blank">Click~</a></span><br>
  282. <span style="float:left;"><b>Occupation</b></span><span style="float:right;">Nurse</span><br><br>
  283. <span style="float:left;"><b>Height</b></span><span style="float:right;">5ft 7inches</span><br>
  284. <span style="float:left;"><b>Weight</b></span><span style="float:right;">140lbs</span><br>
  285. <span style="float:left;"><b>Eyes</b></span><span style="float:right;">Gold</span><br>
  286. <span style="float:left;"><b>Hair</b></span><span style="float:right;">Curly Black</span><br>
  287. <span style="float:left;"><b>Build</b></span><span style="float:right;">Full, hourglass figure</span><br><br>
  288. <span style="float:left;"><b>Orientation</b></span><span style="float:right;">Fluid</span><br>
  289. <span style="float:left;"><b>Relationship</b></span><span style="float:right;">Widowed</span><br>
  290. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;">N/A</span><br><br><br>
  291. <br><br>
  292. </div>
  293.  
  294. <a name="two"></a>
  295. <div style="width: 25vw; height: 28vw; overflow: auto;" align="left">
  296. <h1>Combat</h1>
  297. <span style="float:left;"><b>Cooperation</b></span><span style="float:right;">●○○○○</span><br><br>
  298. <span style="float:left;"><b>Power</b></span><span style="float:right;">●●●○○</span><br><br>
  299. <span style="float:left;"><b>Speed</b></span><span style="float:right;">●●●●●</span><br><br>
  300. <span style="float:left;"><b>Intelligence</b></span><span style="float:right;">●●○○○</span><br><br>
  301. <span style="float:left;"><b>Technique</b></span><span style="float:right;">●●●●○</span><br><br>
  302.  
  303. <h2>Quirk</h2>
  304. <b>Quirk Name:</b> <br><br>
  305. <b>Quirk Type:</b> Emitter<br><br>
  306. <b>Quirk Description:</b> Her quirks allows her to teleport, using pools of water as the access point.
  307. <br>
  308.  
  309. <b>Drawbacks:</b>
  310. <b>Drawbacks</b> The Pools need to be fresh water. She is unable to appear through bodies of salt water. Fresh water, rain water are good though. She also has to have a rough estimation of the size of the body of water. The water must also have a larger surface area then 2ft in diameter, allowing proper exit and entry. She also must know the location of the body of water. </p>
  311. <p>Her mental state very much effects travel. Due to her fractured mental health she is no longer able to take others with her safely through the pools. Often causing them to suffocate from the shift, and show similar signs as if they had drowned. </p>
  312. <br><br>
  313. <br>
  314.  
  315. <h3>Equipment</h3>
  316. N/A
  317. </div>
  318.  
  319.  
  320. <a name="three"></a>
  321. <div style="width: 25vw; height: 28vw; overflow: auto;" align="center">
  322. <h1>History</h1>
  323. Shizume was born and raised in the United States, to her father Kei Okino, and her mother Emygdia Segundo. Their tale was nothing special. Her mother was a social worker, her father a police officer, the two met on the job and hit it off pretty well. She is the third of five children.The middle to be exact, and one of two girls. Her being the youngest daughter though. There was nothing traumatic regarding her history. Nothing earth Shattering. Nothing to shape the tragedy that was to happen later in Little Shizume's life. </p>
  324. <p>When she was about twelve years old her and the rest of her family had picked up and relocated to a large Japanese city along the coast,to be closer to her paternal grandparents. The shift in culture and language didn't prove too much of a hassel for Shizume or her siblings. She even went as far as to enroll in Shiketsu Highschool. </p>
  325.  
  326. <p>She would actually make it top of her year in fact. She had the potential to move on and up in the world. After graduation due to the versatility of her her quirk control she had she was able to rise up fairly quickly. Not quite breaking into the top ten though. Shortly after starting her hero career, she would meet the love of her life. Watanabe Satoshi, yet another hero, who worked at the same agency as her, who's quirk allowed him the ability to project his memories or thoughts onto any device with a screen. The two often worked together as a team. He was one of the keys to her success. And they worked well in and out of the field. The two became engaged, some say it was a move to boost her popularity. However it was clear whether it was power move or planned engagement for publicity the two were close. </p>
  327.  
  328. <p>A couple of months after their engagement, the dominos started to fall. During a mission Satoshi suffered a grave injury that caused him severe brain damage. Rending him to a barely functional human being. During the same mission Shizume also received minor injuries. And while being treated she also found out she was pregnant. Her heart broke. Not because of the pregnancy. No, she would have cried for joy... She would have been happy normally. She was going to be a mother. But... Satoshi... His state, it broke her heart. While he hadn't died she felt as if it was all lost. But she had to buckle up, and do the best she could. She took herself out of Hero work shortly after her recovery. Opting to do desk work, and keeping herself out of the lime light to avoid greater stress. All while trying to perform media control. Preventing Satoshi's retirement and reasons for it, from reaching the public, along with keeping her own situation a secret. </p>
  329.  
  330. <p>She had this. She managed to keep it undercontrol. Especially with the help of her family and colleges. When the bump started to show she continued to wear baggy clothes. but concealing her baby bump could only last so long. When it became too much she opted to take a temporary leave from her job. Her status as pregnant was handled with great respect. And it wasn't until she was seven eight months along did the news spread. Word also eventually got out in order to quell the rumors that surfaced about Shizume and Satoshi. Rumors swelling around included things such as adultery, foul play, Conspiracy theories of the wild sort. Alien?! Seriously.</p>
  331.  
  332. <p>Shizume gave birth to a healthy baby girl, Kazue Giving her her own family name as opposed to Satoshi's sadly just to avoid further conflict or confusion. Shortly before Kazue's first birthday, Satoshi unfortunately passed away due to complications with his injuries This left Shizume in a state of utter depression. While she knew Satoshi would never recover and regain his faculties after his accident she still loved him. Her heart ached. And looking at Kazue didn't help. However, she felt she needed to be strong. She needed to pick up and be strong. For Kazue. But everytime she looked at her she saw Satoshi.... It ached. It hurt so much. </p>
  333.  
  334. <p>Finally after taking off a couple of years of staying out of the field to raise Kazue, Shizume returned to work. Not even the first day back though, disaster struck. The weather had alreadybeen fairly rough due to typhoon season.And it was storming greatly. But it seemed an earth quake threatened the coastal city Shizume called home. </p>
  335. <p>After the first tremor, the number of heroes present in the city increased greatly.Working to remove debris and rescue people trapped in now damaged buildings. The heavy rain pouring around them did no favors for the rescue and evacuation process.</p>
  336.  
  337. <p>During the disaster Shizume was along side the pros, her quirk helped her rescue a large number of people. She was however starting to feeling exhausted due to the repeat usage. The rain though helped offer her access to spaces most of hte heroes couldn't go with out causing further damage. </p>
  338.  
  339. <p> She was able to rescue all those trapped... with the exception of two. During this diaster, Kazue had been in the care of Shizume's elder sister Sachiko. The apartment building both Sachiko and Shizume lived within had been fairly close to the epicenter of the quake. The building itself was still extremely new, so not many people had taken residence up in it yet. Sachiko and Shizume had been some of the first tenants to even move it. </p>
  340.  
  341. <p>Shizume... Was unable to get to them. By the time she got word of the structure being compromised it was too late. The building collapsed. Crushing her child and elder sister within it's rubble. It was from that point that she snapped. Breaking down crying... She couldn't. She lost everything already. And no other pros had stepped up in her eyes. it was their fault. It was her fault. She hadn't been fast enough. She didn't do enough. She lost the one thread keeping her deteriorating sanity together. </p>
  342.  
  343. <p>After that she disappeared from the public eye. And become nothing more then forgotten hero. Nothing mattered. Eventually rumors started to go around, about a woman... A woman who took children. Leaving their bodies
  344. </div>
  345.  
  346. <a name="four"></a>
  347. <div style="width: 25vw; height: 28vw; overflow: auto;" align="center">
  348. <h1>Contacts</h1>
  349. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a><br>
  350. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br> <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a><br>
  351. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br> <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a><br>
  352. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  353. </div>
  354. </div>
  355. </div>
  356.  
  357. <div id="content2">
  358. <div style="width: 25vw; height: 28vw; overflow-y: hidden;">
  359. <a name="five"></a>
  360. <div style="width: 25vw; height: 28vw; overflow: auto;" align="center">
  361. <h1>Out of Character</h1>
  362. <b>00</b>. Code made by <a href="/profile.php?user=RageQxeen" target="_blank">RageQxeen</a>, do not steal.<br><br>
  363. <b>01</b>. OOC.<br>
  364. <b>02</b>. OOC.<br>
  365. <b>03</b>. OOC.<br>
  366. <b>04</b>. OOC.<br>
  367. <b>05</b>. OOC.<br>
  368. </div>
  369. </div>
  370. </div>
  371. </div>
  372. </body>
  373. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement