Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <head>
- <!--
- Theme by h4te
- http://h4te.tumblr.com
- Please don't remove the credit.
- -->
- <!-- DEFAULT VARIABLES -->
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#E4DAFD"/>
- <meta name="color:text" content="#000"/>
- <meta name="color:title" content="#000"/>
- <meta name="color:link" content="#777"/>
- <meta name="color:hover" content="#ccc"/>
- <meta name="image:sidebar" content="1"/>
- <meta name="image:background" content=""/>
- <meta name="if:show photo" content="0"/>
- <meta name="if:infinite scrolling" content="0"/>
- <meta name="if:show arrows" content="1"/">
- <meta name="if:show permalinks on homepage" content="1"/">
- <meta name="if:show notes" content="1"/">
- <meta name="if:show note count" content="1"/">
- <meta name="if:show caption" content="1"/">
- <meta name="if:show blog title" content="0"/>
- <meta name="if:shadow" content="1"/>
- <meta name="if:shadow links" content="0"/>
- <meta name="if:dotted border" content="0"/>
- <meta name="if:solid border" content="1"/>
- <meta name="if:tiny cursor" content="0"/>
- <meta name="if:tiny scrollbar" content="0"/>
- <meta name="if:rainbow links" content="0"/>
- <meta name="if:Ask Link" content="1"/>
- <meta name="if:Archive Link" content="1"/>
- <meta name="text:Link One" content="" />
- <meta name="text:Link One Title" content="" />
- <meta name="text:Link Two" content="" />
- <meta name="text:Link Two Title" content="" />
- <meta name="text:Link Three" content="" />
- <meta name="text:Link Three Title" content="" />
- <meta name="text:Link Four" content="" />
- <meta name="text:link Four Title" content="" />
- <meta name="text:link Five" content="" />
- <meta name="text:link Five Title" content="" />
- <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
- {block:ifrainbowlinks}
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 50;
- 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>
- {/block:ifrainbowlinks}
- <style type="text/css">
- {block:iftinycursor}
- body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}
- {/block:iftinycursor}
- body {
- margin:0px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;}
- body, div, p, textarea, submit, input{
- font-family: cambria;
- font-size: 10px;
- line-height:10px;
- letter-spacing:0px;
- color:{color:Text};
- }
- {block:iftinyscrollbar}
- ::-webkit-scrollbar {width: 8px; height: 4px; background: #FFFFFF; }
- ::-webkit-scrollbar-thumb { background-color: #ffffff; -webkit-border-radius: 1ex; border: 1px solid black;}
- {/block:iftinyscrollbar}
- p {
- margin:0px;
- margin-top:0px;
- }
- a:link, a:active, a:visited{
- color: {color:Link};
- text-decoration: none;
- -webkit-transition: color 0.3s ease-out;
- -moz-transition: color 0.3s ease-out;
- transition: color 0.3s ease-out;
- }
- a:hover {
- color:{color:Hover};
- text-decoration: none;
- font-style: none;
- }
- div#center{
- margin:auto;
- position:relative;
- width:840px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;
- }
- div#content{
- float:right;
- width:350px;
- padding-left:2px;
- padding-right: 2px;
- padding-top: 2px;
- margin-right: 165px;
- margin-top: 10px;
- margin-bottom: 20px;
- background: #fff;
- {block:ifshadow}box-shadow: 0px 5px 20px rgba(0,0,0,0.35);{/block:ifshadow}
- {block:ifsolidborder}border: 1px solid black;{/block:ifsolidborder}
- {block:ifdottedborder}border: 1px dotted black;{/block:ifdottedborder}
- }
- div#entry{
- background-color:;
- margin-top:px;
- padding-top:0px;
- padding-bottom:2px;
- }
- #entry .perma a{
- color:{Color:Links};}
- #entry .perma{
- width:350px;
- position: absolute;
- font-family: cambria;
- font-size: 10px;
- line-height: 15px;
- text-align: center;
- overflow:hidden;
- opacity: 0.0;
- background-color:#fff;
- }
- #entry:hover .perma{
- overflow:visible;
- -webkit-transition: opacity 0.2s linear; opacity: 0.9;
- -webkit-transition: all 0.2s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;
- }
- div#sidebar{
- position:fixed !important;
- width: 164px;
- height:auto;
- margin-top: 295px;
- margin-left: 125px;
- padding: 3px;
- line-height:11px;
- letter-spacing:0px;
- background-color:white;
- {block:ifsolidborder}border: 1px solid black;{/block:ifsolidborder}
- {block:ifshadow}box-shadow: 0px 5px 20px rgba(0,0,0,0.35);{/block:ifshadow}
- {block:ifdottedborder}border: 1px dotted black;{/block:ifdottedborder}
- }
- #postnotes{
- text-align: justify;}
- #postnotes blockquote{
- border: 0px;}
- .title{
- font-family: cambria;
- font-size: 13px;
- line-height: 15px;
- color: {color:Title};
- letter-spacing: 0px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- .blogtitle{
- font-family: cambria;
- font-size: 13px;
- line-height: 15px;
- color: {color:Title};
- letter-spacing: 0px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- .video embed, .post div.video object {width:350px !important; height:180px !important;}
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 1px;
- border-left: 1px dotted #555555;
- }
- blockquote p, ul{
- margin:0px;
- padding:0px;
- }
- a img{border: 0px;}
- ul, ol, li{list-style:none; margin:0px; padding: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:#555555;}
- .notes img{width:10px; position:relative; top:3px;}
- .permalink{
- display: block;
- font-size: 10px;
- text-align: right;
- text-decoration: none;
- }
- small{font-size: 90%;}
- </style>
- <link rel="shortcut icon" href="{Favicon}" />
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <meta name="viewport" content="width=820" />
- </head>
- <body>
- {block:ifshadowlinks}<style type="text/css">a:hover {
- color:{color:Text};
- text-decoration: none;
- font-style: none;
- text-shadow:0px 0px 5px #02305A;}</style>{/block:ifshadowlinks}
- <script type="text/javascript" src="http://static.tumblr.com/ubmlcww/EGiltkm9b/istb.txt"></script>
- <div id="cage">
- <div id="center">
- <div id="sidebar">
- <center>
- {block:ifshowblogtitle}<span class=blogtitle><a href="/">
- {Title}
- </a></span><br>{/block:ifshowblogtitle}
- {block:ifshowphoto}<a href="/"><img src="{image:sidebar}" width=150px></a><BR>{/block:ifshowphoto}
- {Description}{block:ifLinkOneTitle}<BR><BR>
- <a href="{text:Link One}" class="link">{text:Link One Title}</a>
- {/block:ifLinkOneTitle}
- {block:ifLinkTwoTitle}
- <a href="{text:Link Two}" class="link">{text:Link Two Title}</a>
- {/block:ifLinkTwoTitle}
- {block:ifLinkThreeTitle}
- <a href="{text:Link Three}" class="link">{text:Link Three Title}</a>
- {/block:ifLinkThreeTitle}
- {block:ifLinkFourTitle}
- <a href="{text:Link Four}" class="link">{text:Link Four Title}</a>
- {/block:ifLinkFourTitle}
- {block:ifLinkFiveTitle}
- <a href="{text:Link Five}" class="link">{text:Link Five Title} </a>
- {/block:ifLinkFiveTitle}
- {block:ifnotlinkonetitle}<BR><BR>{/block:ifnotlinkonetitle}{block:ifasklink}<a href="/ask">message</a> {/block:ifasklink}
- {block:ifarchivelink}<a href="/archive">archive</a> {/block:ifarchivelink}
- <script src='http://static.tumblr.com/ubmlcww/aXpls2t3m/posts.txt ' type='text/javascript'></script>
- {block:ifshowarrows}
- <BR>
- <BR>
- {block:PreviousPage}<a href="{PreviousPage}"><font size="3"><b>←</b></font></a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}"><font size="3"><b>→</b></font></a>{/block:NextPage}
- {/block:ifshowarrows}
- {block:ifinfinitescrolling}{/block:ifinfinitescrolling}
- </div>
- <div id="content">
- {block:Posts}
- <div id="entry">
- {block:IndexPage}
- {block:ifshowpermalinksonhomepage}<div class="perma">
- <a href="{permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">reblog</a></span></div>{/block:ifshowpermalinksonhomepage}
- {/block:IndexPage}
- {block:Text}
- {block:Title}<span class="title"><a href="{permalink}">{Title}</a></span><br>{/block:Title}
- <span class="entrytext">{Body}</span>{/block:Text}
- {block:Link}
- <a href="{URL}" class="title"><a href="{permalink}">{Name}</a></a><br>
- {block:Description}{Description}{/block:Description}
- {block:Link}
- {block:Photo}
- {LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=350px/></a>{LinkCloseTag}
- {/block:Photo}
- {block:Quote}
- <a href="{permalink}">{Quote}</a></span>
- {block:Source}<strong>{Source}</strong>{/block:Source}
- {/block:Quote}
- {block:Chat}
- {block:Title}<span class="title"><a href="{permalink}">{Title}</a></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}
- {/block:Chat}
- {block:Audio}
- <center><a href="{permalink}"><div style="width:220px; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;"></a>
- {FormattedPlayCount} plays {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br>
- {/block:Audio}
- {block:Video}<center>
- <div class="video"><a href="{permalink}">{Video-400}</a></div></center>
- {block:Video}
- {block:PermalinkPage}<center>{block:ifshowcaption}{block:Caption}{block:ifshowcaption}{Caption}{/block:ifshowcaption}{/block:Caption}{/block:ifshowcaption}{block:NoteCount}{block:ifshownotecount}{NoteCountWithLabel}{block:ifshownotecount}{/block:NoteCount}</center>{/block:PermalinkPage}
- {block:PostNotes}{block:ifshownotes}<BR><BR>{PostNotes}{/block:ifshownotes}
- {/block:PostNotes}
- </div>
- {/block:Posts}
- {block:ifshowarrows}{/block:ifshowarrows}
- </center>
- </div></div>
- </div>
- </center>
- <!--
- Theme by h4te
- http://h4te.tumblr.com
- Please don't remove the credit.
- -->
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment