Advertisement
RageQxeen

Forest Witch

Apr 4th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.74 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|Handlee);
  50.  
  51. html, body {
  52. background: rgb(90,106,35);
  53. background: linear-gradient(90deg, rgba(90,106,35,1) 0%, rgba(166,182,93,1) 26%, rgba(32,59,4,1) 59%);
  54. }
  55.  
  56. ::-webkit-scrollbar-button:vertical:{
  57. background-color: #transparent;}
  58.  
  59. ::-webkit-scrollbar-thumb:vertical {
  60. background-color:#transparent;
  61. height:150px;}
  62.  
  63. ::-webkit-scrollbar-thumb:horizontal {
  64. background-color:#transparent;
  65. height:60px;}
  66.  
  67.  
  68. ::-webkit-scrollbar {
  69. height:60px;
  70. width:5px;
  71. background-color:#transparent;}
  72.  
  73. #image {
  74. width: 27vw;
  75. margin: 0px;
  76. border: none;
  77. height: 48vw;
  78. background-color:transparent;
  79. position: absolute;
  80. left: 10vw;
  81. bottom: 0vw;
  82. background-image:url("https://i.ibb.co/tXFYyHb/64.png");
  83. background-repeat:no-repeat;
  84. background-position: bottom;
  85. background-size: 100%;
  86. z-index: 2;
  87. }
  88.  
  89. #bar {
  90. height: 25vh;
  91. width: 100%;
  92. position: absolute;
  93. left: 0vh;
  94. bottom: 20vh;
  95. background-image:url("https://preview.redd.it/enry01k4ec541.png?width=960&crop=smart&auto=webp&v=enabled&s=3dfbe0aa566767399d6d38c3e15b09f81a906fdf");
  96. background position: center;
  97. background-size: 100%;
  98. background-repeat: no-repeat;
  99. border-top: 2px solid #e0e5e1;
  100. border-bottom: 2px solid #e0e5e1;
  101. z-index: 1;
  102. }
  103.  
  104. #container {
  105. background-color:transparent;
  106. width: 30vw;
  107. height: 35vw;
  108. margin:auto;
  109. position: absolute;
  110. padding: 5px;
  111. right: 23vw;
  112. bottom: -8vw;
  113. z-index:1;
  114. border-radius: 20px;
  115. }
  116.  
  117. .ooc {
  118. background-color: #141609;
  119. width: 29vw;
  120. height: 10vw;
  121. margin:auto;
  122. position: absolute;
  123. padding: 5px;
  124. font-family: 'Handlee', cursive;
  125. font-size: 16px;
  126. color: #fff;
  127. right: .5vw;
  128. top: .5vw;
  129. z-index:1;
  130. border: #000000 solid 2px;
  131. }
  132.  
  133. .basics {
  134. background-color: #141609;
  135. width: 13vw;
  136. height: 13vw;
  137. margin:auto;
  138. position: absolute;
  139. padding: 5px;
  140. font-family: 'Handlee', cursive;
  141. font-size: 16px;
  142. color: #fff;
  143. left: .3vw;
  144. top: 11.5vw;
  145. z-index:1;
  146. border: #000000 solid 2px;
  147. }
  148.  
  149. .powers {
  150. background-color: #141609;
  151. width: 15vw;
  152. height: 13vw;
  153. margin:auto;
  154. position: absolute;
  155. padding: 5px;
  156. font-family: 'Handlee', cursive;
  157. font-size: 16px;
  158. color: #fff;
  159. right: .5vw;
  160. top: 11.5vw;
  161. z-index:1;
  162. border: #000000 solid 2px;
  163. }
  164.  
  165. .history {
  166. background-color: #141609;
  167. width: 29vw;
  168. height: 9vw;
  169. margin:auto;
  170. position: absolute;
  171. padding: 5px;
  172. font-family: 'Handlee', cursive;
  173. font-size: 16px;
  174. color: #fff;
  175. right: .5vw;
  176. top: 25.5vw;
  177. z-index:1;
  178. border: #000000 solid 2px;
  179. }
  180.  
  181. #wisp1 {
  182. width: 1vw;
  183. height: 1vw;
  184. position: absolute;
  185. left: 40vw;
  186. background-image:url("https://i.ibb.co/fCDr9Ws/wisp.png");
  187. background-repeat:no-repeat;
  188. background-position: bottom;
  189. background-size: 100%;
  190. filter: blur(2px);
  191. -webkit-animation: bounce 1s both ease-in infinite;
  192. animation: bounce 1s both infinite ease-in;
  193. }
  194.  
  195. @keyframes bounce{
  196. 0% {top: 6vw;}
  197. 50% {top: 6.5vw;}
  198. 100% {top: 6vw;}}
  199.  
  200. @-webkit-keyframes bounce {
  201. 0% {top: 6vw;}
  202. 50% {top: 6.5vw;}
  203. 100% {top: 6vw;}
  204. }
  205.  
  206. #wisp2 {
  207. width: 1vw;
  208. height: 1vw;
  209. position: absolute;
  210. left: 30vw;
  211. background-image:url("https://i.ibb.co/fCDr9Ws/wisp.png");
  212. background-repeat:no-repeat;
  213. background-position: bottom;
  214. background-size: 100%;
  215. filter: blur(2px);
  216. -webkit-animation: bounce2 2s -3s both linear infinite;
  217. animation: bounce2 2s -3s both linear infinite;
  218. }
  219.  
  220. @keyframes bounce2{
  221. 0% {top: 10vw;}
  222. 50% {top: 10.9vw;}
  223. 100% {top: 10vw;}}
  224.  
  225. @-webkit-keyframes bounce2 {
  226. 0% {top: 10vw;}
  227. 50% {top: 10.9vw;}
  228. 100% {top: 10vw;}
  229. }
  230.  
  231. #wisp3 {
  232. width: 1vw;
  233. height: 1vw;
  234. position: absolute;
  235. left: 10vw;
  236. background-image:url("https://i.ibb.co/fCDr9Ws/wisp.png");
  237. background-repeat:no-repeat;
  238. background-position: bottom;
  239. background-size: 100%;
  240. filter: blur(2px);
  241. -webkit-animation: bounce3 2s both linear infinite;
  242. animation: bounce3 2s both infinite linear;
  243. }
  244.  
  245. @keyframes bounce3{
  246. 0% {top: 2vw;}
  247. 50% {top: 3.5vw;}
  248. 100% {top: 2vw;}}
  249.  
  250. @-webkit-keyframes bounce3 {
  251. 0% {top: 2vw;}
  252. 50% {top: 3.5vw;}
  253. 100% {top: 2vw;}
  254. }
  255.  
  256. #wisp4 {
  257. width: 1vw;
  258. height: 1vw;
  259. position: absolute;
  260. left: 16vw;
  261. background-image:url("https://i.ibb.co/fCDr9Ws/wisp.png");
  262. background-repeat:no-repeat;
  263. background-position: bottom;
  264. background-size: 100%;
  265. filter: blur(2px);
  266. -webkit-animation: bounce4 2s -1s both linear infinite;
  267. animation: bounce4 2s -1s both linear infinite;
  268. }
  269.  
  270. @keyframes bounce4{
  271. 0% {top: 23vw;}
  272. 50% {top: 23.9vw;}
  273. 100% {top: 23vw;}}
  274.  
  275. @-webkit-keyframes bounce4 {
  276. 0% {top: 23vw;}
  277. 50% {top: 23.9vw;}
  278. 100% {top: 23vw;}
  279. }
  280.  
  281. #wisp5 {
  282. z-index: 2;
  283. width: 1vw;
  284. height: 1vw;
  285. position: absolute;
  286. left: 30vw;
  287. background-image:url("https://i.ibb.co/fCDr9Ws/wisp.png");
  288. background-repeat:no-repeat;
  289. background-position: bottom;
  290. background-size: 100%;
  291. filter: blur(2px);
  292. -webkit-animation: bounce5 2s both linear infinite;
  293. animation: bounce5 2s both infinite linear;
  294. }
  295.  
  296. @keyframes bounce5{
  297. 0% {top: 27vw;}
  298. 50% {top: 27.8vw;}
  299. 100% {top: 27vw;}}
  300.  
  301. @-webkit-keyframes bounce5 {
  302. 0% {top: 27vw;}
  303. 50% {top: 27.8vw;}
  304. 100% {top: 27vw;}
  305. }
  306.  
  307. .alias {position: absolute;
  308. font-family: 'Cinzel Decorative';
  309. background-color: transparent;
  310. background: -webkit-linear-gradient(right, #eaf1c5, #203b04, #eaf1c5);
  311. -webkit-background-clip: text;
  312. -webkit-text-fill-color: transparent;
  313. font-size: 4vw;
  314. bottom: 7vw;
  315. right: 37vw;
  316. width: 35vw;
  317. height: 5vw;
  318. text-align: center;
  319. transform: rotate(-90deg);
  320. filter: drop-shadow(0px 0px 1px #000);
  321. overflow: auto;
  322. padding:5px 5px 5px 5px;
  323. z-index: 3;}
  324.  
  325. .alias2 {position: absolute;
  326. font-family: 'Cinzel Decorative';
  327. background-color: transparent;
  328. background: -webkit-linear-gradient(right, #eaf1c5, #203b04, #eaf1c5);
  329. -webkit-background-clip: text;
  330. -webkit-text-fill-color: transparent;
  331. font-size: 4vw;
  332. bottom: 7vw;
  333. right: 4.3vw;
  334. width: 35vw;
  335. height: 5vw;
  336. text-align: center;
  337. transform: rotate(90deg);
  338. filter: drop-shadow(0px 0px 1px #000);
  339. overflow: auto;
  340. padding:5px 5px 5px 5px;
  341. z-index: 3;}
  342.  
  343. a {text-decoration: none; color: #eaf1c5;}
  344. </style>
  345.  
  346. <div id="wisp1"></div>
  347. <div id="wisp2"></div>
  348. <div id="wisp3"></div>
  349. <div id="wisp4"></div>
  350. <div id="wisp5"></div>
  351.  
  352. <div id="image"></div>
  353. <div id="bar">
  354. <div class="alias">Forest Witch</div>
  355. <div class="alias2">Nickname</div>
  356. <div id="container">
  357. <div class="ooc">
  358. <div style="width: 29vw; height: 10vw; overflow: auto;" align="left">
  359. <center><b>00</b>. Code made by <a target="_blank" href="https://rageqxeen.neocities.org/vw_codes/rageqxeen.html">RageQxeen</a>, do not steal.</center><br>
  360. <b>01</b>. OOC<br>
  361. <b>02</b>. OOC<br>
  362. <b>03</b>. OOC<br>
  363. <b>04</b>. OOC<br>
  364. <b>05</b>. OOC<br>
  365. </div>
  366. </div>
  367.  
  368. <div class="basics">
  369. <div style="width: 13vw; height: 13vw; overflow: auto;" align="center">
  370. <span style="float:left;"><b>Name</b></span><span style="float:right;">HERE</span><br>
  371. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;">HERE</span><br>
  372. <span style="float:left;"><b>Gender</b></span><span style="float:right;">HERE</span><br>
  373. <span style="float:left;"><b>Apparent Age</b></span><span style="float:right;">HERE</span><br>
  374. <span style="float:left;"><b>Height</b></span><span style="float:right;">HERE</span><br>
  375. <span style="float:left;"><b>Weight</b></span><span style="float:right;">HERE</span><br><br>
  376. <span style="float:left;"><b>Orientation</b></span><span style="float:right;">HERE</span><br>
  377. <span style="float:left;"><b>Relationship Preference</b></span><span style="float:right;">HERE</span><br>
  378. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"><a href="LINK HERE" target="_blank">TITLE HERE</a></span><br>
  379. <span style="float:left;"><b>Race</b></span><span style="float:right;">HERE</span><br>
  380. <span style="float:left;"><b>Eyes</b></span><span style="float:right;">HERE</span><br>
  381. <span style="float:left;"><b>Hair</b></span><span style="float:right;">HERE</span><br><br>
  382. <span style="float:left;"><b>Voice Claim</b></span><span style="float:right;"><a target="_blank" href="LINK HERE">TITLE HERE</a></span><br>
  383. <span style="float:left;"><b>F-List</b></span><span style="float:right;"><a target="_blank" href="LINK HERE">TITLE HERE</a></span><br>
  384. </div>
  385. </div>
  386.  
  387. <div class="powers">
  388. <div style="width: 15vw; height: 13vw; overflow: auto;" align="left">
  389. POWERS LISTED HERE
  390. </div>
  391. </div>
  392.  
  393. <div class="history">
  394. <div style="width: 29vw; height: 9vw; overflow: auto;" align="left">
  395. HISTORY LISTED HERE
  396. </div>
  397. </div>
  398. </div>
  399. </div>
  400. </body>
  401. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement