Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
- <!---Theme by http://www.ellaclair.tumblr.com---!>
- <!---Theme name : "Chaotic"-->
- <!---base theme by pimp my profile---!>
- <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
- <HEAD>
- <script type="text/javascript">
- // <![CDATA[
- var colour3="#FFFF00";
- var colour="#000000";
- var sparkles=80;
- /******************************
- * Tinkerbell Magic Sparkle *
- * (c) 2005 mf2fm web-design *
- * http://www.mf2fm.com/rv *
- * Generated at pnoyonline.com *
- * tumblr layouts - pnoyonline *
- * 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);
- var rats=createDiv3(5, 5);
- rats.style.backgroundColor="transparent";
- rats.style.visibility="hidden";
- var rlef=createDiv(1, 5);
- var rlef=createDiv3(1, 5);
- var rdow=createDiv(5, 1);
- var rdow=createDiv3(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].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) {
- 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";
- 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) {
- 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";
- div.style.backgroundColor=colour;
- return (div);
- }
- function createDiv3(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";
- div.style.backgroundColor=colour3;
- return (div);
- }
- // ]]>
- </script>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="description" content="{MetaDescription}" />
- <title> {title}</title>
- <link rel="shortcut icon" href="http://i360.photobucket.com/albums/oo47/CeSSia_013/117.png">
- <pnk rel="alternate" type="application/rss+xml" href="{RSS}">
- <!-- Default Colors -->
- <META name="color:Background Color" content="#ffffff">
- <META name="color:Post Background" content="#transparent">
- <META name="color:header background" content="#transparent">
- <META name="color:header font" content="#ffffff">
- <META name="color:image border" content="#ffffff">
- <META name="color:font color" content="#ffffff">
- <META name="color:link color" content="#ffffff>
- <META name="color:link hover" content="#ffffff">
- <META name="color:Notes Border" content="#ffffff">
- <META name="color:post title font" content="#ffffff">
- <META name="color:Bold font" content="#ffffff">
- <META name="color:nav bg" content="#transparent">
- <META name="color:nav hover" content="#ffffff">
- <!-- End Default Colors -->
- <meta name="if:ShowPostDetails" content="1"/>
- <meta name="if:ShowReblogLink" content="1"/>
- <meta name="if:ShowTagLink" content="1"/>
- <style type="text/css">
- img{
- -webkit-transition: opacity 0.8s linear;
- opacity: 0.60;
- }
- img:hover{
- -webkit-transition: opacity 0.8s linear;
- opacity: 1;
- }
- @charset "utf-8";
- body {
- background-color: {color:Background Color};
- background-image:url(http://www.sadmuffin.org/pinkforsure/myspace-layouts/vintage/23.gif);
- background-repeat: repeat;
- background-attachment: fixed;
- background-position: Center Center;
- cursor: url("http://media.tumblr.com/tumblr_loyza2awKr1qepbs7.gif"), default;
- }
- /* Links */
- a:link, a:visited, a:active {
- color: #AF7817;
- text-decoration:none;
- }
- a:hover {
- color: {color:link hover};
- text-decoration:none;
- }
- /* Text Effect */
- b {
- color: #ffffff;}
- strong {
- color: #ffffff;}
- i {
- color: #ffffff;}
- u {
- font-color: #ffffff;
- }
- /* Navigation */
- a.links{
- font-weight:none;
- text-decoration:none;
- display:block;
- font-family: arial;
- font-size:11px;
- background-color:transparent;
- border: 0px solid {color:header background};
- text-align:center;
- padding:2 0 2 0; width:185px;
- }
- a.links:hover{
- font-weight:none;
- text-decoration:underline;
- display:block;
- font-family: arial;
- font-size:11px;
- background-color:#FAAFBA;
- border: 0px solid 110000;
- text-align:center;
- padding:2 0 2 0; width:185px;
- }
- /* Table */
- #table {
- background:transparent;
- font-family: arial;
- font-size: 11px;
- color: {color:font color};
- text-align:justify;
- width:700px;
- padding:10px;
- margin:0 auto;
- }
- /* Post */
- #each {
- background-color:#000000;
- background-image:url(none);
- padding:5px;
- margin:5px 0px 5px 0px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- }
- /* Bullets */
- table ul li {
- margin-right:2px;
- margin-left:5px;
- list-style-image: url(http://static.tumblr.com/f3gdoib/A4xleo2lx/arrow_bullets.gif);
- }
- /* Columns */
- #post { width: 450px; float:right;
- }
- #right { width: 200px; float:left;
- }
- /* Headers */
- h1 {
- margin:0;
- color:#ffffff;
- font-family: 'Arial, verdana', arial, serif;
- font-weight:normal;
- font-style: italic;
- font-size:20px;
- line-height:17px;
- letter-spacing:0px;
- }
- .header2 {
- background-color:transparent;
- font-size: 16px;
- font-family: 'Arial, verdana', arial, serif;
- font-weight:normal;
- text-transform: normal;
- letter-spacing: 0px;
- line-height: 12px;
- text-align: left;
- margin-bottom: 5px;
- margin-top: 5px;
- }
- .header {
- background-color:transparent;
- font-size: 16px;
- font-family: 'Arial, verdana', arial, serif;
- font-weight:normal;
- text-transform: normal;
- letter-spacing: 0px;
- line-height: 12px;
- text-align: left;
- margin-bottom: 5px;
- margin-top: 5px;
- }
- .tumblrdate {
- padding: 5px 0 0 0;
- font-family: Trebuchet Ms;
- text-transform: normal;
- font-size:11px;
- }
- /* Post Blockquote */
- blockquote{
- border-left-width: 5px;
- border-left-style: solid;
- border-left-color:{color:Notes Border};
- padding:1px; padding-left: 5px; margin: 0px;
- }
- /* Notes */
- ol.notes {
- padding: 0px;
- margin: 15px 0px;
- list-style-type: none;
- border-bottom: solid 0px {color:Notes Border};
- }
- ol.notes li.note {
- border-top: solid 0px {color:Notes Border};
- padding: 5px;
- }
- ol.notes li.note img.avatar {
- vertical-align: -4px;
- margin-right: 10px;
- width: 16px;
- height: 16px;
- }
- ol.notes li.note span.action {
- font-weight: bold;
- }
- ol.notes li.note .answer_content {
- font-weight: normal;
- }
- ol.notes li.note blockquote {
- border-color: {color:Notes Border};
- padding: 4px 10px;
- margin: 10px 0px 0px 25px;
- }
- ol.notes li.note blockquote a {
- text-decoration: none;
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- <table id="table">
- <tr><td id="none" colspan="3">
- </td></tr>
- </td><td id="right">
- <div style="width: 200px;">
- <br>
- <div id="each">
- <!-- About Me -->
- <div class="header2"><b><center><img src="http://i1044.photobucket.com/albums/b443/cutesecrets/themediary/aboutme/aboutme12.png"; width="150" height="40">
- <center><a href="/"><img style="border:0px solid 22FFFF" src="{PortraitURL-128}" width="128"></a>
- <br><div style="width: 180px;">
- {description}</div></div>
- <div id="each">
- <!-- Navigation -->
- <div class="header2"><b>Navigation</b></div>
- <center>
- <a href="/" class="links"><span color="transparent">Home</span></a>
- <a href="/ask" class="links">Ask Me</a>
- <a href="/archive" class="links"><span color="transparent">Archive</span></a>
- <a href="/random" class="links">Random</a>
- <a href="http://www.ellaclair.tumblr.com" class="links" title="This Theme" target=_blank>This Theme</a>
- <div id="each">
- <!-- Following -->
- <div class="header2"><b>Following</b></div><div style="height:153px; overflow-y: hidden;overflow-x: hidden;">
- <br>{block:Following}
- <center>{block:Followed}<a href="{FollowedURL}"><img style="border:0px solid {color:image border}" src="{FollowedPortraitURL-24}"></a> {/block:Followed}
- </center><BR>{/block:Following}
- </div></div>
- </div>
- </div></td>
- <td id="post">
- <!-- Blog Post -->
- <div style="width: 450px;">
- {block:Posts}
- {block:Text}<br><div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Text Post <a href="{Permalink}"> {ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
- {block:Title}
- <h1>{Title}</h1>
- {/block:Title}
- <p>{Body}</p>
- </li><br>
- {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
- {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
- {/block:HasTags}{/block:IfShowTagLink}</div>
- <div class="tumblrdate" style="float:right;" >
- {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">»SHARE THIS POST«</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
- <br>
- <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
- {/block:Text}
- <br>
- {block:Photo}<div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Photo Post <a href="{Permalink}"> {ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div><br>
- {LinkOpenTag}<center><img id="pic" style="border:0px solid {color:image border}" src="{PhotoURL-400}" alt="{PhotoAlt}"/></center>{LinkCloseTag}
- {block:Caption}
- <p>{Caption}</p>
- {/block:Caption}
- {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
- {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
- {/block:HasTags}{/block:IfShowTagLink}</div>
- <div class="tumblrdate" style="float:right;" >
- {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">»SHARE THIS POST«</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
- <br>
- <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
- </div>{/block:Photo}
- {block:Quote}<div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Quote Post <a href="{Permalink}">{ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
- <p class="qcontainer">
- <h1>�{Quote}�</h1>
- {block:Source}
- <span class="source"><br><i>{Source}</i></span>
- {/block:Source}
- </p><br>
- {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
- {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
- {/block:HasTags}{/block:IfShowTagLink}</div>
- <div class="tumblrdate" style="float:right;" >
- {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">»SHARE THIS POST«</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
- <br>
- <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
- </div>
- {/block:Quote}
- {block:Link}<div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Link Post <a href="{Permalink}"> {ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
- <p><a href="{URL}" id="postlink" {Target}><h1>{Name}</h1></a></p>
- {block:Description}
- <p>{Description}</p>
- {/block:Description}
- </li>
- {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
- {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
- {/block:HasTags}{/block:IfShowTagLink}</div>
- <div class="tumblrdate" style="float:right;" >
- {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">»SHARE THIS POST«</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
- <br>
- <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
- </div>
- {/block:Link}
- {block:Chat}<div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Chat Post<a href="{Permalink}"> {ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
- {block:Title}
- <p id="posttitle"><a href="{Permalink}">{Title}</a></p>
- {/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="{Alt}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- {/block:Lines}
- </ul>
- </li></li>
- {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
- {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
- {/block:HasTags}{/block:IfShowTagLink}</div>
- <div class="tumblrdate" style="float:right;" >
- {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">»SHARE THIS POST«</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
- <br>
- <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
- </div>
- {/block:Chat}
- {block:Video}<div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Video Post <a href="{Permalink}"> {ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
- {Video-400}
- {block:Caption}
- <p>{Caption}</p>
- {/block:Caption}
- </li>
- {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
- {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
- {/block:HasTags}{/block:IfShowTagLink}</div>
- <div class="tumblrdate" style="float:right;" >
- {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">»SHARE THIS POST«</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
- <br>
- <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
- </div>
- {/block:Video}
- {block:Audio}<div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Audio Post<a href="{Permalink}">{ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
- <div style="width:450; height:80; background: {color:Music Bg}; -webkit-border-bottom-right-radius:8;bottom-left-radius:8;-moz-border-radius:8 8 8 8;padding: 0px 5px 2px 5px;"><br>{block:AlbumArt}<img src="{AlbumArtURL}" align="left" width="50px" height="50px" />{/block:AlbumArt} <div style=" height:60px; background: black; -webkit-border-bottom-right-radius:8;bottom-left-radius:8;-moz-border-radius:8 8 8 8;">{AudioPlayerblack}<div class="tumblrdate">{block:TrackName}<span><strong>Title</strong>: {TrackName}</span>{/block:TrackName}
- {block:Artist}<span><strong>Artist:</strong> {Artist}</span>{/block:Artist}
- <span>{PlayCountWithLabel}</span><br></div>
- </div></div>
- {block:Caption}
- <p>{Caption}</p>
- {/block:Caption}
- </li>
- {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
- {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
- {/block:HasTags}{/block:IfShowTagLink}</div>
- <div class="tumblrdate" style="float:right;" >
- {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">»SHARE THIS POST«</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
- <br>
- <br>{block:PostNotes}<br><B>Comments</B><BR>{PostNotes}{/block:PostNotes}</div>
- </div>
- {/block:Audio}
- {block:Answer}<div id="each">
- <div id="box"> <div class="header"><div id="blogt"><b>Ask me anything <a href="{Permalink}">{ShortDayOfWeek},
- {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
- <div id="askr">
- <img style="border:3px solid #1A1A1A" src="{AskerPortraitURL-40}"align="left" /></div>
- <div id="question"><div id="asked">{Asker} Asked:<BR>
- {Question}</div></div><br>
- {answer}<BR clear="all">
- <br>
- <BR>{block:PostNotes}
- <br><B>Comments</B><BR>
- {PostNotes}
- {/block:PostNotes}</div>{/block:answer}
- {/block:Posts}
- {/block:Posts}
- </ol>
- <!-- END BLOG POST -->
- <!-- Pagination -->
- <center>{block:PreviousPage}<a href="{PreviousPage}"><font size="3"><b>« newer</b></a></font> {/block:PreviousPage}{CurrentPage}/{TotalPages}{block:NextPage} <a href="{NextPage}"><font size="3"><b>older »</b></a></font>{/block:NextPage}{/block:Pagination}</center>
- <br>
- </div>
- </body>
- </html>
- <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
- <!---Theme by http://www.ellaclair.tumblr.com---!>
- <!---Theme name : "Chaotic"-->
- <!---base theme by pimp my profile---!>
- <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
Advertisement
Add Comment
Please, Sign In to add comment