RageQxeen

Aluber

Aug 21st, 2022
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.54 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=Aboreto|Roboto|Niconne);
  50.  
  51. html, body {
  52. background: #e3deda;
  53. background-image:url("https://www.transparenttextures.com/patterns/grunge-wall.png");
  54. background-size: fill;
  55. background-position:center;
  56. }
  57.  
  58. ::-webkit-scrollbar-button:vertical:{
  59. background-color: #transparent;}
  60.  
  61. ::-webkit-scrollbar-thumb:vertical {
  62. background-color:#transparent;
  63. height:150px;}
  64.  
  65. ::-webkit-scrollbar-thumb:horizontal {
  66. background-color:#transparent;
  67. height:60px;}
  68.  
  69.  
  70. ::-webkit-scrollbar {
  71. height:60px;
  72. width:5px;
  73. background-color:#transparent;}
  74.  
  75. .cover {
  76. background:url('https://i.ibb.co/ctQXCN6/1.png');
  77. background-repeat: no-repeat;
  78. opacity: 1;
  79. position: absolute;
  80. width: 100vw;
  81. height: 100vh;
  82. left: 0vw;
  83. top: 0vw;
  84. z-index: 1;
  85. overflow: hidden;
  86. }
  87.  
  88. #image {
  89. width: 30vw;
  90. margin: 0px;
  91. border: none;
  92. height: 40vw;
  93. background-color:transparent;
  94. position: absolute;
  95. right: 0vw;
  96. bottom: 0vw;
  97. background-image:url("");
  98. background-repeat:no-repeat;
  99. background-position: bottom;
  100. background-size: 100%;
  101. }
  102.  
  103. #container {
  104. background-color:#0a1c27;
  105. width: 40vw;
  106. height: 35vw;
  107. margin:auto;
  108. position: absolute;
  109. padding: 5px;
  110. right: 14vw;
  111. bottom: 5vw;
  112. z-index:1;
  113. box-shadow: 0px 5px 10px #000;
  114. background-color: rgb(0,0,0,0.4);
  115. border-radius: 20px;
  116. z-index: 1;
  117. }
  118.  
  119. #content {
  120. background-color: rgb(0, 0, 0, 0.8);
  121. width: 39vw;
  122. height: 34vw;
  123. margin:auto;
  124. position: absolute;
  125. padding: 5px;
  126. font-family: 'Roboto', cursive;
  127. font-size: 18px;
  128. color: #fff;
  129. right: .5vw;
  130. top: .5vw;
  131. z-index:1;
  132. border: #000000 solid 2px;
  133. border-radius: 20px;
  134. }
  135.  
  136. #nav {
  137. background-color: transparent;
  138. width: 5vw;
  139. height: 100px;
  140. margin:auto;
  141. position: absolute;
  142. right: 10vw;
  143. top: 13vw;
  144. text-align: center;
  145. z-index: 10;
  146. }
  147.  
  148. #nav a, #nav a:link, #nav a:visited {
  149. display:inline-block;
  150. background: #332628;
  151. color: #332628;
  152. margin-top: 0px;
  153. margin-bottom: 2vw;
  154. margin-left: 4vw;
  155. height: 100px;
  156. width: 150px;
  157. border-radius: 10px;
  158. box-shadow: 5px 5px 25px #d4dbee;
  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. #nav a:active, #nav a:hover {
  166. display:inline-block;
  167. height: 100px;
  168. width: 150px;
  169. border-radius: 100%;
  170. text-decoration:none;
  171. background: rgb(0,0,0,0.4);
  172. color: rgb(0,0,0,0.4);
  173. margin-bottom: 2vw;
  174. box-shadow: 0px 0px 5px #d4dbee;
  175. -webkit-transition: 0.5s linear;
  176. -moz-transition: 0.5s linear;
  177. -o-transition: 0.5s linear;
  178. transition: 0.5s linear;
  179. }
  180.  
  181. #icon {
  182. width: 150px;
  183. margin: 0px;
  184. border: none;
  185. height: 100px;
  186. background-color:transparent;
  187. position: absolute;
  188. background-image:url("https://cdn.donmai.us/sample/ef/40/__diluc_genshin_impact_drawn_by_takenaka_enj0y__sample-ef40e39f21e417e66f3a52ffc9731056.jpg");
  189. background-repeat:no-repeat;
  190. background-position: center;
  191. background-size: cover;
  192. border-radius: 10px;
  193. border: 2px solid #000;
  194. filter: blur(4px) grayscale(100%);
  195. box-sizing: border-box;
  196. z-index: 11;
  197. transition: 0.5s;
  198. }
  199.  
  200. #icon:hover {
  201. filter: blur(0px) grayscale(0%);
  202. background-position: 40% 10%;
  203. }
  204.  
  205. #icon2 {
  206. width: 150px;
  207. margin: 0px;
  208. border: none;
  209. height: 100px;
  210. background-color:transparent;
  211. position: absolute;
  212. background-image:url("https://media.discordapp.net/attachments/198512319108481024/1010819762433044541/Aluber.jpg?width=512&height=505");
  213. background-repeat:no-repeat;
  214. background-position: center;
  215. background-size: cover;
  216. border-radius: 10px;
  217. border: 2px solid #000;
  218. z-index: 11;
  219. filter: blur(4px) grayscale(100%);
  220. box-sizing: border-box;
  221. transition: 0.5s;
  222. }
  223.  
  224. #icon2:hover {
  225. filter: blur(0px) grayscale(0%);
  226. background-position: 40% 10%;
  227. }
  228.  
  229. #icon3 {
  230. width: 150px;
  231. margin: 0px;
  232. border: none;
  233. height: 100px;
  234. background-color:transparent;
  235. position: absolute;
  236. background-image:url("https://cdn.donmai.us/sample/52/ea/__diluc_and_diluc_genshin_impact_drawn_by_non_koto27__sample-52eadc876a1697f34d2967a6419edc16.jpg");
  237. background-repeat:no-repeat;
  238. background-position: center;
  239. background-size: cover;
  240. border-radius: 10px;
  241. border: 2px solid #000;
  242. z-index: 11;
  243. filter: blur(4px) grayscale(100%);
  244. box-sizing: border-box;
  245. transition: 0.5s;
  246. }
  247.  
  248. #icon3:hover {
  249. filter: blur(0px) grayscale(0%);
  250. background-position: 40% 10%;
  251. }
  252.  
  253. #icon4 {
  254. width: 150px;
  255. margin: 0px;
  256. border: none;
  257. height: 100px;
  258. background-color:transparent;
  259. position: absolute;
  260. background-image:url("https://cdn.donmai.us/sample/ce/c2/__diluc_genshin_impact_drawn_by_tuanzi43213480__sample-cec2a236cf6f5d2301c9cad58296284b.jpg");
  261. background-repeat:no-repeat;
  262. background-position: center;
  263. background-size: cover;
  264. border-radius: 10px;
  265. border: 2px solid #000;
  266. z-index: 11;
  267. filter: blur(4px) grayscale(100%);
  268. box-sizing: border-box;
  269. transition: 0.5s;
  270. }
  271.  
  272. #icon4:hover {
  273. filter: blur(0px) grayscale(0%);
  274. background-position: 40% 10%;
  275. }
  276.  
  277. .name {position: absolute;
  278. font-family: 'Niconne';
  279. color: #fff;
  280. font-size: 6vw;
  281. top: -6vw;
  282. left: 6vw;
  283. width: 36vw;
  284. height: 9vw;
  285. border: 0px solid #000;
  286. text-align: justify;
  287. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  288. overflow: auto;
  289. padding:5px 5px 5px 5px;
  290. z-index: 5;}
  291.  
  292. .title { background: transparent;
  293. background:url('https://acegif.com/wp-content/uploads/gifs/fire-11.gif') 50px 50px no-repeat;
  294. background-position: center left;
  295. position: absolute;
  296. font-family: 'Niconne';
  297. font-size: 6vw;
  298. top: -6vw;
  299. left: 6vw;
  300. width: 36vw;
  301. height: 9vw;
  302. text-align: justify;
  303. padding:5px 5px 5px 5px;
  304. -webkit-text-fill-color: transparent;
  305. -webkit-background-clip: text;
  306. z-index: 6;}
  307.  
  308. h1{
  309. background: url('https://i.pinimg.com/originals/f6/13/43/f61343f6da947608d47d61eadc88c334.gif');
  310. background-size: cover;
  311. background-position: center;
  312. text-align: center;
  313. border: 2px solid #000;
  314. border-radius: 15px;
  315. font-size: 30px;
  316. font-family: 'Aboreto', cursive;
  317. color: #000;
  318. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  319. line-height: 1.5;
  320. }
  321. h2{
  322. background: url('https://i.imgur.com/vybGgZo.gif');
  323. background-size: cover;
  324. background-position: center;
  325. text-align: center;
  326. border: 2px solid #000;
  327. border-radius: 15px;
  328. font-size: 30px;
  329. font-family: 'Aboreto', cursive;
  330. color: #000;
  331. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  332. line-height: 1.5;
  333. }
  334. h3{
  335. background: url('https://i.pinimg.com/originals/8d/42/ae/8d42ae7b69973ab3183ec0dffaca32ee.gif');
  336. background-size: cover;
  337. background-position: center;
  338. text-align: center;
  339. border: 2px solid #000;
  340. border-radius: 15px;
  341. font-size: 30px;
  342. font-family: 'Aboreto', cursive;
  343. color: #000;
  344. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  345. line-height: 1.5;
  346. }
  347. h4{
  348. background: url('https://i.pinimg.com/originals/65/c3/01/65c3010d6d17f9ae38a0a9742d8d642c.gif');
  349. background-size: cover;
  350. background-position: center;
  351. text-align: center;
  352. border: 2px solid #000;
  353. border-radius: 15px;
  354. font-size: 30px;
  355. font-family: 'Aboreto', cursive;
  356. color: #000;
  357. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  358. line-height: 1.5;
  359. }
  360. h5{
  361. background: url('https://i.pinimg.com/originals/c0/90/61/c0906118757255f3654be60965dfcea1.gif');
  362. background-size: cover;
  363. background-position: center;
  364. text-align: center;
  365. border: 2px solid #000;
  366. border-radius: 15px;
  367. font-size: 30px;
  368. font-family: 'Aboreto', cursive;
  369. color: #000;
  370. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  371. line-height: 1.5;
  372. }
  373. i{color: #e997a1;}
  374. b{color: #950020;}
  375. a{color: #fceec7; text-decoration: none;}
  376. </style>
  377. <div class="cover"></div>
  378.  
  379. <div id="nav">
  380. <a href="#one"><div id="icon"></div></a>
  381. <a href="#two"><div id="icon2"></div></a>
  382. <a href="#three"><div id="icon3"></div></a>
  383. <a href="#four"><div id="icon4"></div></a>
  384. </div>
  385.  
  386. <div id="container">
  387. <div class="name">The Rubedo</div>
  388. <div class="title">The Rubedo</div>
  389.  
  390. <div id="content">
  391. <div style="width: 39vw; height: 34vw; overflow-y: hidden;">
  392.  
  393. <a name="one"></a>
  394. <div style="width: 39vw; height: 34vw; overflow: auto;" align="center">
  395. <h1>The Basics</h1>
  396. <span style="float:left;"><b>Name</b></span><span style="float:right;">HERE</span><br>
  397. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;">HERE</span><br>
  398. <span style="float:left;"><b>Gender</b></span><span style="float:right;">Male</span><br>
  399. <span style="float:left;"><b>Age</b></span><span style="float:right;">N/A</span><br>
  400. <span style="float:left;"><b>Height</b></span><span style="float:right;">HERE</span><br>
  401. <span style="float:left;"><b>Weight</b></span><span style="float:right;">HERE</span><br><br>
  402. <span style="float:left;"><b>Orientation</b></span><span style="float:right;">HERE</span><br>
  403. <span style="float:left;"><b>Relationship</b></span><span style="float:right;">HERE</span><br>
  404. <span style="float:left;"><b>Race</b></span><span style="float:right;">HERE</span><br>
  405. <span style="float:left;"><b>Eyes</b></span><span style="float:right;">Gold</span><br>
  406. <span style="float:left;"><b>Hair</b></span><span style="float:right;">White</span><br>
  407.  
  408. <h2>Friends</h2>
  409. <marquee behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();">
  410. <a target="_blank" href="PROFILE LINK HERE"><img src="https://cdn2.iconfinder.com/data/icons/gaming-and-beyond-part-2-1/80/User_gray-512.png" height="70" width="70" align="left" border="5" title="WORDS"></a>
  411. </marquee>
  412. </div>
  413.  
  414. <a name="two"></a>
  415. <div style="width: 39vw; height: 34vw; overflow: auto;" align="left">
  416. <h3>Abilities</h3>
  417.  
  418. </div>
  419.  
  420.  
  421. <a name="three"></a>
  422. <div style="width: 39vw; height: 34vw; overflow: auto;" align="center">
  423. <h4>History</h4>
  424.  
  425. </div>
  426.  
  427. <a name="four"></a>
  428. <div style="width: 39vw; height: 34vw; overflow: auto;" align="center">
  429. <h5>Out of Character</h5>
  430. <b>00</b>. Code made by <a href="https://rageqxeen.neocities.org/vw_codes/rageqxeen.html" target="_blank">RageQxeen</a>, do not steal.<br>
  431. <b>01</b>. OOC<br>
  432. <b>02</b>. OOC<br>
  433. <b>03</b>. OOC<br>
  434. <b>04</b>. OOC<br>
  435. <b>05</b>. OOC<br>
  436. </div>
  437. </div>
  438. </div>
  439. </div>
  440. </body>
  441. </html>
Add Comment
Please, Sign In to add comment