Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- theme by s0pas
- dont remove the credit because ill find out and i will report you and cut you (don't steal create you own themes bye)
- -->
- <script type="text/javascript">
- <!--
- // Disable Right Click Script
- function IE(e)
- {
- if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
- {
- return false;
- }
- }
- function NS(e)
- {
- if (document.layers || (document.getElementById && !document.all))
- {
- if (e.which == "2" || e.which == "3")
- {
- return false;
- }
- }
- }
- document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
- //-->
- </script>
- <head>
- <script type="text/javascript">
- // <![CDATA[
- var colour="{color:sparkle}"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
- var sparkles=50;
- /****************************
- * Tinkerbell Magic Sparkle *
- *(c)2005-12 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;
- starx[i]+=(i%5-2)/5;
- if (stary[i]<shigh+sdown) {
- star[i].style.top=stary[i]+"px";
- 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;
- tinyx[i]+=(i%5-2)/5;
- if (tinyy[i]<shigh+sdown) {
- tiny[i].style.top=tinyy[i]+"px";
- 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) {
- if (e) {
- y=e.pageY;
- x=e.pageX;
- }
- else {
- set_scroll();
- y=event.y+sdown;
- x=event.x+sleft;
- }
- }
- window.onscroll=set_scroll;
- function set_scroll() {
- if (typeof(self.pageYOffset)=='number') {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body && (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) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)=='number' && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && 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 type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- <!-- DEFAULT VARIABLES -->
- <meta name="color:background" content="#FFFFFF"/>
- <meta name="color:title" content="#000000"/>
- <meta name="color:text" content="#000000"/>
- <meta name="color:link" content="#8294c5"/>
- <meta name="color:letter" content="#8294c5"/>
- <meta name="color:Hover" content="#000000"/>
- <meta name="image:Sidebar" content=""/>
- <meta name="image:Background" content=""/>
- <meta name="if:solid border" content="1"/>
- <meta name="color:sparkle" content="#8294c5"/>
- <meta name="if:dotted border" content="1"/>
- <meta name="if:tiny scrollbar" content="1"/>
- <meta name="if:dixel font" content="1"/>
- <meta name="if:pixel font" content="1"/>
- <meta name="if:show blog title" content="1"/>
- <meta name="if:handy00 font" content="1"/>
- <meta name="text:title" content="Die in your arms" />
- <meta name="text:Link One Title" content="link 1" />
- <meta name="text:Link One" content="" />
- <meta name="text:Link Two Title" content="link 2"/>
- <meta name="text:Link Two" content="" />
- <meta name="text:Link Three Title" content="link 3"/>
- <meta name="text:Link Three" content="" />
- <style type="text/css">
- body, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress !important;}
- {block:iftinyscrollbar}
- ::-webkit-scrollbar {width: 4px; height: 4px; background: #FFFFFF; }
- ::-webkit-scrollbar-thumb { background-color: {color:sparkle}; border: 1px solid #aaaaaa;}
- {/block:iftinyscrollbar}
- @font-face {font-family: "handy00";src: url('http://static.tumblr.com/8ls1oxv/AfJlyd5ev/handy00.ttf');}
- body {
- margin:0px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- {block:ifhandy00font}
- font-family: handy00;
- {/block:ifhandy00font}
- {block:ifdixelfont}
- font-family: dixel;
- {/block:ifdixelfont}
- {block:ifpixelfont}
- font-family: pixel;
- {/block:ifpixelfont}
- font-size: 8px;
- line-height:10px;
- color:{color:Text};
- }
- @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
- p {
- margin:0px;
- margin-top:1px;
- }
- a:link, a:active, a:visited{
- color: {color:Link};
- text-decoration: none;
- }
- a:hover {
- color:{color:hover};
- text-decoration: none;
- font-style: underline;
- }
- div#cage{
- margin-top: 0px;
- margin-bottom: 2px;
- position: relative;
- width: 650px;
- overflow: hidden;
- color: {color:Title};
- _margin-left: 10%;
- padding-right: 500px;
- }
- div#content{
- float:right;
- width:500px;
- padding:2px;
- margin-left: -00px;
- }
- #sidebar{
- position:fixed !important;
- width:104px;
- height:auto;
- padding:3px;
- font-size:8px;
- font-family:dixel;
- margin-top: 150px;
- margin-left:696px;
- border: 1px solid #ddd;
- }
- {block:ifshowblogtitle}
- #gfdffd{
- position: fixed;
- background-color: transparent;
- font-family:dixel;
- text-transform: lowercase;
- font-size: 8px;
- line-height: 8px;
- letter-spacing:1px;
- text-shadow: 0px 0px 5px #ddd;
- margin-top:-18px;
- margin-left: 6px;
- width: auto;
- height: auto;
- }
- #gfdffd:first-letter{
- position: fixed;
- font-family:dawning;
- color: {color:letter};
- background-color: transparent;
- font-size: 23px;
- letter-spacing:1px;
- }
- {block:ifshowblogtitle}
- div#sidebar2{
- position:fixed !important;
- margin-left: 809px;
- margin-top: 167px;
- width: 60px;
- height: 70px;
- padding: 0px;
- line-height:10px;
- font-size: 8px;
- font-family: pixel;
- letter-spacing:0px;
- margin-bottom: 0px;
- background-color:{color:background};
- background-image:url({image:Background});
- }
- .link1 a {
- padding-left:11px;
- padding-right:7px;
- margin-bottom: 3px;
- line-height:7px;
- width: 30px;
- height: 8px;
- margin-top:1px;
- border:1px solid #ddd;
- margin-left:0px;
- display:block;
- font-family: pixel;
- font-size:8px;
- text-align: right;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.8s ease-out;
- -moz-transition: all 0.8s ease-out;
- transition: all 0.8s ease-out;
- }
- .link1 a:hover{
- padding-right:7px;
- margin-bottom: 3px;
- width: 62px;
- height: 8px;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- border-left:0px solid #e1e1e1;
- transition: all 0.3s ease-out;
- text-align:right;
- }
- .link2 a {
- padding-right:7px;
- margin-bottom: 3px;
- line-height:7px;
- border:1px solid #ddd;
- width: 30px;
- height: 8px;
- margin-top:1px;
- margin-left:0px;
- display:block;
- font-family: pixel;
- font-size:8px;
- text-align: right;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.8s ease-out;
- -moz-transition: all 0.8s ease-out;
- transition: all 0.8s ease-out;
- }
- .link2 a:hover{
- padding-right:7px;
- margin-bottom: 3px;
- width: 56px;
- height: 8px;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- border-left:0px solid #e1e1e1;
- transition: all 0.3s ease-out;
- text-align:right;
- }
- .link3 a {
- padding-right:7px;
- margin-bottom: 3px;
- line-height:7px;
- width: 42px;
- height: 8px;
- margin-top:1px;
- margin-left:0px;
- display:block;
- font-family:pixel;
- border:1px solid #ddd;
- font-size:8px;
- text-align: right;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.8s ease-out;
- -moz-transition: all 0.8s ease-out;
- transition: all 0.8s ease-out;
- }
- .link3 a:hover{
- padding-right:7px;
- margin-bottom: 3px;
- width: 67px;
- height: 8px;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- border-left:0px solid #e1e1e1;
- transition: all 0.3s ease-out;
- text-align:right;
- }
- .link4 a {
- padding-right:7px;
- margin-bottom: 3px;
- line-height:7px;
- width: 38px;
- height: 8px;
- border:1px solid #ddd;
- margin-top:1px;
- margin-left:0px;
- display:block;
- font-family: pixel;
- font-size:8px;
- text-align:right;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.8s ease-out;
- -moz-transition: all 0.8s ease-out;
- transition: all 0.8s ease-out;
- }
- .link4 a:hover{
- padding-right:7px;
- margin-bottom: 3px;
- width: 72px;
- height: 8px;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- border-left:0px solid #e1e1e1;
- transition: all 0.3s ease-out;
- text-align:right;
- }
- .link5 a {
- padding-right:7px;
- border:1px solid #ddd;
- margin-bottom: 3px;
- line-height:7px;
- width: 28px;
- height: 8px;
- margin-top:1px;
- margin-left:0px;
- display:block;
- font-family: pixel;
- font-size:8px;
- text-align: right;
- text-decoration:none;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.8s ease-out;
- -moz-transition: all 0.8s ease-out;
- transition: all 0.8s ease-out;
- }
- .link5 a:hover{
- padding-right:7px;
- margin-bottom: 3px;
- width: 55px;
- height: 8px;
- color: #000;
- background-color:white;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- border-left:0px solid #e1e1e1;
- transition: all 0.3s ease-out;
- text-align:right;
- }
- div#entry{
- margin-top: 2px;
- padding: 4px;
- padding-bottom: 3px;
- {block:ifsolidborder}
- border: 1px solid #ddd;
- {/block:ifsolidborder}
- {block:ifdottedborder}
- border: 1px dotted #aaa;
- {/block:ifdottedborder}
- width: 500px;
- background: white;
- }
- div#stopstealingmycodeshoe{
- padding: 2px;
- height: 8px;
- background: white;
- float:left;
- font-size: 8px;
- font-family: handy00;
- position:fixed;
- margin-left: -6px;
- top: 285px;
- border-bottom-right-radius:40px;
- border-bottom-left-radius:40px;
- width: 115px;
- -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;
- }
- #entry .perma{
- margin-right: -10px;
- margin-top: 4px;
- width:200px;
- position: absolute;
- font-family: pixel;
- text-transform:uppercase;
- font-size: 8px;
- text-align: center;
- overflow:hidden;
- opacity: 0.0;
- background-color:#fff;
- }
- #entry:hover .perma{
- margin-right: 250px;
- 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;
- }
- @font-face{
- font-family: 'pixel';
- font-style: normal;
- font-weight: normal;
- src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf') format('woff');}
- @font-face { font-family: "ronda"; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
- @font-face {
- font-family: "dawning";
- src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');
- }
- #postnotes{
- text-align: left;}
- #postnotes blockquote{
- border: 0px;}
- .title{
- font-family: dawning ;
- font-size: 23px;
- line-height: 23px;
- color: {color:Title};
- letter-spacing: 0px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- blockquote{
- padding: 0px 0px 2px 5px;
- margin: 0px 0px 2px 1px;
- border-left: 1px solid #ddd;
- }
- blockquote p, ul{
- margin: 0px;
- padding: 0px;
- }
- {CustomCSS}
- </style>
- <title>{title}</title>
- <link rel="shortcut icon"href="{favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- </head>
- <body>
- <div id="cage">
- <div id="center"><div id="sidebar">
- {block:ifshowblogtitle}<div id="gfdffd">{text:title}</div>{/block:ifshowblogtitle}
- <img src="{image:sidebar}" width=104px>
- <center>{Description}<br>
- </div>
- <div id="sidebar2">
- <span class="link1"><a href="/">home</a></span>
- <span class="link2"><a href="/ask">msg</a></span>
- <span class="link3"><a href="{text:Link One}">{text:Link One Title}</a> </span>
- <span class="link4"><a href="{text:Link Two}">{text:Link Two Title}</a> </span>
- <span class="link5"><a href="{text:Link Three}">{text:Link Three Title}</a></span></div>
- <div id="content">
- {block:Posts}
- <div id="entry">
- {block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <span class="entrytext">{Body}</span>
- <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>{/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}
- <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>
- {block:Link}
- {block:Photo}
- <div class="perma">
- <center>{timeago} = {DayOfMonth} {ShortMonth} {Year}</center>
- <a href="{permalink}"> {NoteCountWithLabel}</a> = <a href="{ReblogURL}" target="_blank"> reblog </a> </span></div>
- {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=500px/>{LinkCloseTag}
- {/block:Photo}
- {block:Quote}
- <span class="entrytext">{Quote}</span>
- {block:Source}<b><a href="{Permalink}">{Source}</a></b>{/block:Source}
- <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>
- {/block:Quote}
- {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}
- </ul>
- <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>
- {/block:Chat}
- {block:Audio}
- <div style="width:300px; height:20px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:8px; float:right;"><small>
- {FormattedPlayCount} plays {block:ExternalAudio} // <a href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}</small></div></div></centeR><BR>
- {block:Caption}{Caption}{/block:Caption}
- <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></span></div>
- {/block:Audio}
- {block:Video}<center><div class="perma">
- <a href="{permalink}">{NoteCountWithLabel}</a> / <a href="{permalink}">{TimeAgo}</a> / <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
- <div class="video">{Video-250}</div>
- {block:Caption}<a href="{Permalink}">{Caption}</a>{/block:Caption}</center>
- {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}
- </span>
- <br>
- <div id="postnotes">{PostNotes}</div><br>
- {block:ContentSource}
- <br><a href="{SourceURL}">
- {lang:Source}:
- {block:SourceLogo}
- <img src="{BlackLogoURL}" width="{LogoWidth}"
- height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}
- {SourceLink}
- {/block:NoSourceLogo}
- </a>
- {/block:ContentSource}</div>{/block:PermalinkPage}
- </div>
- {/block:Posts}
- </center>
- </div></div>
- </div>
- </center>
- </body>
- <div style="position:fixed; bottom:10px; right:10px;">
- <a href="http://s0pas.tumblr.com">theme by paula</a>
- </div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement