Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <body>
- <script defer>
- window.onload = function() {
- var isCtrl = false;
- document.onkeyup=function(e)
- {
- if(e.which == 17)
- isCtrl=false;
- }
- document.onkeydown=function(e)
- {
- if(e.which == 17)
- isCtrl=true;
- if((e.which == 85) || (e.which == 67) && (isCtrl == true))
- {
- return false;
- }
- }
- var isNS = (navigator.appName == "Netscape") ? 1 : 0;
- if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
- function mischandler(){
- return false;
- }
- function mousehandler(e){
- var myevent = (isNS) ? e : event;
- var eventbutton = (isNS) ? myevent.which : myevent.button;
- if((eventbutton==2)||(eventbutton==3)) return false;
- }
- document.oncontextmenu = mischandler;
- document.onmousedown = mousehandler;
- document.onmouseup = mousehandler;
- if (document.addEventListener) { // IE >= 9; other browsers
- document.addEventListener('contextmenu', function(e) {
- alert(" Try asking RageQxeen for her codes instead."); //here you draw your own menu
- e.preventDefault();
- }, false);
- } else { // IE < 9
- document.attachEvent('oncontextmenu', function() {
- alert("O sun, abide to death.");
- window.event.returnValue = false;
- });
- }
- };
- </script>
- <style type="text/css">
- @import url(https://fonts.googleapis.com/css?family=Girassol|Lato);
- html, body {
- background: rgb(229,229,229);
- background: -moz-linear-gradient(242deg, rgba(229,229,229,1) 0%, rgba(201,201,201,1) 25%, rgba(145,163,176,1) 50%, rgba(145,163,176,1) 75%, rgba(138,127,141,1) 100%);
- background: -webkit-linear-gradient(242deg, rgba(229,229,229,1) 0%, rgba(201,201,201,1) 25%, rgba(145,163,176,1) 50%, rgba(145,163,176,1) 75%, rgba(138,127,141,1) 100%);
- background: linear-gradient(242deg, rgba(229,229,229,1) 0%, rgba(201,201,201,1) 25%, rgba(145,163,176,1) 50%, rgba(145,163,176,1) 75%, rgba(138,127,141,1) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e5e5e5",endColorstr="#8a7f8d",GradientType=1);
- }
- ::-webkit-scrollbar-button:vertical:{
- background-color: #transparent;}
- ::-webkit-scrollbar-thumb:vertical {
- background-color:#transparent;
- height:150px;}
- ::-webkit-scrollbar-thumb:horizontal {
- background-color:#transparent;
- height:60px;}
- ::-webkit-scrollbar {
- height:60px;
- width:5px;
- background-color:#transparent;}
- #image {
- width: 31vw;
- margin: 0px;
- border: none;
- height: 45vw;
- background-color:transparent;
- position: absolute;
- right: 0vw;
- bottom: 0vw;
- background-image:url("http://i.picpar.com/zs1d.png");
- background-repeat:no-repeat;
- background-position: bottom;
- background-size: 100%;
- animation: bounce 3s infinite; -webkit-animation: bounce 3s infinite; -o-animation: bounce 3s infinite;
- }
- #topimg {
- width: 59.5vw;
- margin: 0px;
- border: none;
- height: 10vw;
- background-color:transparent;
- position: absolute;
- right: 0vw;
- top: 0vw;
- padding: 4px;
- background-image:url("http://i.picpar.com/CDVd.jpg");
- background-repeat:no-repeat;
- background-position: center;
- background-size: 100%;
- border: 2px solid #000;
- }
- #container {
- background: rgb(1,13,85);
- background: -moz-linear-gradient(179deg, rgba(1,13,85,1) 0%, rgba(161,175,224,1) 69%, rgba(211,220,237,1) 93%, rgba(73,149,243,1) 100%);
- background: -webkit-linear-gradient(179deg, rgba(1,13,85,1) 0%, rgba(161,175,224,1) 69%, rgba(211,220,237,1) 93%, rgba(73,149,243,1) 100%);
- background: linear-gradient(179deg, rgba(1,13,85,1) 0%, rgba(161,175,224,1) 69%, rgba(211,220,237,1) 93%, rgba(73,149,243,1) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#010d55",endColorstr="#4995f3",GradientType=1);
- width: 59.5vw;
- height: 34vw;
- margin:auto;
- position: absolute;
- padding: 5px;
- left: 10vw;
- bottom: 5vw;
- z-index:0;
- border: #000000 solid 2px;
- -webkit-animation: slide-in-blurred-left 0.9s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
- animation: slide-in-blurred-left 0.9s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
- }
- @-webkit-keyframes slide-in-blurred-left {
- 0% {
- -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
- transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
- -webkit-transform-origin: 100% 50%;
- transform-origin: 100% 50%;
- -webkit-filter: blur(40px);
- filter: blur(40px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateX(0) scaleY(1) scaleX(1);
- transform: translateX(0) scaleY(1) scaleX(1);
- -webkit-transform-origin: 50% 50%;
- transform-origin: 50% 50%;
- -webkit-filter: blur(0);
- filter: blur(0);
- opacity: 1;
- }
- }
- @keyframes slide-in-blurred-left {
- 0% {
- -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
- transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
- -webkit-transform-origin: 100% 50%;
- transform-origin: 100% 50%;
- -webkit-filter: blur(40px);
- filter: blur(40px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateX(0) scaleY(1) scaleX(1);
- transform: translateX(0) scaleY(1) scaleX(1);
- -webkit-transform-origin: 50% 50%;
- transform-origin: 50% 50%;
- -webkit-filter: blur(0);
- filter: blur(0);
- opacity: 1;
- }
- }
- #content {
- background-color:#e5e5e5;
- width: 45vw;
- height: 22vw;
- margin:auto;
- position: absolute;
- padding: 5px;
- font-family: 'Lato', cursive;
- color: #000;
- right: 1vw;
- bottom: 0.5vw;
- z-index:0;
- border: #000000 solid 2px;
- }
- #friendlist {
- background-color:#e5e5e5;
- width: 10vw;
- height: 22vw;
- margin:auto;
- position: absolute;
- padding: 5px;
- font-family: 'Lato', cursive;
- color: #000;
- left: 1vw;
- bottom: 0.5vw;
- z-index:0;
- border: #000000 solid 2px;
- }
- #nav {
- background-color: transparent;
- width: 0.5vw;
- height: 17vw;
- margin:auto;
- position: absolute;
- left: 12vw;
- bottom: 1vw;
- text-align: center;
- text-decoration: none;
- z-index:3;
- }
- #nav a, #nav a:link, #nav a:visited {
- display:inline-block;
- text-decoration: none;
- text-align: center;
- background: #010d55;
- color: transparent;
- box-shadow: 0px 0px 5px #91a3b0;
- padding: 4px;
- height: 1.7vw;
- width: 0.1vw;
- margin: 5px;
- border-radius: 5px;
- }
- #nav a:active, #nav a:hover {
- display:inline-block;
- height: 1.7vw;
- width: 0.1vw;
- text-decoration:none;
- background: #91a3b0;
- box-shadow: 0px 0px 5px #010d55;
- color: transparent;
- margin: 5px;
- }
- #name {
- z-index:15;
- position: absolute;
- right: .5vw;
- top: -2vw;
- margin: auto;
- background: #transparent;
- width: 35vw;
- height: 6vw;
- font-family: 'Girassol', cursive;
- font-size: 70px;
- background: url(https://media1.giphy.com/media/UdTLLJIrxZcY0/source.gif) 0px 0px repeat;
- -webkit-text-fill-color: transparent;
- -webkit-background-clip: text;
- background-position: top;
- display:block;
- text-align: center;
- letter-spacing: 1px;
- -webkit-transition:opacity 2s linear;
- line-height:3.6vw;
- }
- #nameunder{
- z-index:15;
- position: absolute;
- right: .5vw;
- top: -2vw;
- margin: auto;
- background: #transparent;
- width: 35vw;
- height: 6vw;
- font-family: 'Girassol', cursive;
- font-size: 70px;
- -webkit-text-fill-color: #B4ADA3;
- text-transform: none;
- -webkit-background-clip: text;
- display:block;
- text-shadow: -1px 0 #fff, 0 1px #000,1px 0 #000, 0 -1px #fff;
- text-align: center;
- letter-spacing: 1px;
- -webkit-transition:opacity 2s linear;
- line-height:3.6vw;
- }
- i{color: #4995f3;}
- b{color: #010d55;}
- a{color: #2b3779; text-decoration: none;}
- h1{border-bottom: 1px solid #000; text-align: center; font-size: 30px; font-family: 'Girassol', cursive; color: #010d55;}
- h2{border-bottom: 1px solid #000; text-align: left; font-size: 30px; font-family: 'Girassol', cursive; color: #010d55;}
- h3{border-bottom: 1px solid #000; text-align: right; font-size: 30px; font-family: 'Girassol', cursive; color: #010d55;}
- </style>
- <div id="image"></div>
- <div id="container">
- <div id="topimg"></div>
- <div id="nameunder">Crowned Emperor</div><div id="name">Crowned Emperor</div>
- <div id="nav">
- <a href="#one">Main</a>
- <a href="#two">Seco</a>
- <a href="#three">Thir</a>
- <a href="#four">Four</a>
- </div>
- <div id="content">
- <div style="width: 45vw; height: 22vw; overflow-y: hidden;">
- <a name="one"></a>
- <div style="width: 45vw; height: 22vw; overflow: auto;" align="center">
- <span style="float:left;"><b>Name</b></span><span style="float:right;">Tsuki O-kami</span><br>
- <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;">Moon, Foxxo</span><br>
- <span style="float:left;"><b>Gender</b></span><span style="float:right;">Male</span><br>
- <span style="float:left;"><b>Birthdate</b></span><span style="float:right;">May 1st, 1119</span><br>
- <span style="float:left;"><b>Birthplace</b></span><span style="float:right;">Major Aracane, FX</span><br><br>
- <span style="float:left;"><b>Height</b></span><span style="float:right;">6'1"</span><br>
- <span style="float:left;"><b>Weight</b></span><span style="float:right;">175 lbs</span><br>
- <span style="float:left;"><b>Orientation</b></span><span style="float:right;">Heteroflexible</span><br>
- <span style="float:left;"><b>Relationship</b></span><span style="float:right;">Disinterested</span><br><br>
- <span style="float:left;"><b>Race</b></span><span style="float:right;">Kitsune</span><br>
- <span style="float:left;"><b>Eyes</b></span><span style="float:right;">Gold</span><br>
- <span style="float:left;"><b>Hair</b></span><span style="float:right;">Silver-White</span><br>
- <span style="float:left;"><b>Build</b></span><span style="float:right;">Muscular-Lean</span><br><br>
- <span style="float:left;"><b>Residence</b></span><span style="float:right;">Palace of Mirrors</span><br>
- <span style="float:left;"><b>Occupation</b></span><span style="float:right;">Crowned Emperor</span><br>
- <i>Italics</i> <b>Bold</b> <a href="">Link</a>
- </div>
- <a name="two"></a>
- <div style="width: 45vw; height: 22vw; overflow: auto;" align="center">
- <h3>Abilities</h3>
- </div>
- <a name="three"></a>
- <div style="width: 45vw; height: 22vw; overflow: auto;" align="center">
- <h2>History</h2>
- </div>
- <a name="four"></a>
- <div style="width: 45vw; height: 22vw; overflow: auto;" align="center">
- <h3>Out Of Character</h3>
- <b>00</b>. Code made by <a href="https://alliealgiere.neocities.org/" target="_blank">RageQxeen</a> for Emperor! Click the name for codes and commissions!<br><br>
- <b>01</b>. OOC.<br>
- <b>02</b>. OOC.<br>
- <b>03</b>. OOC.<br>
- <b>04</b>. OOC.<br>
- <b>05</b>. OOC.<br>
- </div>
- </div>
- </div>
- <div id="friendlist">
- <div style="width: 10vw; height: 22vw; overflow: auto;" align="right">
- <marquee behavior="scroll" direction="up" onmouseover="this.stop();" onmouseout="this.start();">
- <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
- <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
- <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
- <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
- <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
- <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
- <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
- <b>- Name -</b><br> <i>foe/friend</i><br> small note.<br><br><br><br>
- <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
- <b>- Name -</b><br> <i>foe/friend</i><br> small note.
- </marquee>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment