RageQxeen

The Magister

Jun 28th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.03 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=Great+Vibes|Arima+Madurai|Patua+One);
  50.  
  51. html, body {
  52. background: #c0c0c0;
  53. background-image:url("http://i.picpar.com/ny2d.png");
  54. background-size:100%;
  55. background-repeat:no-repeat;
  56. background-position:center;
  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: 400px;
  78. margin: 0px;
  79. border: none;
  80. height: 700px;
  81. background-color:transparent;
  82. position: absolute;
  83. z-index: 1;
  84. right: 0%;
  85. bottom: 0%;
  86. background-image:url("http://i.picpar.com/Nx2d.png");
  87. background-repeat:no-repeat;
  88. background-position: bottom;
  89. background-size: 100%;
  90. -webkit-animation: slidein 5s; /* Safari 4.0 - 8.0 */
  91. animation: slidein 5s;
  92. }
  93.  
  94. /* Safari 4.0 - 8.0 */
  95. @-webkit-keyframes slidein {
  96. from {right: 100%;}
  97. to {right: 0%;}
  98. }
  99.  
  100. /* Standard syntax */
  101. @keyframes slidein {
  102. from {right: 100%;}
  103. to {right: 0%;}
  104. }
  105.  
  106. #container {
  107. width: 1050px;
  108. height: 500px;
  109. margin: 0px;
  110. z-index: 0;
  111. background-color: #9EA3B0;
  112. background-image:url("http://i.picpar.com/Tx2d.png");
  113. background-size:100%;
  114. background-repeat:no-repeat;
  115. background-position:center bottom;
  116. position: absolute;
  117. right: 13%;
  118. bottom: 10%;
  119. box-shadow: 0px 5px 10px #000;
  120. -webkit-animation: fadein 5s; /* Safari 4.0 - 8.0 */
  121. animation: fadein 5s;
  122. }
  123.  
  124. /* Safari 4.0 - 8.0 */
  125. @-webkit-keyframes fadein {
  126. from {opacity: 0;}
  127. to {opacity: 1;}
  128. }
  129.  
  130. /* Standard syntax */
  131. @keyframes fadein {
  132. from {opacity: 0;}
  133. to {opacity: 1;}
  134. }
  135.  
  136. #content {
  137. background-color:#A1A5A6;
  138. width: 600px;
  139. height: 170px;
  140. margin:auto;
  141. position: absolute;
  142. padding: 5px;
  143. font-family: 'Arima Madurai', cursive;
  144. color: #000;
  145. left: 3%;
  146. top: 15%;
  147. z-index:1;
  148. border: #000000 solid 2px;
  149. }
  150.  
  151. #content2 {
  152. background-color:#A1A5A6;
  153. width: 600px;
  154. height: 170px;
  155. margin:auto;
  156. position: absolute;
  157. padding: 5px;
  158. font-family: 'Arima Madurai', cursive;
  159. color: #000;
  160. left: 3%;
  161. bottom: 7%;
  162. z-index:1;
  163. border: #000000 solid 2px;
  164. }
  165.  
  166. #friendlist {
  167. background-color:#A1A5A6;
  168. width: 200px;
  169. height: 450px;
  170. margin:auto;
  171. position: absolute;
  172. padding: 5px;
  173. font-family: 'Arima Madurai', cursive;
  174. color: #000;
  175. left: 63%;
  176. bottom: 3%;
  177. z-index:1;
  178. border: #000000 solid 2px;
  179. }
  180.  
  181. #name {
  182. z-index:15;
  183. position: absolute;
  184. left: 15%;
  185. top: 3%;
  186. margin: auto;
  187. background: #transparent;
  188. width: 350px;
  189. height: 150px;
  190. font-family: Great Vibes;
  191. font-size: 60px;
  192. background: url(https://66.media.tumblr.com/9348a3347757267167ed4b81dafbf430/tumblr_npvj6c8Qhz1rgda2fo2_500.gif) 0px 0px repeat;
  193. -webkit-text-fill-color: transparent;
  194. -webkit-background-clip: text;
  195. background-position: center;
  196. display:block;
  197. text-align: center;
  198. letter-spacing: 1px;
  199. -webkit-transition:opacity 2s linear;
  200. line-height:3.6vw;
  201. }
  202.  
  203. #nameunder{
  204. z-index:15;
  205. position: absolute;
  206. left: 15%;
  207. top: 3%;
  208. margin: auto;
  209. background: #transparent;
  210. width: 350px;
  211. height: 50px;
  212. font-family: Great Vibes;
  213. font-size: 60px;
  214. -webkit-text-fill-color: #000;
  215. text-transform: none;
  216. -webkit-background-clip: text;
  217. display:block;
  218. text-shadow: -1px 0 #333, 0 1px #000,1px 0 #000, 0 -1px #333;
  219. text-align: center;
  220. letter-spacing: 1px;
  221. -webkit-transition:opacity 2s linear;
  222. line-height:3.6vw;
  223. }
  224.  
  225. #nav {
  226. background-color: transparent;
  227. width: 300px;
  228. height:10px;
  229. margin:auto;
  230. position: absolute;
  231. left: 18.5%;
  232. bottom: 3%;
  233. text-align: center;
  234. text-decoration: none;
  235. z-index:1;
  236. }
  237.  
  238. #nav a, #nav a:link, #nav a:visited {
  239. display:inline-block;
  240. text-decoration: none;
  241. text-align: center;
  242. background: #000;
  243. color: transparent;
  244. box-shadow: 0px 0px 5px #444B53;
  245. padding: 4px;
  246. height: 4px;
  247. width: 30px;
  248. border-radius: 5px;
  249. }
  250.  
  251. #nav a:active, #nav a:hover {
  252. display:inline-block;
  253. height: 4px;
  254. width: 30px;
  255. text-decoration:none;
  256. background: #444B53;
  257. box-shadow: 0px 0px 5px #000;
  258. color: transparent;
  259. margin: 0px;
  260. }
  261.  
  262. /*Code by Alikade, please keep this credit where it is, it will not interfere with the rest of the code.*/
  263.  
  264. #editthis{ position:fixed;height: 27px; width: 30px; bottom: 0%; right: 0%; margin: auto; z-index:99;}
  265.  
  266. #music1{ position:fixed; padding:2px; border-radius: 50%; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  267.  
  268. #music1:hover #music2{ opacity: 0; margin-top:-20px; z-index:-1;}
  269.  
  270. #music1:hover #music3{ opacity: .5; margin-top:-5px; z-index:99;}
  271.  
  272. #music1:hover #musiclist{ opacity: .5;}
  273.  
  274. #music2{ opacity: .5; background-color:#000000; padding:6px; border-radius: 50%; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  275.  
  276. #music3{ opacity: 0; position:fixed; background-color:#000000; background-image: url('https://www.pngkey.com/png/full/11-113290_playbutton-video-player-button-png.png'); background-repeat: no-repeat; background-size: 25px; border:1px dotted #b3b3e5; border-radius: 50%; 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;}
  277.  
  278. i{color: #444;}
  279. b{color: #000;}
  280. a{color: #333; text-decoration: none;}
  281. h1{border-bottom: 1px solid #000; text-align: right; font-size: 30px; font-family: 'Patua One', cursive;}
  282. h2{border-bottom: 1px solid #000; text-align: left; font-size: 25px; font-family: 'Patua One', cursive;}
  283. h3{border-bottom: 1px solid #000; text-align: right; font-size: 25px; font-family: 'Patua One', cursive;}
  284. </style>
  285. <div id="container">
  286.  
  287. <div id="editthis"><div id="music1"><div id="music2">
  288. <img src="http://38.media.tumblr.com/tumblr_m7w2py1dEP1r6o8v2.gif" style="opacity: 0.8;"></div>
  289. <div id="music3"><Div style="margin-top:4px;">
  290. <audio controls style="opacity: 0;"><source src="http://k007.kiwi6.com/hotlink/52lc53nh40/Adam_Jensen_-_I_Can_Hold_A_Grudge_Like_Nobody_s_Business.mp3"></audio>
  291. </div></div></div></div>
  292.  
  293. <div id="nav">
  294. <a href="#one">Main</a>
  295. <a href="#two">Seco</a>
  296. <a href="#three">Thir</a>
  297. <a href="#four">Four</a>
  298. </div>
  299.  
  300. <div id="nameunder">The Magister</div><div id="name">The Magister</div>
  301.  
  302. <div id="content">
  303. <div style="width: 600px; height: 170px; overflow-y: hidden;">
  304.  
  305. <a name="one"></a>
  306. <div style="width: 600px; height: 170px; overflow: auto;" align="center">
  307. <span style="float:left;"><b>Name</b></span><span style="float:right;"> </span><br>
  308. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"> </span><br>
  309. <span style="float:left;"><b>Gender</b></span><span style="float:right;"> </span><br>
  310. <span style="float:left;"><b>Age</b></span><span style="float:right;"> </span><br>
  311. <span style="float:left;"><b>Height</b></span><span style="float:right;"> </span><br>
  312. <span style="float:left;"><b>Weight</b></span><span style="float:right;"> </span><br>
  313. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"> </span><br>
  314. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"><a href="LINK" target="_blank"> </a></span><br>
  315. <span style="float:left;"><b>Race</b></span><span style="float:right;"> </span><br>
  316. <span style="float:left;"><b>Mentality</b></span><span style="float:right;"> </span><br>
  317. <span style="float:left;"><b>Eyes</b></span><span style="float:right;"> </span><br>
  318. <span style="float:left;"><b>Hair</b></span><span style="float:right;"> </span><br>
  319. <span style="float:left;"><b>Build</b></span><span style="float:right;"></span><br>
  320. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"> </span><br>
  321. </div>
  322.  
  323. <a name="two"></a>
  324. <div style="width: 600px; height: 170px; overflow: auto;" align="center">
  325. <h1>Powers Title</h1>
  326.  
  327. </div>
  328. </div>
  329. </div>
  330.  
  331.  
  332. <div id="content2">
  333. <div style="width: 600px; height: 170px; overflow-y: hidden;">
  334.  
  335. <a name="three"></a>
  336. <div style="width: 600px; height: 170px; overflow: auto;" align="center">
  337. <h2>History Title</h2>
  338. </div>
  339.  
  340.  
  341.  
  342. <a name="four"></a>
  343. <div style="width: 600px; height: 170px; overflow: auto;" align="center">
  344. <h1>Out of Character</h1>
  345. <b>00</b>. Code made by RageQxeen, want one? Go <a href="alliealgiere.neocities.org" target="_blank">here</a>!<br><br>
  346. <b>01</b>. OOC.<br>
  347. <b>02</b>. OOC.<br>
  348. <b>03</b>. OOC.<br>
  349. <b>04</b>. OOC.<br>
  350. <b>05</b>. OOC.<br>
  351. </div>
  352. </div>
  353. </div>
  354.  
  355. <div id="friendlist">
  356. <div style="width: 200px; height: 450px; overflow: auto;" align="center">
  357.  
  358. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  359. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  360. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  361. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  362. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  363. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  364. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  365. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  366. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  367. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.
  368. </div>
  369. </div>
  370.  
  371. </div>
  372.  
  373. <div id="image"></div>
  374.  
  375. </body>
  376. </html>
Advertisement
Add Comment
Please, Sign In to add comment