RageQxeen

Tephrite

Jan 1st, 2020
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.26 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=Inria+Serif|Lora|Righteous);
  50.  
  51. html, body { background: rgb(15,13,11);
  52. background: -moz-linear-gradient(90deg, rgba(15,13,11,1) 0%, rgba(54,17,17,1) 16%, rgba(111,16,10,1) 36%, rgba(188,54,41,1) 59%, rgba(213,84,32,1) 81%, rgba(231,175,131,1) 100%);
  53. background: -webkit-linear-gradient(90deg, rgba(15,13,11,1) 0%, rgba(54,17,17,1) 16%, rgba(111,16,10,1) 36%, rgba(188,54,41,1) 59%, rgba(213,84,32,1) 81%, rgba(231,175,131,1) 100%);
  54. background: linear-gradient(90deg, rgba(15,13,11,1) 0%, rgba(54,17,17,1) 16%, rgba(111,16,10,1) 36%, rgba(188,54,41,1) 59%, rgba(213,84,32,1) 81%, rgba(231,175,131,1) 100%);
  55. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f0d0b",endColorstr="#e7af83",GradientType=1);
  56. }
  57.  
  58.  
  59. body .fade {
  60. background-color: #000;
  61. background-image:url("https://phonebookofgrenoble.xyz/image/19515-full_ffxiv-dark-knight-wallpaper-90-images.jpg");
  62. background-size: 100%;
  63. width: 2000px;
  64. height: 1000px;
  65. margin:auto;
  66. position: absolute;
  67. right: 0%;
  68. bottom: 0%;
  69. z-index:1;
  70. opacity: 1;
  71. animation-fill-mode: ease-in-out forwards;
  72. }
  73.  
  74. body:hover .fade{
  75. animation: fader ease-in-out 10s;
  76. animation-iteration-count: 1;
  77. transform-origin: 50% 50%;
  78. animation-fill-mode:ease-in-out forwards; /*when the spec is finished*/
  79. -webkit-animation: fader ease-in-out 10s;
  80. -webkit-animation-iteration-count: 1;
  81. -webkit-transform-origin: 50% 50%;
  82. -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
  83. -moz-animation: fader ease-in-out 10s;
  84. -moz-animation-iteration-count: 1;
  85. -moz-transform-origin: 50% 50%;
  86. -moz-animation-fill-mode:forwards; /*FF 5+*/
  87. -o-animation: fader ease-in-out 10s;
  88. -o-animation-iteration-count: 1;
  89. -o-transform-origin: 50% 50%;
  90. -o-animation-fill-mode:forwards; /*Not implemented yet*/
  91. -ms-animation: fader ease-in-out 10s;
  92. -ms-animation-iteration-count: 1;
  93. -ms-transform-origin: 50% 50%;
  94. -ms-animation-fill-mode:forwards; /*IE 10+*/
  95. }
  96.  
  97. @keyframes fader{
  98. 0% {
  99. opacity:1;
  100. transform: scaleX(1.00) scaleY(1.00) ;
  101. }
  102. 50% {
  103. opacity:0;
  104. transform: scaleX(NaN) scaleY(NaN) ;
  105. }
  106. 100% {
  107. z-index: -1;
  108. opacity: 0;
  109. }
  110. }
  111.  
  112. @-moz-keyframes fader{
  113. 0% {
  114. opacity:1;
  115. -moz-transform: scaleX(1.00) scaleY(1.00) ;
  116. }
  117. 50% {
  118. opacity:0;
  119. -moz-transform: scaleX(NaN) scaleY(NaN) ;
  120. }
  121. 100% {
  122. z-index: -1;
  123. opacity: 0;
  124. }
  125. }
  126.  
  127. @-webkit-keyframes fader {
  128. 0% {
  129. opacity:1;
  130. -webkit-transform: scaleX(1.00) scaleY(1.00) ;
  131. }
  132. 50% {
  133. opacity:0;
  134. -webkit-transform: scaleX(NaN) scaleY(NaN) ;
  135. }
  136. 100% {
  137. z-index: -1;
  138. opacity: 0;
  139. }
  140. }
  141.  
  142. @-o-keyframes fader {
  143. 0% {
  144. opacity:1;
  145. -o-transform: scaleX(1.00) scaleY(1.00) ;
  146. }
  147. 50% {
  148. opacity:0;
  149. -o-transform: scaleX(NaN) scaleY(NaN) ;
  150. }
  151. 100% {
  152. z-index: -1;
  153. opacity: 0;
  154. }
  155. }
  156.  
  157. @-ms-keyframes fader {
  158. 0% {
  159. opacity:1;
  160. -ms-transform: scaleX(1.00) scaleY(1.00) ;
  161. }
  162. 50% {
  163. opacity:0;
  164. -ms-transform: scaleX(NaN) scaleY(NaN) ;
  165. }
  166. 100% {
  167. z-index: -1;
  168. opacity: 0;
  169. }}
  170.  
  171.  
  172. ::-webkit-scrollbar-button:vertical:{
  173. background-color: #transparent;}
  174.  
  175. ::-webkit-scrollbar-thumb:vertical {
  176. background-color:#transparent;
  177. height:150px;}
  178.  
  179. ::-webkit-scrollbar-thumb:horizontal {
  180. background-color:#transparent;
  181. height:60px;}
  182.  
  183.  
  184. ::-webkit-scrollbar {
  185. height:60px;
  186. width:5px;
  187. background-color:#transparent;}
  188.  
  189. #image {
  190. width: 23vw;
  191. margin: 0px;
  192. border: none;
  193. height: 26vw;
  194. background-color:transparent;
  195. position: absolute;
  196. right: 12.5vw;
  197. bottom: 2vw;
  198. background-image:url("https://www.worldanvil.com/media/cache/cover/uploads/images/895c42ed17ffa98acfe14196e602fd21.jpg");
  199. background-repeat:no-repeat;
  200. background-position: bottom;
  201. background-size: 100%;
  202. border: 2px solid #000;
  203. }
  204.  
  205. #container {
  206. background-color:#454746;
  207. width: 59.5vw;
  208. height: 29.7vw;
  209. margin:auto;
  210. position: absolute;
  211. padding: 5px;
  212. right: 20vw;
  213. bottom: 10vw;
  214. z-index:0;
  215. border: #000000 solid 2px;
  216. -webkit-animation: slit-in-horizontal 0.45s ease-out 2s both;
  217. animation: slit-in-horizontal 0.45s ease-out 2s both;
  218. }
  219.  
  220. @-webkit-keyframes slit-in-horizontal {
  221. 0% {
  222. -webkit-transform: translateZ(-800px) rotateX(90deg);
  223. transform: translateZ(-800px) rotateX(90deg);
  224. opacity: 0;
  225. }
  226. 54% {
  227. -webkit-transform: translateZ(-160px) rotateX(87deg);
  228. transform: translateZ(-160px) rotateX(87deg);
  229. opacity: 1;
  230. }
  231. 100% {
  232. -webkit-transform: translateZ(0) rotateX(0);
  233. transform: translateZ(0) rotateX(0);
  234. }
  235. }
  236. @keyframes slit-in-horizontal {
  237. 0% {
  238. -webkit-transform: translateZ(-800px) rotateX(90deg);
  239. transform: translateZ(-800px) rotateX(90deg);
  240. opacity: 0;
  241. }
  242. 54% {
  243. -webkit-transform: translateZ(-160px) rotateX(87deg);
  244. transform: translateZ(-160px) rotateX(87deg);
  245. opacity: 1;
  246. }
  247. 100% {
  248. -webkit-transform: translateZ(0) rotateX(0);
  249. transform: translateZ(0) rotateX(0);
  250. }
  251. }
  252.  
  253. #content {
  254. background-color:#B4A681;
  255. width: 22vw;
  256. height: 26vw;
  257. margin:auto;
  258. position: absolute;
  259. padding: 5px;
  260. font-family: 'Lora', cursive;
  261. color: #000;
  262. left: 1vw;
  263. top: 3vw;
  264. z-index:0;
  265. border: #000000 solid 2px;
  266. }
  267.  
  268. #friendlist {
  269. background-color:#B4A681;
  270. width: 10vw;
  271. height: 26vw;
  272. margin:auto;
  273. position: absolute;
  274. padding: 5px;
  275. font-family: 'Lora', cursive;
  276. color: #000;
  277. right: 1vw;
  278. top: 3vw;
  279. z-index:0;
  280. border: #000000 solid 2px;
  281. }
  282.  
  283. #nav {
  284. background-color: transparent;
  285. width: 17vw;
  286. height: .5vw;
  287. margin:auto;
  288. position: absolute;
  289. left: 27.7vw;
  290. bottom: 1vw;
  291. text-align: center;
  292. text-decoration: none;
  293. z-index:0;
  294. }
  295.  
  296. #nav a, #nav a:link, #nav a:visited {
  297. display:inline-block;
  298. text-decoration: none;
  299. text-align: center;
  300. background: #000;
  301. color: transparent;
  302. box-shadow: 0px 0px 5px #470d0d;
  303. padding: 4px;
  304. height: .2vw;
  305. width: 1.7vw;
  306. border-radius: 5px;
  307. }
  308.  
  309. #nav a:active, #nav a:hover {
  310. display:inline-block;
  311. height: .2vw;
  312. width: 1.7vw;
  313. text-decoration:none;
  314. background: #470d0d;
  315. box-shadow: 0px 0px 5px #000;
  316. color: transparent;
  317. margin: 0px;
  318. }
  319.  
  320. #name {
  321. z-index:15;
  322. position: absolute;
  323. left: .5vw;
  324. top: -2vw;
  325. margin: auto;
  326. background: #transparent;
  327. width: 25vw;
  328. height: 6vw;
  329. font-family: 'Inria Serif', cursive;
  330. font-size: 65px;
  331. background: url(https://thumbs.gfycat.com/LazyInfiniteInganue-size_restricted.gif) 0px 0px repeat;
  332. -webkit-text-fill-color: transparent;
  333. -webkit-background-clip: text;
  334. background-position: bottom;
  335. display:block;
  336. text-align: center;
  337. letter-spacing: 1px;
  338. -webkit-transition:opacity 2s linear;
  339. line-height:3.6vw;
  340. }
  341.  
  342. #nameunder{
  343. z-index:15;
  344. position: absolute;
  345. left: .5vw;
  346. top: -2vw;
  347. margin: auto;
  348. background: #transparent;
  349. width: 25vw;
  350. height: 6vw;
  351. font-family: 'Inria Serif', cursive;
  352. font-size: 65px;
  353. -webkit-text-fill-color: #B4ADA3;
  354. text-transform: none;
  355. -webkit-background-clip: text;
  356. display:block;
  357. text-shadow: -1px 0 #fff, 0 1px #000,1px 0 #000, 0 -1px #fff;
  358. text-align: center;
  359. letter-spacing: 1px;
  360. -webkit-transition:opacity 2s linear;
  361. line-height:3.6vw;
  362. }
  363.  
  364.  
  365. i{color: #111;}
  366. b{color: #000;}
  367. a{color: #990000; text-decoration: none;}
  368. h1{color: #000; font-family: 'Righteous', cursive; border-bottom: 1px solid #000; text-align: right; font-size: 25px;}
  369. h2{color: #000; font-family: 'Righteous', cursive; border-bottom: 1px solid #000; text-align: left; font-size: 25px;}
  370. </style>
  371. <div class="fade"></div>
  372.  
  373. <div id="container">
  374.  
  375. <div id="nameunder">Dark Knight</div><div id="name">Dark Knight</div>
  376.  
  377. <div id="image"></div>
  378.  
  379. <div id="nav">
  380. <a href="#one">Main</a>
  381. <a href="#two">Seco</a>
  382. <a href="#three">Thir</a>
  383. <a href="#four">Four</a>
  384. </div>
  385.  
  386. <div id="content">
  387. <div style="width: 22vw; height: 26vw; overflow-y: hidden;">
  388.  
  389. <a name="one"></a>
  390. <div style="width: 22vw; height: 26vw; overflow: auto;" align="center">
  391. <span style="float:left;"><b>Name</b></span><span style="float:right;">Petrus "Temphrite" Hollowvale</span><br>
  392. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;">Queen Tenephy</span><br>
  393. <span style="float:left;"><b>Gender</b></span><span style="float:right;">Male</span><br>
  394. <span style="float:left;"><b>Age</b></span><span style="float:right;">HERE</span><br><br>
  395. <span style="float:left;"><b>Height</b></span><span style="float:right;">HERE</span><br>
  396. <span style="float:left;"><b>Weight</b></span><span style="float:right;">HERE</span><br>
  397. <span style="float:left;"><b>Orientation</b></span><span style="float:right;">HERE</span><br>
  398. <span style="float:left;"><b>Relationship</b></span><span style="float:right;">HERE</span><br><br>
  399. <span style="float:left;"><b>Race</b></span><span style="float:right;">HERE</span><br>
  400. <span style="float:left;"><b>Eyes</b></span><span style="float:right;">HERE</span><br>
  401. <span style="float:left;"><b>Hair</b></span><span style="float:right;">HERE</span><br>
  402. <span style="float:left;"><b>Build</b></span><span style="float:right;">HERE</span><br><br>
  403. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;">HERE</span><br>
  404. </div>
  405.  
  406. <a name="two"></a>
  407. <div style="width: 22vw; height: 26vw; overflow: auto;" align="center">
  408. <h1>Abilities</h1>
  409. LIST HERE
  410. </div>
  411.  
  412. <a name="three"></a>
  413. <div style="width: 22vw; height: 26vw; overflow: auto;" align="center">
  414. <h2>History</h2>
  415. HERE
  416. </div>
  417.  
  418. <a name="four"></a>
  419. <div style="width: 22vw; height: 26vw; overflow: auto;" align="center">
  420. <h1>Out Of Character</h1>
  421. <b>00</b>. Code made by <a href="https://alliealgiere.neocities.org/" target="_blank">RageQxeen</a> for Tephrite! Click the name for codes and commissions!<br><br>
  422. <b>01</b>. OOC.<br>
  423. <b>02</b>. OOC.<br>
  424. <b>03</b>. OOC.<br>
  425. <b>04</b>. OOC.<br>
  426. <b>05</b>. OOC.<br>
  427. </div>
  428. </div>
  429. </div>
  430.  
  431.  
  432. <div id="friendlist">
  433. <div style="width: 10vw; height: 26vw; overflow: auto;" align="right">
  434. <marquee behavior="scroll" direction="up" onmouseover="this.stop();" onmouseout="this.start();">
  435. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  436. <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
  437. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  438. <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
  439. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  440. <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
  441. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  442. <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
  443. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  444. <b>- Name -</b><br> <i>foe/friend</i><br> small note.
  445. </marquee>
  446. </div>
  447. </div>
  448. </div>
  449. </body>
  450. </html>
Advertisement
Add Comment
Please, Sign In to add comment