RageQxeen

Shade

Feb 1st, 2020
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.69 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=Domine|EB+Garamond|Yanone+Kaffeesatz&display=swap');
  50.  
  51. html, body {
  52. background: rgb(7,0,8);
  53. background: -moz-linear-gradient(21deg, rgba(7,0,8,1) 0%, rgba(76,18,79,1) 100%);
  54. background: -webkit-linear-gradient(21deg, rgba(7,0,8,1) 0%, rgba(76,18,79,1) 100%);
  55. background: linear-gradient(21deg, rgba(7,0,8,1) 0%, rgba(76,18,79,1) 100%);
  56. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#070008",endColorstr="#4c124f",GradientType=1);
  57. }
  58.  
  59. body .fade {
  60. background: #3E0315;
  61. background-image:url("https://cdn.discordapp.com/attachments/672445900509020167/672445996633948160/1.jpg");
  62. background-size: 33.2%;
  63. background-repeat: no-repeat;
  64. background-position: right bottom;
  65. width: 120vw;
  66. height: 60vw;
  67. margin:auto;
  68. position: absolute;
  69. right: 0vw;
  70. bottom: 0vw;
  71. z-index:10;
  72. opacity: 1;
  73. animation-fill-mode: ease-in-out both;
  74. }
  75.  
  76. body:hover .fade{
  77. animation: fader ease-in-out 5s;
  78. animation-iteration-count: 1;
  79. transform-origin: 50% 50%;
  80. animation-fill-mode:ease-in-out both;
  81. -webkit-animation: fader ease-in-out 5s;
  82. -webkit-animation-iteration-count: 1;
  83. -webkit-transform-origin: 50% 50%;
  84. -webkit-animation-fill-mode:both;
  85. -moz-animation: fader ease-in-out 5s;
  86. -moz-animation-iteration-count: 1;
  87. -moz-transform-origin: 50% 50%;
  88. -moz-animation-fill-mode:both;
  89. -o-animation: fader ease-in-out 5s;
  90. -o-animation-iteration-count: 1;
  91. -o-transform-origin: 50% 50%;
  92. -o-animation-fill-mode:both;
  93. -ms-animation: fader ease-in-out 5s;
  94. -ms-animation-iteration-count: 1;
  95. -ms-transform-origin: 50% 50%;
  96. -ms-animation-fill-mode:both;
  97. }
  98.  
  99. @keyframes fader{
  100. 0% {
  101. opacity:1;
  102. transform: scaleX(1.00) scaleY(1.00) ;
  103. }
  104. 50% {
  105. opacity:0;
  106. transform: scaleX(NaN) scaleY(NaN) ;
  107. }
  108. 100% {
  109. z-index: -1;
  110. opacity: 0;
  111. }
  112. }
  113.  
  114. @-moz-keyframes fader{
  115. 0% {
  116. opacity:1;
  117. -moz-transform: scaleX(1.00) scaleY(1.00) ;
  118. }
  119. 50% {
  120. opacity:0;
  121. -moz-transform: scaleX(NaN) scaleY(NaN) ;
  122. }
  123. 100% {
  124. z-index: -1;
  125. opacity: 0;
  126. }
  127. }
  128.  
  129. @-webkit-keyframes fader {
  130. 0% {
  131. opacity:1;
  132. -webkit-transform: scaleX(1.00) scaleY(1.00) ;
  133. }
  134. 50% {
  135. opacity:0;
  136. -webkit-transform: scaleX(NaN) scaleY(NaN) ;
  137. }
  138. 100% {
  139. z-index: -1;
  140. opacity: 0;
  141. }
  142. }
  143.  
  144. @-o-keyframes fader {
  145. 0% {
  146. opacity:1;
  147. -o-transform: scaleX(1.00) scaleY(1.00) ;
  148. }
  149. 50% {
  150. opacity:0;
  151. -o-transform: scaleX(NaN) scaleY(NaN) ;
  152. }
  153. 100% {
  154. z-index: -1;
  155. opacity: 0;
  156. }
  157. }
  158.  
  159. @-ms-keyframes fader {
  160. 0% {
  161. opacity:1;
  162. -ms-transform: scaleX(1.00) scaleY(1.00) ;
  163. }
  164. 50% {
  165. opacity:0;
  166. -ms-transform: scaleX(NaN) scaleY(NaN) ;
  167. }
  168. 100% {
  169. z-index: -1;
  170. opacity: 0;
  171. }}
  172.  
  173. ::-webkit-scrollbar-button:vertical:{
  174. background-color: #transparent;}
  175.  
  176. ::-webkit-scrollbar-thumb:vertical {
  177. background-color:#transparent;
  178. height:150px;}
  179.  
  180. ::-webkit-scrollbar-thumb:horizontal {
  181. background-color:#transparent;
  182. height:60px;}
  183.  
  184.  
  185. ::-webkit-scrollbar {
  186. height:60px;
  187. width:5px;
  188. background-color:#transparent;}
  189.  
  190. #image {
  191. width: 22vw;
  192. margin: 0px;
  193. border: none;
  194. height: 32vw;
  195. padding: 5px;
  196. background-color:transparent;
  197. position: absolute;
  198. left: 0%;
  199. bottom: 0%;
  200. border-right: solid 4px #000;
  201. background-image:url("https://i.imgur.com/G3Q649F.jpg");
  202. background-repeat:no-repeat;
  203. background-position: bottom;
  204. background-size: 100%;
  205. }
  206.  
  207. #container {
  208. background-color: transparent;
  209. width: 59.5vw;
  210. height: 32vw;
  211. margin:auto;
  212. position: absolute;
  213. padding: 5px;
  214. left: 15vw;
  215. top: 10vw;
  216. z-index:1;
  217. box-shadow: #000 0px 5px 10px 10px;
  218. }
  219.  
  220. #content {
  221. background-color: transparent;
  222. width: 36vw;
  223. height: 31vw;
  224. margin:auto;
  225. position: absolute;
  226. padding: 10px;
  227. font-family: 'Yanone Kaffeesatz', cursive;
  228. font-size: 18px;
  229. color: #c0c0c0;
  230. right: 0.1vw;
  231. bottom: 0vw;
  232. z-index:1;
  233. }
  234.  
  235. .name {position: absolute;
  236. font-family: 'Domine';
  237. color: #fff;
  238. font-size: 4vw;
  239. top: -4vw;
  240. left: -1vw;
  241. width: 50vw;
  242. height: 5vw;
  243. border: 0px solid #000;
  244. text-align: justify;
  245. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  246. overflow: auto;
  247. padding:5px 5px 5px 5px;
  248. z-index: 2;}
  249.  
  250. .title { background: transparent;
  251. background:url('https://steamuserimages-a.akamaihd.net/ugc/946213806090727357/E7CC9390E0F17C74BCA315498460672FECB37F41/') repeat;
  252. background-position: center;
  253. position: absolute;
  254. font-family: 'Domine';
  255. font-size: 4vw;
  256. top: -4vw;
  257. left: -1vw;
  258. width: 50vw;
  259. height: 5vw;
  260. text-align: justify;
  261. padding:5px 5px 5px 5px;
  262. -webkit-text-fill-color: transparent;
  263. -webkit-background-clip: text;
  264. z-index: 3;}
  265.  
  266. .quote {position: absolute;
  267. font-family: 'EB Garamond';
  268. color: #E214B5;
  269. font-size: 2vw;
  270. bottom: -2vw;
  271. right: -5.2vw;
  272. width: 55vw;
  273. height: 2.2vw;
  274. border: 0px solid #000;
  275. text-align: center;
  276. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  277. overflow: auto;
  278. padding:5px 5px 5px 5px;
  279. z-index: 2;}
  280.  
  281. #nav {
  282. background-color: transparent;
  283. width: .5vw;
  284. height: 12vw;
  285. margin:auto;
  286. position: absolute;
  287. left: 21.7vw;
  288. top: 11vw;
  289. text-align:right;
  290. z-index:4;
  291. }
  292.  
  293. #nav a, #nav a:link, #nav a:visited {
  294. display:inline-block;
  295. height: .8vw;
  296. width: .8vw;
  297. text-decoration:none;
  298. background: #4c124f;
  299. margin: 5px;
  300. border: double #000 5px;
  301. border-radius: 50%;
  302. -webkit-transition: 0.5s linear;
  303. -moz-transition: 0.5s linear;
  304. -o-transition: 0.5s linear;
  305. transition: 0.5s linear;
  306. }
  307.  
  308. #nav a:active, #nav a:hover {
  309. display:inline-block;
  310. height: .8vw;
  311. width: .8vw;
  312. text-decoration:none;
  313. background: #E214B5;
  314. margin: 5px;
  315. border: double #000 5px;
  316. border-radius: 50%;
  317. -webkit-transition: 0.5s linear;
  318. -moz-transition: 0.5s linear;
  319. -o-transition: 0.5s linear;
  320. transition: 0.5s linear;
  321. }
  322.  
  323. i{color: #FF71FF;}
  324. b{color: #fff;}
  325. a{color: #E214B5; text-decoration: none;}
  326. h1{border-bottom: 1px solid #FF71FF; text-align: center; font-size: 35px; font-family: 'Yanone Kaffeesatz', cursive; color: #fff;}
  327. h2{border-bottom: 1px solid #FF71FF; text-align: right; font-size: 30px; font-family: 'Yanone Kaffeesatz', cursive; color: #fff;}
  328. h3{border-bottom: 1px solid #FF71FF; text-align: left; font-size: 25px; font-family: 'Yanone Kaffeesatz', cursive; color: #fff;}
  329. </style>
  330. <div class="fade"></div>
  331.  
  332.  
  333. <div id="container">
  334. <div class="name">Shade</div>
  335. <div class="title">Shade</div>
  336. <div class="quote">"I know you probably think of us as equals, news flash; we're not."</div>
  337. <div id="image"></div>
  338.  
  339. <div id="nav">
  340. <a href="#one"></a>
  341. <a href="#two"></a>
  342. <a href="#three"></a>
  343. <a href="#four"></a>
  344. <a href="#five"></a>
  345. </div>
  346.  
  347.  
  348. <div id="content">
  349. <div style="width: 36.5vw; height: 31.8vw; overflow-y: hidden;">
  350.  
  351. <a name="one"></a>
  352. <div style="width: 36.5vw; height: 31.8vw; overflow: auto;" align="center">
  353. <span style="float:left;"><b>Name</b></span><span style="float:right;">HERE</span><br>
  354. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"><a title="TBA">hover</a></span><br>
  355. <span style="float:left;"><b>Hero Name</b></span><span style="float:right;">HERE</span><br>
  356. <span style="float:left;"><b>Gender</b></span><span style="float:right;">HERE</span><br>
  357. <span style="float:left;"><b>Age</b></span><span style="float:right;">HERE</span><br>
  358. <span style="float:left;"><b>Race</b></span><span style="float:right;">HERE</span><br>
  359. <span style="float:left;"><b>Voice</b></span><span style="float:right;"><a href="LINK HERE" target="_blank">Click~</a></span><br><br>
  360. <span style="float:left;"><b>Height</b></span><span style="float:right;">HERE</span><br>
  361. <span style="float:left;"><b>Weight</b></span><span style="float:right;">HERE</span><br>
  362. <span style="float:left;"><b>Eyes</b></span><span style="float:right;">HERE</span><br>
  363. <span style="float:left;"><b>Hair</b></span><span style="float:right;">HERE</span><br>
  364. <span style="float:left;"><b>Build</b></span><span style="float:right;">HERE</span><br><br>
  365. <span style="float:left;"><b>Orientation</b></span><span style="float:right;">HERE</span><br>
  366. <span style="float:left;"><b>Relationship</b></span><span style="float:right;">HERE</span><br>
  367. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;">HERE</span><br><br><br>
  368. <i>italics</i>
  369. </div>
  370.  
  371. <a name="two"></a>
  372. <div style="width: 36.5vw; height: 31.8vw; overflow: auto;" align="left">
  373. <h1>Quirk</h1>
  374. <b>Quirk Name:</b><br> HERE<br><br>
  375. <b>Quirk Type:</b><br> HERE<br><br>
  376. <b>Quirk Description:</b>
  377. <br>HERE
  378. <br><br>
  379. <b>Strengths:</b><br>
  380. HERE<br><br>
  381.  
  382. <b>Weaknesses:</b><br>
  383. HERE<br><br>
  384.  
  385. <b>Drawbacks:</b><br>
  386. HERE<br>
  387.  
  388. <h3>Equipment</h3>
  389. HERE
  390.  
  391. <h2>Combat</h2>
  392. <span style="float:left;"><b>Cooperation</b></span><span style="float:right;">●●○○○</span><br><br>
  393. <span style="float:left;"><b>Power</b></span><span style="float:right;">●●●●○</span><br><br>
  394. <span style="float:left;"><b>Speed</b></span><span style="float:right;">●●●●○</span><br><br>
  395. <span style="float:left;"><b>Intelligence</b></span><span style="float:right;">●●●○○</span><br><br>
  396. <span style="float:left;"><b>Technique</b></span><span style="float:right;">●●●●○</span><br><br>
  397. </div>
  398.  
  399. <a name="three"></a>
  400. <div style="width: 36.5vw; height: 31.8vw; overflow: auto;" align="center">
  401. <h1>History</h1>
  402. HERE
  403. </div>
  404.  
  405. <a name="four"></a>
  406. <div style="width: 36.5vw; height: 31.8vw; overflow: auto;" align="center">
  407. <h1>Connections</h1>
  408. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a><br>
  409. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  410. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a><br>
  411. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  412. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a><br>
  413. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  414. </div>
  415.  
  416. <a name="five"></a>
  417. <div style="width: 36.5vw; height: 31.8vw; overflow: auto;" align="left">
  418. <h1>Out of Character</h1>
  419. <b>00</b>. Code by <a href="" target="_blank">RageQxeen</a>, DM for codes!<br><br>
  420.  
  421. <b>01</b>. OOC.<br>
  422. <b>02</b>. OOC.<br>
  423. <b>03</b>. OOC.<br>
  424. <b>04</b>. OOC.<br>
  425. <b>05</b>. OOC.<br>
  426. </div>
  427. </div>
  428. </div>
  429. </div>
  430. </body>
  431. </html>
Advertisement
Add Comment
Please, Sign In to add comment