Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- base theme by -shrooms
- "cloudless days" theme by lilette
- please don't remove the credit c:
- -->
- <head>
- <script language=”javaScript” type=”text/javascript” src=”http://www.onlineleaf.com/savetheenvironment.js”></script>
- <style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur830.cur), progress !important;}</style><a href="http://www.cursors-4u.com/cursor/2011/11/10/small-cute-blue-gray-pointer.html" target="_blank" title="Small Cute Blue Gray Pointer"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Small Cute Blue Gray Pointer" style="position:absolute; top: 0px; right: 0px;" /></a>
- <script type="text/javascript">
- // <![CDATA[
- var colour="#a9cee0"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
- var sparkles=50;
- /****************************
- * Tinkerbell Magic Sparkle *
- *(c)2005-11 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var x=ox=400;
- var y=oy=300;
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var tiny=new Array();
- var star=new Array();
- var starv=new Array();
- var starx=new Array();
- var stary=new Array();
- var tinyx=new Array();
- var tinyy=new Array();
- var tinyv=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, rats, rlef, rdow;
- for (var i=0; i<sparkles; i++) {
- var rats=createDiv(3, 3);
- rats.style.visibility="hidden";
- document.body.appendChild(tiny[i]=rats);
- starv[i]=0;
- tinyv[i]=0;
- var rats=createDiv(5, 5);
- rats.style.backgroundColor="transparent";
- rats.style.visibility="hidden";
- var rlef=createDiv(1, 5);
- var rdow=createDiv(5, 1);
- rats.appendChild(rlef);
- rats.appendChild(rdow);
- rlef.style.top="2px";
- rlef.style.left="0px";
- rdow.style.top="0px";
- rdow.style.left="2px";
- document.body.appendChild(star[i]=rats);
- }
- set_width();
- sparkle();
- }}
- function sparkle() {
- var c;
- if (x!=ox || y!=oy) {
- ox=x;
- oy=y;
- for (c=0; c<sparkles; c++) if (!starv[c]) {
- star[c].style.left=(starx[c]=x)+"px";
- star[c].style.top=(stary[c]=y)+"px";
- star[c].style.clip="rect(0px, 5px, 5px, 0px)";
- star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
- star[c].style.visibility="visible";
- starv[c]=50;
- break;
- }
- }
- for (c=0; c<sparkles; c++) {
- if (starv[c]) update_star(c);
- if (tinyv[c]) update_tiny(c);
- }
- setTimeout("sparkle()", 40);
- }
- function update_star(i) {
- if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
- if (starv[i]) {
- stary[i]+=1+Math.random()*3;
- if (stary[i]<shigh+sdown && starx[i]>0) {
- star[i].style.top=stary[i]+"px";
- starx[i]+=(i%5-2)/5;
- star[i].style.left=starx[i]+"px";
- }
- else {
- star[i].style.visibility="hidden";
- starv[i]=0;
- return;
- }
- }
- else {
- tinyv[i]=50;
- tiny[i].style.top=(tinyy[i]=stary[i])+"px";
- tiny[i].style.left=(tinyx[i]=starx[i])+"px";
- tiny[i].style.width="2px";
- tiny[i].style.height="2px";
- tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
- star[i].style.visibility="hidden";
- tiny[i].style.visibility="visible"
- }
- }
- function update_tiny(i) {
- if (--tinyv[i]==25) {
- tiny[i].style.width="1px";
- tiny[i].style.height="1px";
- }
- if (tinyv[i]) {
- tinyy[i]+=1+Math.random()*3;
- if (tinyy[i]<shigh+sdown && tinyx[i]>0) {
- tiny[i].style.top=tinyy[i]+"px";
- tinyx[i]+=(i%5-2)/5;
- tiny[i].style.left=tinyx[i]+"px";
- }
- else {
- tiny[i].style.visibility="hidden";
- tinyv[i]=0;
- return;
- }
- }
- else tiny[i].style.visibility="hidden";
- }
- document.onmousemove=mouse;
- function mouse(e) {
- set_scroll();
- y=(e)?e.pageY:event.y+sdown;
- x=(e)?e.pageX:event.x+sleft;
- }
- function set_scroll() {
- if (typeof(self.pageYOffset)=="number") {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body.scrollTop || document.body.scrollLeft) {
- sdown=document.body.scrollTop;
- sleft=document.body.scrollLeft;
- }
- else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
- sleft=document.documentElement.scrollLeft;
- sdown=document.documentElement.scrollTop;
- }
- else {
- sdown=0;
- sleft=0;
- }
- }
- window.onresize=set_width;
- function set_width() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- sw_min=document.documentElement.clientWidth;
- sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
- if (self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height+"px";
- div.style.width=width+"px";
- div.style.overflow="hidden";
- return (div);
- }
- function newColour() {
- var c=new Array();
- c[0]=255;
- c[1]=Math.floor(Math.random()*256);
- c[2]=Math.floor(Math.random()*(256-c[1]/2));
- c.sort(function(){return (0.5 - Math.random());});
- return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
- }
- // ]]>
- </script>
- <SCRIPT language=JavaScript>
- <!-- http://www.spacegun.co.uk -->
- var message = "Right click disabled";
- function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; }
- if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } }
- document.onmousedown = rtclickcheck;
- </SCRIPT>
- <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
- <title>{Title}</title>
- <meta name="color:Background" content="h"/>
- <meta name="color:Link" content="#000"/>
- <meta name="color:Text" content="#000"/>
- <meta name="color:Title" content="#000"/>
- <meta name="color:Hover" content="#D8D8D8"/>
- <meta name="color:Scrollbar" content="#aaaaaa"/>
- <meta name="color:Content Border" content="#000000"/>
- <meta name="image:Background" content=""/>
- <meta name="image:Sidebar" content=""/>
- <meta name="color:Content" content="#ffffff"/>
- <meta name="if:show sidebar image" content="0"/>
- <meta name="if:infinite scrolling" content="0"/>
- <meta name="if:show title" content="0"/>
- <meta name="if:tiny cursor" content="1"/>
- {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
- <style type="text/css">
- div.button a{
- display: inline-block;
- color: #ffffff;
- background-color:#e1f1fc;
- height:15px;
- width: 170px;
- padding-left:5px;
- padding-top:2px;
- border-right: 8px solid #95d5f5;
- }
- div.button a:hover{
- width: 140px;
- text-align:right;
- border-right: 80px solid #95d5f5;
- padding-right:5px;
- color: #ffffff;;
- background-color:#95d5f5;;
- -webkit-transition: 0.5s}
- {block:iftinycursor}body, a, a:hover {cursor: url(http://cur.cursfors-4u.net/others/oth-6/oth589.cur), progress;}{/block:iftinycursor}
- ::-webkit-scrollbar {width: 6px; height: 4px; background: {color:content}; }
- ::-webkit-scrollbar-thumb { background-color: {color:scrollbar};}
- {block:ifFadedImages}img{-webkit-transition: opacity 0.8s linear; opacity: 0.75;}img:hover{-webkit-transition: opacity 0.8s linear; opacity: 1;} {/block:ifFadedImages}
- {block:ifInvertedFade}img{-webkit-transition: opacity 0.7s linear; opacity: 50;}img:hover{-webkit-transition: opacity 0.2s linear; opacity: .60;} {/block:ifInvertedFade}
- body {margin:0px;background-color: {color:Background};background-image:url(http://24.media.tumblr.com/tumblr_lidd0rZzwe1qcdtsho1_400.gif);background-attachment: fixed;background-repeat: repeat;}body, div, p, textarea, submit, input{font-family: helvetica; pixel;font-size: 13px;line-height:10px;letter-spacing:0px;
- color:{color:Text};}
- p {margin:0px;margin-top:0px;}
- a:link, a:active, a:visited{color: {color:Link};text-decoration: none;-webkit-transition: color 0.5s ease-out; -moz-transition: color 0.5s ease-out; }
- a:hover {color:{color:Hover};text-decoration: underline;font-style: normal;letter-spacing: 0px;
- -webkit-transition: color 0.5s ease-out; -moz-transition: color 0.5s ease-out; }
- div#birds{ background: {color:content};margin: auto; position:relative; width: 730px; overflow:auto;
- overflow-y:hidden;border: 5px solid {color:content};margin-top: 35px;height:600px; -moz-border-radius: 25px 25px;border-radius: 25px 25px / 25px 25px;border: 1.2px solid {color:Content Border};
- padding: 10px;}
- div#cauliflower{ float:center; position:relative; background-color: white;width:500px; height:600px;
- padding-left:6px;overflow:scroll; overflow-x:hidden;float: right;}
- div#creeps{overflow:hidden; float:left; width:500px;margin-left:0px; margin-bottom:4px; padding-bottom: 2px;padding:0px;background-color: white;}
- #creeps .perma a{color:{Color:Links};}
- #creeps .perma{width:500px; position: absolute; font-family: "littlefont"; font-size: 8px; line-height: 12px; text-align: center;overflow:hidden; opacity: 0.0; background-color:#fff;text-decoration: bold;}
- #creeps:hover .perma{overflow:visible;-webkit-transition: opacity 0.2s linear; opacity: 0.8; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
- div#blood{ position:fixed !important; width: 225px; height:600px; padding-left: 1px; padding-top: 1px;padding-bottom: 1px;font-size: 10px; line-height:15px; letter-spacing:0px;text-align: center; margin-bottom: 5px; background-color: {color:content}; float: left;}
- div#fly{ position: fixed;text-align:center;margin-top:616px;z-index:100;line-height: 8px;padding: 1px; background-color: transparent;width: 428px;height:auto;font-family: "littlefont"; font-size: 8px;margin-left:170px;}
- #postnotes{ text-align: justify;}
- #postnotes blockquote{ border: 0px;}
- .title{font-family: cambria; font-size: 13px; line-height: 13px; color: {color:Title}; font-weight: normal;}
- blockquote{ padding:0px 0px 2px 2px; margin:0px 0px 2px 10px; border-left: 1px solid black;}
- .blogtitle{font-family: "amatic sc"; font-size: 30px; line-height: 19px; text-shadow: 2px 2px 2px {color:shadow};color: {color:Title}; font-weight: normal;}
- .video embed, .post div.video object {width:500px !important; height:390px !important;}
- @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
- a img{border: 0px;}
- .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
- .user_7 .label, .user_8 .label, .user_9 .label {
- color:#000;}
- .notes img{width:10px; position:relative; top:3px;}
- </style>
- <title>{Title}</title>
- <link rel="shortcut icon" href="http://media.tumblr.com/tumblr_lkl6qeyBZ51qfamg6.png">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- <style>#toTop {display:none;text-decoration:none;position:fixed;bottom:20px;right:20px;overflow:hidden;width:30px;height:40px;border:none;text-indent:-999px;background:url("http://24.media.tumblr.com/tumblr_ly7ajz1ias1r7etd4o1_250.png") no-repeat left top;z-index:3000;}#toTopHover {background:url(http://static.tumblr.com/hi8vwsz/Q0ull6xz3/totop.png) no-repeat left -40px;
- width:30px;height:40px;display:block;overflow:hidden;float:left;opacity: 0;-moz-opacity: 0;filter:alpha(opacity=0);}
- #toTop:active, #toTop:focus {outline:none;}#toTop:active, #toTop:focus {outline:none;}</style>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $().UItoTop({ easingType: 'easeOutQuart' });
- });
- </script>
- </head>
- <body>
- <!--sidebar starts here-->
- <div id="birds"><div id="trench"><div id="blood">
- <br>
- <center><img src="http://24.media.tumblr.com/tumblr_ly7ajz1ias1r7etd4o1_250.png" style="-webkit-transition: opacity 2s linear; opacity: 2; margin-top: -20px; z-index: 999px;"><center
- </center></td></tr>
- <br>
- {Description}
- <br><img src="http://27.media.tumblr.com/tumblr_ly7ev0T9lq1r7etd4o2_250.png"></br>
- <br><div class="button">
- <a href="/">Home</a>
- <a href="/ask">Ask</a>
- <a href="/archive">Archive</a>
- </div>
- <br></br>
- <br><img src="http://26.media.tumblr.com/tumblr_ly7f30PwaN1r7etd4o1_250.png"></br>
- <!-- HTML Codes by Quackit.com -->
- <div style="height:120px;width:230px;font:10px/26px Georgia, Garamond, Serif;overflow:scroll;">
- You can place your status here.(this scrollbox has an invinsible scrollbar). The more the text, the better.To edit this, go to the html code, then ctrl+f. type "invinsible". Now, you can edit it! :D enjoy~
- </div>
- <p style="font-size:10px;"></p>
- <br></br>
- <center><img src="http://img.photobucket.com/albums/v252/shaquanda/dumpitydump/anotherdumpingfolder/line25.gif"></center>
- <center>Theme Credits:</center>
- <a href="http://lilettethemes.tumblr.com">Cloudless day theme by <a href="http://lilette.tumblr.com">Lilette</a>
- <!--sidebar ends here-->
- </div></br>
- <br><br>{block:ifnotinfinitescrolling}
- {block:PreviousPage}<a href="{PreviousPage}">←</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}">→</a>{/block:NextPage}
- {/block:ifnotinfinitescrolling}
- </div>
- <div id="cauliflower">
- {block:Posts}
- <div id="creeps">
- {block:IndexPage}
- <div class="perma">
- <a href="{permalink}">{NoteCountWithLabel}</a> · <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
- {/block:IndexPage}
- {block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <span class="entrytext">{Body}</span><div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>{/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}<div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {block:Link}
- {block:Photo}<center>
- {LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" style="width:500px"/></a>{LinkCloseTag}</center>
- {/block:Photo}
- {block:Quote}
- {Quote}</span>
- {block:Source}<strong>{Source}</strong>{/block:Source}<div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {/block:Quote}
- {block:Photoset}<center>{Photoset-500}</center>
- <span class="permalink"><a href="{permalink}"> </a></span>
- {/block:Photoset}
- {block:Chat}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}<div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {/block:Chat}
- {block:Audio}
- <center><div style="width:495px; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
- {FormattedPlayCount} plays {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br><div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {/block:Audio}
- {block:Video}<center>
- <div class="video">{Video-500}</div></center><div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {block:Video}
- {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} - {block:Tags}<a href="{TagURL}"> #{Tag}</a> {/block:Tags}{/block:hasTags}{/block:PermalinkPage}
- {block:PostNotes}{PostNotes}
- {/block:PostNotes}
- </div>
- {/block:Posts}
- </div></div>
- </div>
- </div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment