RageQxeen

Tenya Iida

Feb 17th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.97 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=Bangers|Aref+Ruqaa|Cinzel);
  50.  
  51. html, body {
  52. background: #fff0f3;
  53. background-image: url("https://www.transparenttextures.com/patterns/always-grey.png");
  54. background-size: 100px;
  55. background-repeat: repeat;
  56. background-position:center bottom;
  57. }
  58.  
  59. ::-webkit-scrollbar-button:vertical:{
  60. background-color: #transparent;}
  61.  
  62. ::-webkit-scrollbar-thumb:vertical {
  63. background-color:#transparent;
  64. height:150px;}
  65.  
  66. ::-webkit-scrollbar-thumb:horizontal {
  67. background-color:#transparent;
  68. height:60px;}
  69.  
  70.  
  71. ::-webkit-scrollbar {
  72. height:60px;
  73. width:5px;
  74. background-color:#transparent;}
  75.  
  76. #image {
  77. width: 35vw;
  78. margin: 0px;
  79. border: none;
  80. height: 40vw;
  81. background-color:transparent;
  82. position: absolute;
  83. left: -6vw;
  84. bottom: -2vw;
  85. background-image:url("http://i.picpar.com/0Sbe.png");
  86. background-repeat:no-repeat;
  87. background-position: bottom;
  88. background-size: 100%;
  89. z-index: 2;
  90. -webkit-animation: tilt-in-br 0.4s ease-in-out both;
  91. animation: tilt-in-br 0.4s ease-in-out both;
  92. }
  93.  
  94. #container {
  95. background-color:#4682B4;
  96. background-image: url("https://www.transparenttextures.com/patterns/brushed-alum-dark.png");
  97. background-size: cover;
  98. width: 65vw;
  99. height: 30vw;
  100. margin:auto;
  101. position: absolute;
  102. padding: 5px;
  103. right: 10vw;
  104. top: 15vw;
  105. z-index:1;
  106. border: 1px solid #000;
  107. }
  108.  
  109. #content {
  110. background-color:#c0c0c0;
  111. width: 35vw;
  112. height: 25vw;
  113. margin:auto;
  114. position: absolute;
  115. padding: 5px;
  116. font-family: 'Aref Ruqaa', cursive;
  117. font-size: 18px;
  118. color: #000;
  119. right: 1vw;
  120. bottom: .5vw;
  121. z-index: 1;
  122. border: #000000 solid 2px;
  123. }
  124.  
  125. #nav {
  126. background-color: transparent;
  127. width: 12vw;
  128. height: .5vw;
  129. margin:auto;
  130. position: absolute;
  131. right: .5vw;
  132. top: -2vw;
  133. text-align:right;
  134. z-index: 99;
  135. }
  136.  
  137. #nav a, #nav a:link, #nav a:visited {
  138. display:inline-block;
  139. height: .8vw;
  140. width: .8vw;
  141. text-decoration:none;
  142. background: #4682B4;
  143. margin: 5px;
  144. border: double #000 5px;
  145. border-radius: 50%;
  146. -webkit-transition: 0.5s linear;
  147. -moz-transition: 0.5s linear;
  148. -o-transition: 0.5s linear;
  149. transition: 0.5s linear;
  150. }
  151.  
  152. #nav a:active, #nav a:hover {
  153. display:inline-block;
  154. height: .8vw;
  155. width: .8vw;
  156. text-decoration:none;
  157. background: #ADD8E6;
  158. margin: 5px;
  159. border: double #000 5px;
  160. border-radius: 50%;
  161. -webkit-transition: 0.5s linear;
  162. -moz-transition: 0.5s linear;
  163. -o-transition: 0.5s linear;
  164. transition: 0.5s linear;
  165. }
  166.  
  167. .name {position: absolute;
  168. font-family: 'Bangers';
  169. color: #fff;
  170. font-size: 4.5vw;
  171. top: -4.5vw;
  172. left: 0vw;
  173. width: 70vw;
  174. height: 6vw;
  175. border: 0px solid #000;
  176. text-align: justify;
  177. text-shadow: -1px 0 #00FFFF, 0 5px #000,5px 0 #000, 0 -1px #00FFFF;
  178. overflow: auto;
  179. padding:5px 5px 5px 5px;
  180. z-index: 2;}
  181.  
  182. .title { background: transparent;
  183. background:url('https://media0.giphy.com/media/3oKIPd3zYxNZd9jGpO/giphy.gif') no-repeat;
  184. background-position: center;
  185. background-size: 100%;
  186. position: absolute;
  187. font-family: 'Bangers';
  188. font-size: 4.5vw;
  189. top: -4.5vw;
  190. left: 0vw;
  191. width: 70vw;
  192. height: 6vw;
  193. text-align: justify;
  194. padding:5px 5px 5px 5px;
  195. -webkit-text-fill-color: transparent;
  196. -webkit-background-clip: text;
  197. z-index: 3;}
  198.  
  199. .lyrics {position: absolute;
  200. font-family: 'Cinzel';
  201. color: #191970;
  202. font-size: 1.5vw;
  203. top: .5vw;
  204. right: 1.5vw;
  205. width: 55vw;
  206. height: 2.2vw;
  207. border: 0px solid #000;
  208. text-align: center;
  209. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  210. overflow: auto;
  211. padding:5px 5px 5px 5px;
  212. z-index: 100;}
  213.  
  214. @-webkit-keyframes tilt-in-br {
  215. 0% {
  216. -webkit-transform: rotateY(-35deg) rotateX(-20deg) translate(250px, 250px) skew(12deg, 15deg);
  217. transform: rotateY(-35deg) rotateX(-20deg) translate(250px, 250px) skew(12deg, 15deg);
  218. opacity: 0;
  219. }
  220. 100% {
  221. -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
  222. transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
  223. opacity: 1;
  224. }
  225. }
  226. @keyframes tilt-in-br {
  227. 0% {
  228. -webkit-transform: rotateY(-35deg) rotateX(-20deg) translate(250px, 250px) skew(12deg, 15deg);
  229. transform: rotateY(-35deg) rotateX(-20deg) translate(250px, 250px) skew(12deg, 15deg);
  230. opacity: 0;
  231. }
  232. 100% {
  233. -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
  234. transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
  235. opacity: 1;
  236. }
  237. }
  238.  
  239.  
  240. i{color: #996515;}
  241. b{color: #000;}
  242. a{color: #5c26b5; text-decoration: none;}
  243. h1{border-bottom: 1px solid #000; text-align: center; font-size: 20px; font-family: 'Cinzel', cursive; color: #000;}
  244. </style>
  245. <div id="container">
  246. <div class="name">Ingenium</div>
  247. <div class="title">Ingenium</div>
  248. <div class="lyrics">Never again will they... or my brother... leave me behind in the dust!</div>
  249. <div id="image"></div>
  250.  
  251. <div id="nav">
  252. <a href="#one"></a>
  253. <a href="#two"></a>
  254. <a href="#three"></a>
  255. <a href="#four"></a>
  256. </div>
  257.  
  258.  
  259. <div id="content">
  260. <div style="width: 35vw; height: 25vw; overflow-y: hidden;">
  261.  
  262. <a name="one"></a>
  263. <div style="width: 35vw; height: 25vw; overflow: auto;" align="center">
  264. <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
  265. <span style="float:left;"><b>Alias</b></span><span style="float:right;"></span><br>
  266. <span style="float:left;"><b>Gender</b></span><span style="float:right;"></span><br>
  267. <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br>
  268. <span style="float:left;"><b>Race</b></span><span style="float:right;"></span><br>
  269. <span style="float:left;"><b>Voice</b></span><span style="float:right;"><a href="" target="_blank">Click~</a></span><br><br>
  270. <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
  271. <span style="float:left;"><b>Weight</b></span><span style="float:right;"></span><br>
  272. <span style="float:left;"><b>Eyes</b></span><span style="float:right;"></span><br>
  273. <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br>
  274. <span style="float:left;"><b>Build</b></span><span style="float:right;"></span><br><br>
  275. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
  276. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br>
  277. <span style="float:left;"><b>Class</b></span><span style="float:right;"></span><br>
  278. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"></span><br><br><br>
  279. </div>
  280.  
  281. <a name="two"></a>
  282. <div style="width: 35vw; height: 25vw; overflow: auto;" align="left">
  283. <h1>Combat</h1>
  284. <span style="float:left;"><b>Cooperation</b></span><span style="float:right;">●●●●○</span><br><br>
  285. <span style="float:left;"><b>Power</b></span><span style="float:right;">●●●●○</span><br><br>
  286. <span style="float:left;"><b>Speed</b></span><span style="float:right;">●●○○○</span><br><br>
  287. <span style="float:left;"><b>Intelligence</b></span><span style="float:right;">●●●○○</span><br><br>
  288. <span style="float:left;"><b>Technique</b></span><span style="float:right;">●●●○○</span><br><br>
  289.  
  290. <h2>Quirk</h2>
  291. <b>Quirk Name:</b> <br><br>
  292. <b>Quirk Type:</b> <br><br>
  293. <b>Quirk Description:</b>
  294.  
  295. <h3>Equipment</h3>
  296. <b>TBA</b>
  297. </div>
  298.  
  299.  
  300. <a name="three"></a>
  301. <div style="width: 35vw; height: 25vw; overflow: auto;" align="center">
  302. <h1>Contacts</h1>
  303. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a><br>
  304. <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>
  305. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  306. </div>
  307.  
  308. <a name="four"></a>
  309. <div style="width: 35vw; height: 25vw; overflow: auto;" align="left">
  310. <h1>Out of Character</h1>
  311.  
  312. <center><b>00</b>. Code made by <a href="/profile.php?user=RageQxeen" target="_blank">RageQxeen</a>, do not steal.<br><br></center>
  313. <b>01</b>. Don't be an asshole.<br>
  314. <b>02</b>. DMs are not for you to send your copy-paste starter post tryna smut, they're for conversing first and foremost with the writer, do not send me a starter post randomly as you will be instantly blocked.<br>
  315. <b>03</b>. IRL takes prescendence over RP.<br>
  316. <b>04</b>. MHA OC, can branch out if the desire hits.<br>
  317. <b>05</b>. I retain the right to deny any RP i desire at any time, as you may do the same.<br>
  318. <b>06</b>. Smut is solely for DMs only and will not actually occur in canon with the room.<br>
  319. <b>07</b>. Don't bitch and complain if I deny your request for smut, you just look like a fuckboi and you'll be blocked.<br>
  320. </div>
  321. </div>
  322. </div>
  323. </div>
  324. </body>
  325. </html>
Add Comment
Please, Sign In to add comment