RageQxeen

Jeremy Heeres

Jul 14th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.12 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=Playball|Source+Code+Pro|Raleway);
  50.  
  51. html, body {
  52. background: rgb(244,230,237);
  53. background: -moz-linear-gradient(330deg, rgba(244,230,237,1) 0%, rgba(78,81,110,1) 100%);
  54. background: -webkit-linear-gradient(330deg, rgba(244,230,237,1) 0%, rgba(78,81,110,1) 100%);
  55. background: linear-gradient(330deg, rgba(244,230,237,1) 0%, rgba(78,81,110,1) 100%);
  56. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4e6ed",endColorstr="#4e516e",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: 30vw;
  78. margin: 0px;
  79. border: none;
  80. height: 40vw;
  81. background-color:transparent;
  82. position: absolute;
  83. right: 10vw;
  84. bottom: 0vw;
  85. background-image:url("http://i.picpar.com/MWFe.png");
  86. background-repeat:no-repeat;
  87. background-position: bottom;
  88. background-size: 100%;
  89. z-index: 3;
  90. -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 2s both;
  91. animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 2s both;
  92. }
  93.  
  94. #container {
  95. width: 50vw;
  96. height: 30vw;
  97. position: absolute;
  98. right: 30vw;
  99. bottom: 3vw;
  100. background-color: #000;
  101. background-image: url('https://media.tenor.com/images/80cb16bb74ed9027ea1b25d077ce6d97/tenor.gif');
  102. background-position: center;
  103. background-size: fill;
  104. background-repeat: no-repeat;
  105. z-index: 1;
  106. }
  107.  
  108. #content {
  109. background-color:#f4ffff;
  110. width: 43vw;
  111. height: 25vw;
  112. margin:auto;
  113. position: absolute;
  114. padding: 5px;
  115. font-family: 'Source Code Pro', cursive;
  116. font-size: 18px;
  117. color: #000;
  118. left: 2vw;
  119. bottom: 0.5vw;
  120. z-index:1;
  121. border: 5px double #000;
  122. -webkit-animation: slit-in-horizontal 0.45s ease-out 3s both;
  123. animation: slit-in-horizontal 0.45s ease-out 3s both;
  124. }
  125.  
  126. #navi1 {position: absolute;
  127. right: 19vw;
  128. top: 1vw;
  129. }
  130.  
  131. #navi1 a {background-color: transparent;
  132. background:url('http://i.picpar.com/NWFe.png')
  133. center center no-repeat;;
  134. background-size: 100%;
  135. display: inline-block;
  136. height: 50px;
  137. width: 50px;
  138. border: 0px solid #000;
  139. }
  140.  
  141. #navi2 {position: absolute;
  142. right: 16vw;
  143. top: 1vw;}
  144.  
  145. #navi2 a {background-color: transparent;
  146. background:url('http://i.picpar.com/NWFe.png')
  147. center center no-repeat;;
  148. background-size: 100%;
  149. display: inline-block;
  150. height: 50px;
  151. width: 50px;
  152. border: 0px solid #000;}
  153.  
  154. #navi3 {position: absolute;
  155. right: 13vw;
  156. top: 1vw;}
  157.  
  158. #navi3 a {background-color: transparent;
  159. background:url('http://i.picpar.com/NWFe.png')
  160. center center no-repeat;;
  161. background-size: 100%;
  162. display: inline-block;
  163. height: 50px;
  164. width: 50px;
  165. border: 0px solid #000;}
  166.  
  167. #navi4 {position: absolute;
  168. right: 10vw;
  169. top: 1vw;}
  170.  
  171. #navi4 a {background-color: transparent;
  172. background:url('http://i.picpar.com/NWFe.png')
  173. center center no-repeat;;
  174. background-size: 100%;
  175. display: inline-block;
  176. height: 50px;
  177. width: 50px;
  178. border: 0px solid #000;}
  179.  
  180.  
  181. .name {position: absolute;
  182. font-family: 'Playball';
  183. color: #fff;
  184. font-size: 5vw;
  185. top: -8vw;
  186. left: -9vw;
  187. width: 43vw;
  188. height: 5vw;
  189. border: 0px solid #000;
  190. text-align: justify;
  191. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  192. overflow: auto;
  193. padding:5px 5px 5px 5px;
  194. transform: rotate(332deg);
  195. z-index: 2;
  196. }
  197.  
  198. .title { background: transparent;
  199. background:url('https://thumbs.gfycat.com/UniformGlitteringIbadanmalimbe-size_restricted.gif') 50px 50px repeat;
  200. background-position: top;
  201. position: absolute;
  202. font-family: 'Playball';
  203. font-size: 5vw;
  204. top: -8vw;
  205. left: -9vw;
  206. width: 43vw;
  207. height: 5vw;
  208. text-align: justify;
  209. padding:5px 5px 5px 5px;
  210. -webkit-text-fill-color: transparent;
  211. -webkit-background-clip: text;
  212. transform: rotate(332deg);
  213. z-index: 3;
  214. }
  215.  
  216.  
  217. @-webkit-keyframes slit-in-horizontal {
  218. 0% {
  219. -webkit-transform: translateZ(-800px) rotateX(90deg);
  220. transform: translateZ(-800px) rotateX(90deg);
  221. opacity: 0;
  222. }
  223. 54% {
  224. -webkit-transform: translateZ(-160px) rotateX(87deg);
  225. transform: translateZ(-160px) rotateX(87deg);
  226. opacity: 1;
  227. }
  228. 100% {
  229. -webkit-transform: translateZ(0) rotateX(0);
  230. transform: translateZ(0) rotateX(0);
  231. }
  232. }
  233. @keyframes slit-in-horizontal {
  234. 0% {
  235. -webkit-transform: translateZ(-800px) rotateX(90deg);
  236. transform: translateZ(-800px) rotateX(90deg);
  237. opacity: 0;
  238. }
  239. 54% {
  240. -webkit-transform: translateZ(-160px) rotateX(87deg);
  241. transform: translateZ(-160px) rotateX(87deg);
  242. opacity: 1;
  243. }
  244. 100% {
  245. -webkit-transform: translateZ(0) rotateX(0);
  246. transform: translateZ(0) rotateX(0);
  247. }
  248. }
  249.  
  250. @-webkit-keyframes fade-in {
  251. 0% {
  252. opacity: 0;
  253. }
  254. 100% {
  255. opacity: 1;
  256. }
  257. }
  258. @keyframes fade-in {
  259. 0% {
  260. opacity: 0;
  261. }
  262. 100% {
  263. opacity: 1;
  264. }
  265. }
  266.  
  267. i{color: #2F4F4F;}
  268. b{color: #000;}
  269. a{color: #708090; text-decoration: none;}
  270. h1{border-bottom: 1px solid #000; text-align: center; font-size: 30px; font-family: 'Raleway', cursive; color: #000;}
  271. h2{border-bottom: 1px solid #000; text-align: left; font-size: 30px; font-family: 'Raleway', cursive; color: #000;}
  272. h3{border-bottom: 1px solid #000; text-align: right; font-size: 30px; font-family: 'Raleway', cursive; color: #000;}
  273. </style>
  274. <div id="image"></div>
  275.  
  276. <div id="container">
  277.  
  278. <div id="navi2"><a href="#two"></a></div>
  279. <div id="navi3"><a href="#three"></a></div>
  280. <div id="navi4"><a href="#four"></a></div>
  281. <div id="navi1"><a href="#one"></a></div>
  282.  
  283. <div class="name">Be More Chill</div>
  284. <div class="title">Be More Chill</div>
  285.  
  286. <div id="content">
  287. <div style="width: 43vw; height: 25vw; overflow-y: hidden;">
  288.  
  289. <a name="one"></a>
  290. <div style="width: 43vw; height: 25vw; overflow: auto;">
  291.  
  292. <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
  293. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"></span><br>
  294. <span style="float:left;"><b>Gender</b></span><span style="float:right;"></span><br>
  295. <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br>
  296. <span style="float:left;"><b>Race</b></span><span style="float:right;">Human</span><br>
  297. <span style="float:left;"><b>Voice</b></span><span style="float:right;"><a href="LINK HERE" target="_blank">Click</a></span><br><br>
  298. <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
  299. <span style="float:left;"><b>Weight</b></span><span style="float:right;"></span><br>
  300. <span style="float:left;"><b>Eyes</b></span><span style="float:right;"></span><br>
  301. <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br>
  302. <span style="float:left;"><b>Build</b></span><span style="float:right;"></span><br><br>
  303. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
  304. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br>
  305. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"></span><br><br>
  306. </div>
  307.  
  308. <a name="two"></a>
  309. <div style="width: 43vw; height: 25vw; overflow: auto;" align="left">
  310. <h1>power</h1>
  311.  
  312. </div>
  313.  
  314. <a name="three"></a>
  315. <div style="width: 43vw; height: 25vw; overflow: auto;" align="center">
  316. <h1>headcanons</h1>
  317. <ul>
  318. <li>
  319. </ul>
  320. </div>
  321.  
  322.  
  323. <a name="four"></a>
  324. <div style="width: 43vw; height: 25vw; overflow: auto;" align="left">
  325. <h1>out of character</h1>
  326. <center><b>00</b>. Want a code? Go <a target="_blank" href="/profile.php?user=RageQxeen">here</a>. Refrain from stealing.</center><br>
  327. <b>01</b>. OOC.<br>
  328. <b>01</b>. OOC.<br>
  329. <b>03</b>. OOC.<br>
  330. <b>04</b>. OOC.<br>
  331. <b>05</b>. OOC.<br>
  332. </div>
  333. </div>
  334. </div>
  335. </div>
  336. </body>
  337. </html>
Advertisement
Add Comment
Please, Sign In to add comment