Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
- </*Lovely Lullaby Theme by verifiedsarcastic-fashionista.tumblr.com.
- Please don't remove credit!
- Please don't remove credit!
- Please don't remove credit!
- Please don't remove credit!
- Please don't remove credit!
- Please don't remove credit! */>
- <html>
- <head>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
- <script type="text/javascript" src="scrolltopcontrol.js">
- </script>
- <script type="text/javascript" src="http://static.tumblr.com/rs5pbx8/5D1lwv26j/love2.txt"></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">
- //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
- function tb8_makeArray(n){
- this.length = n;
- return this.length;
- }
- tb8_messages = new tb8_makeArray(1);
- tb8_messages[0] = "YOUR MESSAGE HERE";
- tb8_rptType = 'infinite';
- tb8_rptNbr = 5;
- tb8_speed = 100;
- tb8_delay = 2000;
- var tb8_counter=1;
- var tb8_currMsg=0;
- var tb8_tekst ="";
- var tb8_i=0;
- var tb8_TID = null;
- function tb8_pisi(){
- tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
- document.title = tb8_tekst;
- tb8_sp=tb8_speed;
- tb8_i++;
- if (tb8_i==tb8_messages[tb8_currMsg].length){
- tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
- }
- if (tb8_currMsg == tb8_messages.length){
- if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
- clearTimeout(tb8_TID);
- return;
- }
- tb8_counter++;
- tb8_currMsg = 0;
- }
- tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
- }
- tb8_pisi()
- </script>
- <!-- DEFAULT COLORS -->
- <meta name="color:background" content="#FFFFFF"/>
- <meta name="color:posts" content="#FFFFFF"/>
- <meta name="color:text" content="#444444"/>
- <meta name="color:text headers" content="#BEBEBE"/>
- <meta name="color:bold text" content="#696969"/>
- <meta name="color:link" content="#5a5a5a"/>
- <meta name="color:link hover" content="#ffffff"/>
- <meta name="color:notes text link" content="#000000"/>
- <meta name="color:notes text link hover" content="#ffffff"/>
- <meta name="color:nav text link" content="#4e4e4e"/>
- <meta name="color:nav text link hover" content="#eeeeee"/>
- <meta name="color:nav background" content="#FFFFFF"/>
- <meta name="color:nav background hover" content="#FFC0CB"/>
- <meta name="color:tiny heart" content="#FFB6C1"/>
- <meta name="image:Background" content="" />
- <meta name="image:Portrait" content=""/>
- <meta name="image:Header" content=""/>
- <meta name="text:Custom Link One" content="" />
- <meta name="text:Custom Link One Title" content="" />
- <meta name="text:Custom Link Two" content="" />
- <meta name="text:Custom Link Two Title" content="" />
- <meta name="text:Custom Link Three" content="" />
- <meta name="text:Custom Link Three Title" content="" />
- <title>{Title}</title>
- <link rel="stylesheet" href="http://static.tumblr.com/usaykzx/o8Bku9w35/reset.css" 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}
- </head>
- <style type="text/css">
- ::-webkit-scrollbar-thumb:vertical {background-color:#FF69B4;height:100px;}
- ::-webkit-scrollbar-thumb:horizontal {background-color:#FF69B4;height:10px !important;}
- ::-webkit-scrollbar { height:10px;width:15px; background-color:#fff;}
- small{font-size:100%;}
- body{
- margin-top: 10px;
- text-align:justify;
- text-transform:;
- color: {color:text};
- font-family: arial;
- font-size: 9px;
- line-height: 10px;
- background-color:{color:background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-position:top center;
- background-repeat: repeat;}
- a:link, a:visited, a:active{color: {color:link}; text-decoration:none;
- font-family: arial;
- font-size: 9px; line-height:12px; }
- a:hover{border-bottom:0px ; color:{color:link hover}; font-family: arial;
- font-size: 9px; line-height:12px;}
- @font-face {
- font-family: 'LeagueGothicRegular';
- src: url('http://static.tumblr.com/usaykzx/xyTky45d1/league_gothic.eot');
- src: local('League Gothic Regular'), local('LeagueGothic'),
- url('http://static.tumblr.com/usaykzx/pheky45df/league_gothic.ttf') format('truetype'); }
- b, strong{color: {color:bold text};
- font-family: arial;
- font-size: 9px; line-height:12px;}
- #wtf {
- color: {color:text};
- font-family: arial;
- font-size: 9px;
- line-height: 10px;
- position:absolute;
- left:50%;
- width:416px;
- background-color: transparent;
- padding: 0px;
- overflow:hidden;
- margin: 0px 0px 0px -90px;}
- #entry {
- background-color:{color:posts};
- border: 4px solid {color:posts};
- float:left;
- {block:IndexPage}
- width:400px;
- height: auto;
- overflow:hidden;
- {/block:IndexPage}
- {block:PermalinkPage}
- width:400px;
- margin:4px;
- margin-bottom: 6px;
- {/block:PermalinkPage}
- background-image:url();
- background-attachment: scroll;
- background-position:top center;
- background-repeat: repeat;
- padding:0px;
- margin:4px;
- margin-bottom: 20px; }
- #info{
- background-color:{color:posts};
- float: left;
- margin: 4px;
- width:400px;
- padding:4px;
- margin-top: -12px;}
- #notes{
- background-color:{color:posts};
- display:block;
- width:400px;
- float:left;
- padding:4px;
- margin: 4px;}
- p{
- margin-top:0px;
- margin-bottom:0px;}
- #question{
- border-bottom:1px dotted {color:dots};
- overflow:SHOW;
- padding-bottom:3px;
- margin-bottom:3px;}
- #askr{
- display:block;
- float:left;
- width:33px;
- overflow:hidden;
- margin-right:3px;}
- .label {font-weight:bold;}
- ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:0px;}
- blockquote{padding:0px; padding-left:5px; margin:5px; border-left:1px dotted {color:dots};}
- blockquote img{display:block; width:100%;}
- blockquote p{padding:0px; margin:0px;}
- blockquote blockquote{position:relative; left:-2px; margin-top:0px; margin-right:0px; padding-right:0px;}
- {block:IndexPage}#entry img, #entry object{margin-top:0px;}{/block:IndexPage}
- {block:IndexPage}#entry img{ width:400px; margin-left:0px;} {/block:IndexPage}
- {block:IndexPage}#entry object{width:400px; margin-left:0px; }{/block:IndexPage}
- {block:PermalinkPage}#entry object{width:400px; margin-top:0px;}{/block:PermalinkPage}
- {block:PermalinkPage}#entry img{width: 400px;}{/block:PermalinkPage}
- #bottominfo{
- border-top:1px dotted {color:dots};
- padding:2px 0px 0px 0px;
- display:block;
- }
- .answer p{margin:0px;}
- .notes img{
- width:10px;
- position:relative;
- top:1px;
- }
- ol.notes, .notes li{
- list-style:none;
- margin:0px;
- padding:0px;
- }
- small {font-size:100%; line-height:90%;}
- big {font-family:arial black; color:{color:text headers}; font-size:28px;}
- .audioinfo{
- display:block;
- margin-left:0px;
- margin-top: 0px;
- margin-bottom: 4px;
- text-align: left;
- height:10px;
- padding:0px;
- background-color: {color:nav background};}
- .audio{display:block; background-color:white; z-index:-2;}
- a img{border:none;}
- #video object{position:relative; top:-20px;}
- #video{overflow:hidden;}
- .label {
- color: {color:bold text};font-weight: bold;
- font-family: arial;
- font-size: 9px; line-height:12px;}
- .odd {
- background-color: {color:nav background};}
- a.date {
- color: {color:notes text link};
- font-family: arial;
- line-height:7px;
- font-size: 9px;
- letter-spacing: 0px;
- z-index:4;
- display: block;
- padding: 1px;
- margin-left: -4px;
- margin-top: 4px;
- position:absolute;
- width: ;
- height:8px;
- text-align: center;
- background-color: transparent;
- background-image:url();
- border: 1px solid transparent;}
- a.date:hover {color:{color:notes text link hover};}
- a.date2 {
- color: {color:notes text link};
- font-family: arial;
- line-height:7px;
- font-size: 9px;
- letter-spacing: 0px;
- z-index:4;
- display: block;
- padding: 1px;
- margin-left: 368px;
- margin-top: 4px;
- position:absolute;
- width: auto;
- height:8px;
- text-align: right;
- background-color:transparent;
- background-image:url();
- border: 1px solid transparent;}
- a.date2:hover {color:{color:notes text link hover};}
- h1 {
- color: {color:text headers};
- font-size: 52px;
- line-height: 46px;
- font-family: "LeagueGothicRegular", "HelveticaNeue-CondensedBold", "Franklin Gothic Demi Cond", "Franklin Gothic Medium Cond";
- text-transform: uppercase;
- letter-spacing: -2px;}
- h2 {
- color: {color:text headers};
- font-size: 28px;
- line-height: 28px;
- font-family: "LeagueGothicRegular", "HelveticaNeue-CondensedBold", "Franklin Gothic Demi Cond", "Franklin Gothic Medium Cond";
- text-transform: uppercase;
- letter-spacing: -2px;}
- #lefthold {
- background-color: transparent;
- width: 208px;
- overflow:hidden;
- position:fixed;
- top: 9px;
- padding:5px;
- left:50%;
- margin: 0px 0px 0px -330px;}
- #left {
- font: 9px arial;
- line-height: 10px;
- height:auto;
- background-color:{color:posts};
- padding: 6px;
- width: 200px;}
- a.links {
- margin-bottom: 4px;
- margin-right: 0px;
- margin-top: 2px;
- font-family: arial;
- font-weight: bold;
- font-size: 10px;
- letter-spacing:-1px;
- color:{color:nav text link};
- line-height:auto;
- display: block;
- width: auto;
- background-color: {color:nav background};}
- a.links:hover {
- color:{color:nav text link hover};
- background-color: {color:nav background hover};}
- #top{
- z-index:9;
- font-size:9px;
- display:block;
- margin-left: 4px;
- right: 50%;
- width: 410px;
- background: transparent;}
- div.botright{
- -moz-border-radius:10px; border-radius:10px;
- z-index:9;
- font-size:9px;
- display:block;
- position: fixed;
- left:-14px;
- top:0px;
- padding:6px;
- padding-left:20px;
- background-image:url(http://static.tumblr.com/j4dtzbm/8uGlg5ccf/transparentg.png);
- background-color: transparent;}
- {CustomCSS}
- </style>
- <body>
- <!—tutorial by swagtasticable—>
- <style type="text/css">
- #gb{
- position:fixed;
- top:30px;
- z-index:+1000;
- }
- * html #gb{position:relative;}
- .gbtab{
- height:100px;
- width:30px;
- float:left;
- cursor:pointer;
- background:url("http://3.bp.blogspot.com/-nzL6xB45YbM/TpxuqJpjBZI/AAAAAAAAAYw/HznwQxRv2Sg/s1600/th_mmamv4.gif") no-repeat;
- }
- .gbcontent{
- float:left;
- border:2px solid #f2e7e2;
- background:#fcfbf8;
- padding:10px;
- }
- </style>
- <script type="text/javascript">
- function showHideGB(){
- var gb = document.getElementById("gb");
- var w = gb.offsetWidth;
- gb.opened ? moveGB(0, 30-w) : moveGB(20-w, 0);
- gb.opened = !gb.opened;
- }
- function moveGB(x0, xf){
- var gb = document.getElementById("gb");
- var dx = Math.abs(x0-xf) > 10 ? 5 : 1;
- var dir = xf>x0 ? 1 : -1;
- var x = x0 + dx * dir;
- gb.style.right = x.toString() + "px";
- if(x0!=xf){setTimeout("moveGB("+x+", "+xf+")", 40);}
- }
- </script>
- <div id="gb">
- <div class="gbtab" onclick="showHideGB()"> </div>
- <div class="gbcontent">
- <font size="2"> YOUR MESSAGE HERE</font>
- <div style="text-align:right">
- <a href="javascript:showHideGB()">
- </a>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- var gb = document.getElementById("gb");
- gb.style.right = (30-gb.offsetWidth).toString() + "px";
- </script>
- <!—tutorial by swagtasticable—>
- <div class="botright">
- <b>Theme By:</b> <a href="http://verifiedsarcastic-fashionista.tumblr.com/"><font color="ffffff">verifiedsarcastic-fashionista</font></a><br>
- <b>Powered By:</b> <a href="http://tumblr.com"><font color="ffffff">Tumblr</font></a>
- </div>
- <div id="wtf">
- <div id="top">
- {block:IfHeaderImage}<center>
- <img src="{image:Header}" width="408" /></center><br>{/block:IfHeaderImage}</div>
- <div id="lefthold">
- <div id="left"><center><h1>{Title}</h1>
- {block:IfPortraitImage}<img src="{image:Portrait}" width="200"/>{/block:IfPortraitImage}
- <a href="/" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Home</a>
- {block:AskEnabled}<a href="/ask" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Ask</a>{/block:AskEnabled}
- {block:SubmissionsEnabled}<a href="/submit" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Submit</a>{/block:SubmissionsEnabled}
- <a href="/archive" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Archive</a>
- {block:ifCustomLinkOneTitle}<a href="{text:Custom Link One}" class="links">{text:Custom Link One Title}</a>{/block:ifCustomLinkOneTitle}
- {block:ifCustomLinkTwoTitle}<a href="{text:Custom Link Two}" class="links">{text:Custom Link Two Title}</a>{/block:ifCustomLinkTwoTitle}
- {block:ifCustomLinkThreeTitle}<a href="{text:Custom Link Three}"class="links">{text:Custom Link Three Title}</a>{/block:ifCustomLinkThreeTitle}
- </center>
- {block:Description}{Description}{/block:Description}
- </div><br>
- {block:Pagination}<div id="left"><center>
- {block:PreviousPage}<a href="{PreviousPage}"><big>«</big></a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}"><big>»</big></a>{/block:NextPage}</center></div><br>{/block:Pagination}
- </div>
- <div class="autopagerize_page_element">
- {block:Posts}<div id="entry">
- {block:Text}<h2>{Title}</h2>{Body}{/block:Text}
- {block:Photo}
- <center>{block:IndexPage}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></a></center>{block:Caption}{Caption}{/block:Caption}{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}{/block:PermalinkPage}{/block:Photo}
- {block:Photoset}<center>{block:IndexPage}{Photoset-500}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}</center>{block:PermalinkPage}{/block:PermalinkPage}{/block:Photoset}
- {block:Quote}<h2>"{Quote}"</h2>{block:Source}{Source}{/block:Source}{/block:Quote}
- {block:Link}<a href="{URL}" class="link" {Target}><h2>{Name}</h2></a>{block:Description}{Description}{/block:Description}{/block:Link}
- {block:Chat}
- {block:Title}{Title}{/block:Title}
- {block:Lines}
- {block:Label}
- <div class="{Alt}"><span class="label"><strong>{Label}</strong></span>
- <span class="line">{Line}</span></div>
- {/block:Label}
- {/block:Lines}
- {/block:Chat}
- {block:Video}<center>{block:IndexPage}{Video-400}{/block:IndexPage}
- {block:PermalinkPage}{Video-400}{/block:PermalinkPage}</center>{/block:Video}
- {block:Audio}<span class="audio">{AudioPlayerWhite}</span><br>
- <table width="400" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td rowspan="3"></td>
- <td height="10"><span class="audioinfo"><b>Artist:</b> {block:Artist}{Artist}{/block:Artist}</span></td>
- </tr>
- <tr>
- <td height="10"><span class="audioinfo"><b>Song:</b> {block:TrackName}{TrackName}{/block:TrackName}</span></td>
- </tr>
- <tr>
- <td height="10"><span class="audioinfo"><b>Album:</b> {block:Album}{Album}{/block:Album}</span></td>
- </tr>
- </table>
- {/block:Audio}
- {block:Answer}
- <b>{Asker} Asked:</b> "{Question}"<br><br>
- <b>Answer:</b> {Answer}
- {/block:Answer}
- {block:IndexPage}
- <a href="{Permalink}" class="date"><font color="{color:tiny heart}">♥</font> {block:NoteCount} {NoteCount} Notes{/block:NoteCount} / {ShortDayOfWeek} {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}, {Year}</a> <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" class="date2"><font color="{color:tiny heart}">≡</font> reblog</a>
- {/block:IndexPage}
- </div>
- {block:PermalinkPage}{block:Date}<div id="info">{block:Caption}{Caption}{/block:Caption}<div id="bottominfo">
- Posted: <a href="/day/{year}/{monthnumberwithzero}/{dayofmonthwithzero}">{ShortDayOfWeek} {Month} {DayOfMonth}{DayOfMonthSuffix}, {Year}</a> at {12Hour}:{Minutes}{AmPm}{block:RebloggedFrom}<br>Originally posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>.{/block:RebloggedFrom}
- {block:Photo}{block:HighRes}<br>HighRes: <a href="{PhotoURL-HighRes}">view</a>{/block:HighRes}{/block:Photo}
- {block:Answer}<BR>Ask: <a href="/ask">{AskLabel}</a>{/block:Answer}
- {block:Audio}<BR>Plays: {FormattedPlayCount}{block:ExternalAudio}<BR>Download: <a href="{ExternalAudioURL}">here</a>.{/block:ExternalAudio}{/block:Audio}
- {block:HasTags}<BR>Tagged: {block:Tags}<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}{block:NoteCount}<BR>Notes: {NoteCount}{/block:NoteCount}
- </div></div> {/block:Date}{/block:PermalinkPage}
- {/block:Posts}
- </div>
- {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
- <center><img src="http://img121.imageshack.us/img121/1582/transparentz.png" width="400" height="20"></center>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment