RageQxeen

Rowi

May 30th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.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=Cinzel+Decorative|Caladea|Cinzel);
  50.  
  51. html, body {
  52. background: rgb(206,225,240);
  53. background: -moz-linear-gradient(270deg, rgba(206,225,240,1) 0%, rgba(157,184,214,1) 25%, rgba(160,174,204,1) 50%, rgba(101,112,144,1) 75%, rgba(53,69,103,1) 100%);
  54. background: -webkit-linear-gradient(270deg, rgba(206,225,240,1) 0%, rgba(157,184,214,1) 25%, rgba(160,174,204,1) 50%, rgba(101,112,144,1) 75%, rgba(53,69,103,1) 100%);
  55. background: linear-gradient(270deg, rgba(206,225,240,1) 0%, rgba(157,184,214,1) 25%, rgba(160,174,204,1) 50%, rgba(101,112,144,1) 75%, rgba(53,69,103,1) 100%);
  56. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cee1f0",endColorstr="#354567",GradientType=1);
  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: 23vw;
  78. margin: 0px;
  79. border: none;
  80. height: 50vw;
  81. background-color:transparent;
  82. position: absolute;
  83. left: 0vw;
  84. bottom: 0vw;
  85. background-image:url("http://i.picpar.com/Lq4e.png");
  86. background-repeat:no-repeat;
  87. background-position: bottom;
  88. background-size: 100%;
  89. z-index: 4;
  90. }
  91.  
  92. #bar {
  93. width: 20vw;
  94. height: 100%;
  95. background-color: #adcbe3;
  96. position: absolute;
  97. left: 5vw;
  98. bottom: 0vw;
  99. margin: auto;
  100. background-image:url("https://www.transparenttextures.com/patterns/cartographer.png");
  101. box-shadow: #000 0px 5px 10px;
  102. z-index: 3;
  103. }
  104.  
  105. #holder1 {
  106. width: 50vw;
  107. height: 3vw;
  108. background-color: #adcbe3;
  109. position: absolute;
  110. right: -50vw;
  111. bottom: 5vw;
  112. margin: auto;
  113. background-image:url("https://www.transparenttextures.com/patterns/cartographer.png");
  114. z-index: 1;
  115. }
  116.  
  117. #holder2 {
  118. width: 50vw;
  119. height: 3vw;
  120. background-color: #adcbe3;
  121. position: absolute;
  122. right: -50vw;
  123. top: 5vw;
  124. margin: auto;
  125. background-image:url("https://www.transparenttextures.com/patterns/cartographer.png");
  126. z-index: 1;
  127. }
  128.  
  129. #holder3 {
  130. width: 3vw;
  131. height: 8vw;
  132. background-color: #adcbe3;
  133. position: absolute;
  134. right: 0vw;
  135. bottom: 3vw;
  136. margin: auto;
  137. background-image:url("https://www.transparenttextures.com/patterns/cartographer.png");
  138. z-index: 1;
  139. }
  140.  
  141. #holder4 {
  142. width: 3vw;
  143. height: 8vw;
  144. background-color: #adcbe3;
  145. position: absolute;
  146. right: 0vw;
  147. top: 3vw;
  148. margin: auto;
  149. background-image:url("https://www.transparenttextures.com/patterns/cartographer.png");
  150. z-index: 1;
  151. }
  152.  
  153. #container {
  154. background-color:#adcbe3;
  155. width: 50vw;
  156. height: 36vw;
  157. margin:auto;
  158. position: absolute;
  159. padding: 5px;
  160. right: -15vw;
  161. top: 8vw;
  162. z-index:1;
  163. background-image:url("https://www.transparenttextures.com/patterns/cartographer.png");
  164. z-index: 2;
  165. }
  166.  
  167. #banner {
  168. width: 48vw;
  169. margin: 0px;
  170. border: none;
  171. height: 17vw;
  172. background-color:transparent;
  173. position: absolute;
  174. right: .5vw;
  175. top: .5vw;
  176. padding: 5px;
  177. border: 5px double #000;
  178. background-image:url("http://i.picpar.com/Qq4e.jpeg");
  179. background-repeat:no-repeat;
  180. background-position: top;
  181. background-size: cover;
  182. z-index: 4;
  183. }
  184.  
  185. #banner2 {
  186. width: 48vw;
  187. margin: 0px;
  188. border: none;
  189. height: 15vw;
  190. background-color:transparent;
  191. position: absolute;
  192. right: .5vw;
  193. bottom: .5vw;
  194. padding: 5px;
  195. border: 5px double #000;
  196. background-image:url("https://static.zerochan.net/Chara.%28Criminale%21%29.full.1837981.jpg");
  197. background-repeat:no-repeat;
  198. background-position: center;
  199. background-size: cover;
  200. z-index: 4;
  201. }
  202.  
  203. #content {
  204. background-color:#f8f8ff;
  205. width: 48vw;
  206. height: 17vw;
  207. margin:auto;
  208. position: absolute;
  209. padding: 5px;
  210. font-family: 'Caladea', cursive;
  211. font-size: 18px;
  212. color: #000;
  213. right: .5vw;
  214. top: .5vw;
  215. z-index:6;
  216. border: 5px double #000;
  217. }
  218.  
  219. #content2 {
  220. background-color:#f8f8ff;
  221. width: 48vw;
  222. height: 15vw;
  223. margin:auto;
  224. position: absolute;
  225. padding: 5px;
  226. font-family: 'Caladea', cursive;
  227. font-size: 18px;
  228. color: #000;
  229. right: .5vw;
  230. bottom: .5vw;
  231. z-index:6;
  232. border: 5px double #000;
  233. }
  234.  
  235. #nav {
  236. background-color: transparent;
  237. width: 10vw;
  238. height: 15vw;
  239. margin:auto;
  240. position: absolute;
  241. right: 0.5vw;
  242. bottom: -10vw;
  243. text-align:right;
  244. z-index:1;
  245. }
  246.  
  247. #nav a, #nav a:link, #nav a:visited {
  248. display:inline-block;
  249. height: 10vw;
  250. width: 1vw;
  251. text-decoration:none;
  252. background: #adcbe3;
  253. background-image: url("https://www.transparenttextures.com/patterns/cartographer.png");
  254. margin: 5px;
  255. -webkit-transition: 0.5s linear;
  256. -moz-transition: 0.5s linear;
  257. -o-transition: 0.5s linear;
  258. transition: 0.5s linear;
  259. z-index:1;
  260. }
  261.  
  262. #nav a:active, #nav a:hover {
  263. display:inline-block;
  264. height: 10vw;
  265. width: 1vw;
  266. text-decoration:none;
  267. background: #354567;
  268. margin: 5px;
  269. margin-bottom: -30px;
  270. box-shadow: #c0c0c0 0px 5px 10px;
  271. -webkit-transition: 0.5s linear;
  272. -moz-transition: 0.5s linear;
  273. -o-transition: 0.5s linear;
  274. transition: 0.5s linear;
  275. z-index:1;
  276. }
  277.  
  278. .name {position: absolute;
  279. font-family: 'Cinzel Decorative';
  280. color: #fff;
  281. font-size: 7vw;
  282. top: 34vw;
  283. right: -30vw;
  284. width: 50vw;
  285. height: 10vw;
  286. border: 0px solid #000;
  287. text-align: justify;
  288. text-shadow: -1px 0 #c0c0c0, 0 3px #000,3px 0 #000, 0 -1px #c0c0c0;
  289. overflow: auto;
  290. padding:5px 5px 5px 5px;
  291. transform: rotate(90deg);
  292. z-index: 2;}
  293.  
  294. .title { background: transparent;
  295. background:url('https://media.giphy.com/media/8rEiAAlQD9gOxarV2B/giphy.gif') repeat;
  296. background-position: center;
  297. position: absolute;
  298. font-family: 'Cinzel Decorative';
  299. font-size: 7vw;
  300. top: 34vw;
  301. right: -30vw;
  302. width: 50vw;
  303. height: 10vw;
  304. text-align: justify;
  305. padding:5px 5px 5px 5px;
  306. transform: rotate(90deg);
  307. -webkit-text-fill-color: transparent;
  308. -webkit-background-clip: text;
  309. z-index: 3;}
  310.  
  311. .fade {
  312. opacity: 0;
  313. -webkit-transition: opacity 1s ease-in-out;
  314. -moz-transition: opacity 1s ease-in-out;
  315. -o-transition: opacity 1s ease-in-out;
  316. -ms-transition: opacity 1s ease-in-out;
  317. transition: opacity 1s ease-in-out;
  318. }
  319.  
  320. .fade:hover {
  321. opacity: 1;
  322. }
  323.  
  324. /*Code by Alikade, please keep this credit where it is, it will not interfere with the rest of the code.*/
  325.  
  326. #editthis{ position:fixed;height: 27px; width: 30px; bottom: 0vw; right: 0vw; margin: auto; z-index:99;}
  327.  
  328. #music1{ position:fixed; padding:2px; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  329.  
  330. #music1:hover #music2{ opacity: 0; margin-top:-20px; z-index:-1;}
  331.  
  332. #music1:hover #music3{ opacity: .5; margin-top:-5px; z-index:99;}
  333.  
  334. #music1:hover #musiclist{ opacity: .5;}
  335.  
  336. #music2{ opacity: .5; background-color:#000000; padding:6px; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  337.  
  338. #music3{ opacity: 0; position:fixed; background-color:#000000; background-image: url('https://enspira.com.au/wp-content/uploads/Play-Button-Transparent-PNG-300x300.png'); background-repeat: no-repeat; background-size: 25px; border:1px dotted #b3b3e5; width:25px; height:25px; z-index:99 margin-left:0px; overflow:hidden; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;}
  339.  
  340. i{color: #996515;}
  341. b{color: #000;}
  342. a{color: #5c26b5; text-decoration: none;}
  343. h1{border-bottom: 1px solid #000; text-align: center; font-size: 20px; font-family: 'Cinzel', cursive; color: #000;}
  344. </style>
  345. <div id="editthis"><div id="music1"><div id="music2">
  346. <img src="https://66.media.tumblr.com/8be55b2e542c052f4d980382ea0d0c4f/1cec31ea271359b0-e8/s75x75_c1/4580d24614413f29a468ff54958dcecdcf112855.gif" style="opacity: 0.8;"></div>
  347. <div id="music3"><Div style="margin-top:4px;">
  348. <audio controls style="opacity: 0;"><source src="http://k003.kiwi6.com/hotlink/r46n1uv9j8/Antonia_-_Marionette_official_video_HD.mp3"></audio>
  349. </div></div></div></div>
  350.  
  351. <div id="bar">
  352. <div id="image"></div>
  353. <div class="name">LEVIATHAN</div>
  354. <div class="title">LEVIATHAN</div>
  355.  
  356. <div id="holder1"><div id="holder3"></div></div>
  357. <div id="holder2"><div id="holder4">
  358. <div id="container">
  359.  
  360. <div id="nav">
  361. <a href="#one"></a>
  362. <a href="#two"></a>
  363. <a href="#three"></a>
  364. <a href="#four"></a>
  365. </div>
  366.  
  367. <div id="banner"></div>
  368. <div id="content" class="fade">
  369. <div style="width: 48vw; height: 17vw; overflow-y: hidden;">
  370.  
  371. <a name="one"></a>
  372. <div style="width: 48vw; height: 17vw; overflow: auto;">
  373.  
  374. <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
  375. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"></span><br>
  376. <span style="float:left;"><b>Gender</b></span><span style="float:right;">Male</span><br>
  377. <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br><br>
  378. <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
  379. <span style="float:left;"><b>Weight</b></span><span style="float:right;"></span><br>
  380. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
  381. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br>
  382. <span style="float:left;"><b>Race</b></span><span style="float:right;"></span><br>
  383. <span style="float:left;"><b>Mentality</b></span><span style="float:right;"></span><br><br>
  384. <span style="float:left;"><b>Eyes</b></span><span style="float:right;"></span><br>
  385. <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br>
  386. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"><a href="" target="_blank"></a></span><br>
  387. </div>
  388.  
  389. <a name="two"></a>
  390. <div style="width: 48vw; height: 17vw; overflow: auto;" align="left">
  391. <h1>Powers</h1>
  392.  
  393. </div>
  394. </div>
  395. </div>
  396.  
  397. <div id="banner2"></div>
  398. <div id="content2" class="fade">
  399. <div style="width: 48vw; height: 15vw; overflow-y: hidden;">
  400. <a name="three"></a>
  401. <div style="width: 48vw; height: 15vw; overflow: auto;" align="center">
  402. <h1>History</h1>
  403.  
  404. </div>
  405.  
  406. <a name="four"></a>
  407. <div style="width: 48vw; height: 15vw; overflow: auto;" align="left">
  408. <h1>out of character</h1>
  409. <center><b>00</b>. Want a code? Go <a target="_blank" href="https://roleplay.chat/profile.php?user=RageQxeen">here</a>. Refrain from stealing.</center><br>
  410. <b>01</b>. OOC.<br>
  411. <b>02</b>. OOC.<br>
  412. <b>03</b>. OOC.<br>
  413. <b>04</b>. OOC.<br>
  414. <b>05</b>. OOC.<br>
  415. </div>
  416. </div>
  417. </div>
  418. </div>
  419. </div>
  420. </div>
  421. </div>
  422. </body>
  423. </html>
Advertisement
Add Comment
Please, Sign In to add comment