Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <!-- Eternity theme by sweetcandyskittles.tumblr.com Please do not redistribute the codes or even claim this theme as yours. Thanks. Hope you like this theme. :) -->
- <head>
- <title>{Title}</title>
- <meta name="image:BG" content="http://28.media.tumblr.com/tumblr_lxs4cc0cs81r77gqoo1_400.gif">
- <META name="text:titleofblog" content="" />
- <link href='http://fonts.googleapis.com/css?family=The+Girl+Next+Door|Dawning+of+a+New+Day|La+Belle+Aurore|Rochester|Reenie+Beanie' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,700' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,800' rel='stylesheet' type='text/css'>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}<meta name="description" content="{MetaDescription}">{/block:Description}
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 20;
- if (document.getElementById)
- window.onerror=new Function("return true")
- var objActive; // The object which event occured in
- var act = 0; // Flag during the action
- var elmH = 0; // Hue
- var elmS = 128; // Saturation
- var elmV = 255; // Value
- var clrOrg; // A color before the change
- var TimerID; // Timer ID
- if (document.all) {
- document.onmouseover = doRainbowAnchor;
- document.onmouseout = stopRainbowAnchor;
- }
- else if (document.getElementById) {
- document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
- document.onmouseover = Mozilla_doRainbowAnchor;
- document.onmouseout = Mozilla_stopRainbowAnchor;
- }
- function doRainbow(obj)
- {
- if (act == 0) {
- act = 1;
- if (obj)
- objActive = obj;
- else
- objActive = event.srcElement;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- function stopRainbow()
- {
- if (act) {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- function doRainbowAnchor()
- {
- if (act == 0) {
- var obj = event.srcElement;
- while (obj.tagName != 'A' && obj.tagName != 'BODY') {
- obj = obj.parentElement;
- if (obj.tagName == 'A' || obj.tagName == 'BODY')
- break;
- }
- if (obj.tagName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function stopRainbowAnchor()
- {
- if (act) {
- if (objActive.tagName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function Mozilla_doRainbowAnchor(e)
- {
- if (act == 0) {
- obj = e.target;
- while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
- obj = obj.parentNode;
- if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
- break;
- }
- if (obj.nodeName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = obj.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function Mozilla_stopRainbowAnchor(e)
- {
- if (act) {
- if (objActive.nodeName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function ChangeColor()
- {
- objActive.style.color = makeColor();
- }
- function makeColor()
- {
- // Don't you think Color Gamut to look like Rainbow?
- // HSVtoRGB
- if (elmS == 0) {
- elmR = elmV; elmG = elmV; elmB = elmV;
- }
- else {
- t1 = elmV;
- t2 = (255 - elmS) * elmV / 255;
- t3 = elmH % 60;
- t3 = (t1 - t2) * t3 / 60;
- if (elmH < 60) {
- elmR = t1; elmB = t2; elmG = t2 + t3;
- }
- else if (elmH < 120) {
- elmG = t1; elmB = t2; elmR = t1 - t3;
- }
- else if (elmH < 180) {
- elmG = t1; elmR = t2; elmB = t2 + t3;
- }
- else if (elmH < 240) {
- elmB = t1; elmR = t2; elmG = t1 - t3;
- }
- else if (elmH < 300) {
- elmB = t1; elmG = t2; elmR = t2 + t3;
- }
- else if (elmH < 360) {
- elmR = t1; elmG = t2; elmB = t1 - t3;
- }
- else {
- elmR = 0; elmG = 0; elmB = 0;
- }
- }
- elmR = Math.floor(elmR).toString(16);
- elmG = Math.floor(elmG).toString(16);
- elmB = Math.floor(elmB).toString(16);
- if (elmR.length == 1) elmR = "0" + elmR;
- if (elmG.length == 1) elmG = "0" + elmG;
- if (elmB.length == 1) elmB = "0" + elmB;
- elmH = elmH + rate;
- if (elmH >= 360)
- elmH = 0;
- return '#' + elmR + elmG + elmB;
- }
- //]]>
- </script>
- <script type="text/javascript">
- // <![CDATA[
- var colour="random"; // 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() {
- if (typeof(self.innerWidth)=="number") {
- swide=self.innerWidth;
- shigh=self.innerHeight;
- }
- else if (document.documentElement && document.documentElement.clientWidth) {
- swide=document.documentElement.clientWidth;
- shigh=document.documentElement.clientHeight;
- }
- else if (document.body.clientWidth) {
- swide=document.body.clientWidth;
- shigh=document.body.clientHeight;
- }
- }
- 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>
- <!--
- //Disable right click script III- By Renigade ([email protected])
- //For full source code, visit http://www.dynamicdrive.com
- var message="";
- ///////////////////////////////////
- function clickIE() {if (document.all) {(message);return false;}}
- function clickNS(e) {if
- (document.layers||(document.getElementById&&!document.all)) {
- if (e.which==2||e.which==3) {(message);return false;}}}
- if (document.layers)
- {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
- else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
- document.oncontextmenu=new Function("return false")
- // -->
- </script>
- <style type="text/css">
- body {
- background-color:#fff;
- background-image:url({image:BG});
- background-attachment:fixed;
- background-repeat:repeat;
- color: #Ae4567;
- font-family:trebuchet MS;
- font-size:10px;
- line-height:14px;
- }
- a, a:link, a:visited, a:active {
- color: #000;
- text-shadow: 1px 1px 1px;
- text-decoration: none;
- -webkit-transition-timing-function: ease-out;
- -webkit-transition-duration: 0.5s;
- -moz-transition-timing-function: ease-out;
- -moz-transition-duration: 0.5s;
- }
- a:hover {
- color: #000;
- background-color: transparent;
- -webkit-transition-timing-function: ease-out;
- -webkit-transition-duration: 0.5s;
- -moz-transition-timing-function: ease-out;
- -moz-transition-duration: 0.5s;
- text-decoration:none;
- border:none;
- }
- #content {
- width:400px;
- padding:5px;
- background-color:#fff;
- margin-bottom:5px;
- position: absolute;
- top: 9px;
- left: 560px;
- }
- .permalink {
- background-color: #FCDFFF;
- line-height:10px;
- display:block;
- text-align:center;
- font-family: 'rochester';
- font-size:12px;
- text-transform:lowercase;
- margin-bottom:3px;
- padding:1px;
- }
- .text {
- font-family: 'La belle Aurore', cursive;
- font-size:24px;
- line-height:24px;
- }
- .link {
- font-size:25px;
- font-family: 'Reenie Beanie', cursive;
- font-style:italic;
- line-height:28px;
- }
- .titlebar
- {
- top:100px;
- left: 266px;
- position: fixed;
- width: 210px;
- height: 40px;
- text-align: center;
- font-family: 'The Girl Next Door', cursive;
- line-height: 43px;
- font-size:20px;
- background: #fff;
- -moz-border-radius: 15px;
- border-radius: 15px;
- border: 10px solid;
- border-color: #000;
- }
- .sidebar
- {
- top: 84px;
- left: 192px;
- position: fixed;
- }
- .sidebar2
- {
- top: 155px;
- left: 240px;
- position: fixed;
- }
- .navigatebar
- {
- margin-top:0px;
- margin-left:195px;
- padding:5px;
- top: 360px;
- left: 68px;
- position: fixed;
- width: 210px;
- height: 47px;
- text-align: center;
- font-family: Trebuchet Ms;
- font-size:9px;
- background: #fff;
- -moz-border-radius: 15px;
- border-radius: 15px;
- border: 10px solid;
- border-color: #000;
- }
- ::-webkit-scrollbar {
- width: 10px;
- height: 4px;
- background: #ffffff;
- background-repeat: repeat-y;
- background-attachment: fixed;
- }
- ::-webkit-scrollbar-thumb {
- background-image:url('http://1.bp.blogspot.com/-LjoSccgnxQc/TmeAxXtuQVI/AAAAAAAAHzw/VhrXJVaPER8/s1600/medium-black-theme.jpg');
- -webkit-border-radius: 2ex; }
- #paging a {
- display:inline-block;
- color: #000;
- background-color: #EBDDE2;
- -webkit-transition-timing-function: ease-out;
- -webkit-transition-duration: 0.5s;
- -moz-transition-timing-function: ease-out;
- -moz-transition-duration: 0.5s;
- padding:3px;
- }
- #paging a:hover {
- color: #000;
- background-color: #FCDFFF;
- -webkit-transition-timing-function: ease-out;
- -webkit-transition-duration: 0.5s;
- -moz-transition-timing-function: ease-out;
- -moz-transition-duration: 0.5s;
- text-align:center;
- }
- #paging a span {
- line-height:10px;
- }
- </style>
- </head>
- <body>
- <div class="titlebar">{text:titleofblog}</div>
- <div class="sidebar2"><img src="http://26.media.tumblr.com/tumblr_lxs77fun1Z1r77gqoo1_400.png"></div>
- <div class="sidebar">
- <TABLE style="WIDTH: 350px; HEIGHT: 350px" align=center>
- <TBODY><TR><TD><div align=left><div style="font-family: trebuchet ms; font-size: 10px;position:relative; left:79px; HEIGHT: 128px; WIDTH: 220px; COLOR: #9e8d80; SCROLLBAR-FACE-COLOR: #6B8E23; SCROLLBAR-SHADOW-COLOR: #cccccc; SCROLLBAR-HIGHLIGHT-COLOR: #cccccc; OVERFLOW-Y: scroll; FILTER: chroma(color=#6B8E23); OVERFLOW-X: hidden; SCROLLBAR-3DLIGHT-COLOR: #6b8e23; SCROLLBAR-ARROW-COLOR: #cccccc; SCROLLBAR-TRACK-COLOR: #6b8e23; SCROLLBAR-DARKSHADOW-COLOR: #6b8e23; SCROLLBAR-BASE-COLOR: #6b8e23; ">
- <img src="{PortraitURL-128}" align="left" style="width: 68px; margin-right: 10px; border: 3px solid #000;">
- <font color="000" size="1px">{description}</font>
- </DIV></DIV></TD></TR></TBODY></TABLE></div>
- <div class="navigatebar">
- <form name="form1">
- <select style="background-color:#ffffff; border: 2px solid #6C006C; font-size: 10px; width: 190px; height: 20px; font-family: trebuchet MS; color: #DB0058" onchange="location.href=this.options[this.selectedIndex].value;"><option selected value="/">NAVIGATE HERE ♥
- </option>
- <option value="/">REFRESH</option>
- <option value="/archive">ARCHIVE</option>
- <option value="/ask">MESSAGE/ASK</option>
- </select></area>
- </form>
- ♥ Eternity theme by <a href="http://sweetcandyskittles.tumblr.com">sweetcandyskittles</a>.
- </font></font>
- </DIV></DIV>
- <div id="content">
- {block:Posts}
- {block:Text}
- {block:Title}<div class="text">{Title}</div>{/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- {LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom:3px;">{LinkCloseTag}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- {Photoset-400}{block:caption}{caption}{/block:caption}
- {/block:photoset}
- {block:Quote}"{Quote}"<br>
- {block:Source}<b>- {Source}</b>{/block:Source}
- {/block:Quote}
- {block:Link}
- <div class="link"><a href="{URL}" target="_blank">{Name} ►</a></div>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}{Title}{/block:Title}
- {block:Lines}
- {block:Label}
- <b>{Label}</b>
- {/block:Label}
- <i>{Line}</i><br>
- {/block:Lines}
- {/block:Chat}
- {block:Audio}<center>
- {AudioPlayerBlack}
- {block:Caption}{Caption}{/block:Caption}</center>
- {/block:Audio}
- {block:Video}
- {VideoURL-500}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Video}
- {block:IndexPage}<center><div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> |♥| <a href="{ReblogURL}" target="_blank">reblog</a>
- </center>{/block:IndexPage}
- {block:PermalinkPage}
- {/block:PermalinkPage}
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/block:Posts}
- <div id="paging"><center>
- {block:PreviousPage}<a href="{PreviousPage}"><span>← PREV</span></a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}"><span>NEXT →</span></a>{/block:NextPage}
- </center>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment