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=Cinzel|Cinzel+Decorative|Aref+Ruqaa);
- html, body {
- background-color: #668a6d;
- background-image: url("https://www.transparenttextures.com/patterns/pixel-weave.png");
- background-size: 100px;
- background-repeat: repeat;
- background-position:center bottom;
- }
- ::-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: 35vw;
- margin: 0px;
- border: none;
- height: 40vw;
- background-color:transparent;
- position: absolute;
- right: 0vw;
- bottom: 0vw;
- background-image:url("http://i.picpar.com/kFle.png");
- background-repeat:no-repeat;
- background-position: bottom;
- background-size: 100%;
- -webkit-animation: slide-in-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
- animation: slide-in-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
- }
- #stats {
- background-color:#c0c0c0;
- width: 40vw;
- height: 12vw;
- margin:auto;
- position: absolute;
- padding: 5px;
- font-family: 'Aref Ruqaa', cursive;
- font-size: 15px;
- color: #000;
- left: 10vw;
- bottom: 26vw;
- z-index:1;
- border: #000000 solid 2px;
- }
- #power {
- background-color:#c0c0c0;
- width: 19vw;
- height: 23vw;
- margin:auto;
- position: absolute;
- padding: 5px;
- font-family: 'Aref Ruqaa', cursive;
- font-size: 15px;
- color: #000;
- left: 31vw;
- bottom: 1vw;
- z-index:1;
- border: #000000 solid 2px;
- }
- #friends {
- background-color:#c0c0c0;
- width: 20vw;
- height: 10vw;
- margin:auto;
- position: absolute;
- padding: 5px;
- font-family: 'Aref Ruqaa', cursive;
- font-size: 15px;
- color: #000;
- left: 10vw;
- bottom: 14vw;
- z-index:1;
- border: #000000 solid 2px;
- }
- #ooc {
- background-color:#c0c0c0;
- width: 20vw;
- height: 11.5vw;
- margin:auto;
- position: absolute;
- padding: 5px;
- font-family: 'Aref Ruqaa', cursive;
- font-size: 15px;
- color: #000;
- left: 10vw;
- bottom: 1vw;
- z-index:1;
- border: #000000 solid 2px;
- }
- .name {position: absolute;
- font-family: 'Cinzel Decorative';
- color: #fff;
- font-size: 6vw;
- bottom: 0vw;
- right: 0vw;
- width: 30vw;
- height: 9vw;
- border: 0px solid #000;
- text-align: justify;
- text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
- overflow: auto;
- padding:5px 5px 5px 5px;
- z-index: 2;}
- .title { background: transparent;
- background:url('https://i.pinimg.com/originals/74/35/62/743562f03c1b6a8a86c740cd9e4367fd.gif') 50px 50px repeat;
- background-position: center;
- position: absolute;
- font-family: 'Cinzel Decorative';
- font-size: 6vw;
- bottom: 0vw;
- right: 0vw;
- width: 30vw;
- height: 9vw;
- text-align: justify;
- padding:5px 5px 5px 5px;
- -webkit-text-fill-color: transparent;
- -webkit-background-clip: text;
- z-index: 3;}
- @-webkit-keyframes slide-in-left {
- 0% {
- -webkit-transform: translateX(-1000px);
- transform: translateX(-1000px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- opacity: 1;
- }
- }
- @keyframes slide-in-left {
- 0% {
- -webkit-transform: translateX(-1000px);
- transform: translateX(-1000px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- opacity: 1;
- }
- }
- i{color: #443a59;}
- b{color: #000;}
- a{color: #444; text-decoration: none;}
- h1{border-bottom: 1px solid #000; text-align: center; font-size: 30px; font-family: 'Cinzel', cursive; color: #000;}
- h2{border-bottom: 1px solid #000; text-align: left; font-size: 30px; font-family: 'Cinzel', cursive; color: #000;}
- h3{border-bottom: 1px solid #000; text-align: right; font-size: 30px; font-family: 'Cinzel', cursive; color: #000;}
- </style>
- <div class="name">Kirigaya</div>
- <div class="title">Kirigaya</div>
- <div id="image"></div>
- <div id="stats">
- <div style="width: 40vw; height: 12vw; overflow-y: hidden;">
- <a name="one"></a>
- <div style="width: 40vw; height: 12vw; overflow: auto;" align="center">
- <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Gender</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Race</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Occupation</b></span><span style="float:right;"></span><br><br>
- <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Blood Type</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Eyes</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br><br>
- <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
- <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br><br>
- <span style="float:left;"><b>Fighting Style</b></span><span style="float:right;"></span><br><br>
- <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"></span>
- </div>
- </div>
- </div>
- <div id="power">
- <div style="width: 19vw; height: 23vw; overflow-y: hidden;">
- <a name="one"></a>
- <div style="width: 19vw; height: 23vw; overflow: auto;" align="left">
- <h1>Power</h1>
- </div>
- </div>
- </div>
- <div id="friends">
- <div style="width: 20vw; height: 10vw; overflow-y: hidden;">
- <a name="one"></a>
- <div style="width: 20vw; height: 10vw; overflow: auto;" align="center">
- <h1>Friends</h1>
- <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>
- </div>
- </div>
- </div>
- <div id="ooc">
- <div style="width: 20vw; height: 11.5vw; overflow-y: hidden;">
- <a name="one"></a>
- <div style="width: 20vw; height: 11.5vw; overflow: auto;" align="left">
- <h1>OOC</h1>
- <center><b>00</b>. Code made by <a href="/profile.php?user=RageQxeen" target="_blank">RageQxeen</a>, do not steal.<br><br></center>
- <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>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment