RageQxeen

Sango

Mar 28th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.09 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|Gotu|Cinzel+Decorative');
  50.  
  51. html, body {
  52. background-color: #d17c71;
  53. background-image: url("https://www.transparenttextures.com/patterns/crossword.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: 30vw;
  78. margin: 0px;
  79. border: none;
  80. height: 40vw;
  81. background-color:transparent;
  82. position: absolute;
  83. left: 10vw;
  84. bottom: 5vw;
  85. background-image:url("http://i.picpar.com/0Fle.png");
  86. background-repeat:no-repeat;
  87. background-position: bottom;
  88. background-size: 100%;
  89. z-index: 2;
  90. animation: bounce 3s infinite; -webkit-animation: bounce 3s infinite; -o-animation: bounce 3s infinite;
  91. }
  92.  
  93. @keyframes bounce{
  94. 0% {bottom: 0vw;}
  95. 50% {bottom: 2vw;}
  96. 100% {bottom: 0vw;}}
  97.  
  98. @-webkit-keyframes bounce {
  99. 0% {bottom: 0vw;}
  100. 50% {bottom: 2vw;}
  101. 100% {bottom: 0vw;}}
  102.  
  103.  
  104. #holder {
  105. width: 100%;
  106. height: 15vw;
  107. background-color: #000;
  108. position: absolute;
  109. right: 0vw;
  110. bottom: 8vw;
  111. margin: auto;
  112. z-index: 1;
  113. }
  114.  
  115. #container {
  116. background-color:#000;
  117. width: 45vw;
  118. height: 28.5vw;
  119. margin:auto;
  120. position: absolute;
  121. padding: 5px;
  122. right: 10vw;
  123. bottom: 0vw;
  124. z-index:1;
  125. border: 3px solid #000;
  126. z-index: 2;
  127. }
  128.  
  129. #content {
  130. background-color:#f8f8ff;
  131. width: 43.5vw;
  132. height: 26vw;
  133. margin:auto;
  134. position: absolute;
  135. padding: 5px;
  136. font-family: 'Gotu', cursive;
  137. font-size: 18px;
  138. color: #000;
  139. right: .5vw;
  140. top: 1vw;
  141. z-index:6;
  142. border: 5px double #000;
  143. }
  144.  
  145. #navholder {
  146. background-color:#000;
  147. width: 5vw;
  148. display: inline-block;
  149. height: 8.5vw;
  150. margin:auto;
  151. position: absolute;
  152. padding: 5px;
  153. right: 9vw;
  154. top: 20vw;
  155. z-index:1;
  156. border: 3px solid #000;
  157. z-index: 1;
  158. margin: 5px;
  159. -webkit-transition: 0.5s linear;
  160. -moz-transition: 0.5s linear;
  161. -o-transition: 0.5s linear;
  162. transition: 0.5s linear;
  163. }
  164.  
  165. #navholder:hover {
  166. margin: 5px;
  167. display: inline-block;
  168. margin-right: -90px;
  169. -webkit-transition: 0.5s linear;
  170. -moz-transition: 0.5s linear;
  171. -o-transition: 0.5s linear;
  172. transition: 0.5s linear;
  173. }
  174.  
  175. #nav {
  176. background-color: transparent;
  177. width: .5vw;
  178. height: 1.7vw;
  179. margin:auto;
  180. position: absolute;
  181. right: 4.8vw;
  182. top: 0vw;
  183. z-index:1;
  184. }
  185.  
  186. #nav a, #nav a:link, #nav a:visited {
  187. display:inline-block;
  188. height: 1.1vw;
  189. width: 3.8vw;
  190. text-align: center;
  191. font-family: 'Gotu';
  192. font-size: 15px;
  193. text-decoration: none;
  194. color: #000;
  195. background: #68707c;
  196. margin: 5px;
  197. background-image: url("https://i.imgur.com/oJUsgm3.png");
  198. border: double #000 5px;
  199. -webkit-transition: 0.5s linear;
  200. -moz-transition: 0.5s linear;
  201. -o-transition: 0.5s linear;
  202. transition: 0.5s linear;
  203. }
  204.  
  205. #nav a:active, #nav a:hover {
  206. display:inline-block;
  207. height: 1.1vw;
  208. width: 3.8vw;
  209. text-align: center;
  210. font-family: 'Gotu';
  211. font-size: 15px;
  212. text-decoration: none;
  213. color: #c0c0c0;
  214. background: #8b0000;
  215. margin: 5px;
  216. background-image: url("https://i.imgur.com/oJUsgm3.png");
  217. border: double #778899 5px;
  218. -webkit-transition: 0.5s linear;
  219. -moz-transition: 0.5s linear;
  220. -o-transition: 0.5s linear;
  221. transition: 0.5s linear;
  222. }
  223.  
  224. .name {position: absolute;
  225. font-family: 'Cinzel Decorative';
  226. color: #fff;
  227. font-size: 3vw;
  228. top: -5vw;
  229. left: 8vw;
  230. width: 30vw;
  231. height: 5vw;
  232. border: 0px solid #000;
  233. text-align: justify;
  234. text-shadow: -1px 0 #c0c0c0, 0 3px #000,3px 0 #000, 0 -1px #c0c0c0;
  235. overflow: auto;
  236. padding:5px 5px 5px 5px;
  237. z-index: 2;}
  238.  
  239. .title { background: transparent;
  240. background:url('https://media3.giphy.com/media/yr9UNnSUmK3Be/source.gif') repeat;
  241. background-position: center;
  242. position: absolute;
  243. font-family: 'Cinzel Decorative';
  244. font-size: 3vw;
  245. top: -5vw;
  246. left: 8vw;
  247. width: 30vw;
  248. height: 5vw;
  249. text-align: justify;
  250. padding:5px 5px 5px 5px;
  251. -webkit-text-fill-color: transparent;
  252. -webkit-background-clip: text;
  253. z-index: 3;}
  254.  
  255. i{color: #660000;}
  256. b{color: #000;}
  257. a{color: #222; text-decoration: none;}
  258. h1{border-bottom: 1px solid #000; text-align: center; font-size: 30px; font-family: 'Cinzel Decorative', cursive; color: #000;}
  259. h2{border-bottom: 1px solid #000; text-align: left; font-size: 30px; font-family: 'Cinzel Decorative', cursive; color: #000;}
  260. h3{border-bottom: 1px solid #000; text-align: right; font-size: 30px; font-family: 'Cinzel Decorative', cursive; color: #000;}
  261. </style>
  262.  
  263. <div id="navholder">
  264. <div id="nav">
  265. <a href="#one">Stats</a>
  266. <a href="#two">Battle</a>
  267. <a href="#three">History</a>
  268. <a href="#four">OOC</a>
  269. </div>
  270. </div>
  271.  
  272. <div id="image"></div>
  273.  
  274. <div id="holder">
  275.  
  276. <div id="container">
  277.  
  278. <div class="name">The Demon Slayer</div>
  279. <div class="title">The Demon Slayer</div>
  280.  
  281. <div id="content">
  282. <div style="width: 43.5vw; height: 26vw; overflow-y: hidden;">
  283.  
  284. <a name="one"></a>
  285. <div style="width: 43.5vw; height: 26vw; overflow: auto;">
  286.  
  287. <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
  288. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"></span><br>
  289. <span style="float:left;"><b>Gender</b></span><span style="float:right;"></span><br>
  290. <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br><br>
  291. <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
  292. <span style="float:left;"><b>Weight</b></span><span style="float:right;"></span><br>
  293. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
  294. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br>
  295. <span style="float:left;"><b>Race</b></span><span style="float:right;"></span><br><br>
  296. <span style="float:left;"><b>Eyes</b></span><span style="float:right;"></span><br>
  297. <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br>
  298. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"><a href="" target="_blank"></a></span><br>
  299. </div>
  300.  
  301. <a name="two"></a>
  302. <div style="width: 43.5vw; height: 26vw; overflow: auto;" align="left">
  303. <h1>combat</h1>
  304.  
  305. </div>
  306.  
  307. <a name="three"></a>
  308. <div style="width: 43.5vw; height: 26vw; overflow: auto;" align="center">
  309. <h1>History</h1>
  310. TBA
  311. </div>
  312.  
  313. <a name="four"></a>
  314. <div style="width: 43.5vw; height: 26vw; overflow: auto;" align="left">
  315. <h1>out of character</h1>
  316. <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>
  317. <b>01</b>. OOC.<br>
  318. <b>02</b>. OOC.<br>
  319. <b>03</b>. OOC.<br>
  320. <b>04</b>. OOC.<br>
  321. <b>05</b>. OOC.<br>
  322. </div>
  323. </div>
  324. </div>
  325. </div>
  326. </body>
  327. </html>
Advertisement
Add Comment
Please, Sign In to add comment