Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- theme by -injection. please don't remove credit. if you do put in your faq.-->
- <head>
- <!-- DEFAULT VARIABLES -->
- <html lang="en"><head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#ffffff"/>
- <meta name="color:content" content="#ffffff"/>
- <meta name="image:Sidebar" content="1"/>
- <meta name="if:Show Sidebar Image" content="0"/>
- <meta name="if:Infinite Scrolling" content="0"/>
- <meta name="image:Background" content=""/>
- <meta name="if:Show Arrows" content="1"/>
- <meta name="font:title" content="helvetica"/>
- <meta name="color:text" content="#000000"/>
- <meta name="color:title" content="#000000"/>
- <meta name="color:link" content="#555555"/>
- <meta name="color:hover" content="#000000"/>
- <meta name="if:rainbow links" content="1"/>
- {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
- <title>{Title}</title>
- <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- $('li.drawer div:nth-child(2)').hide();
- $('li.drawer h4').click(function () {
- if ($(this).hasClass('open')) {
- $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');}
- else {
- $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');
- $(this).next().slideDown();
- $(this).addClass('open');}
- });
- });
- </script>
- <style type="text/css">
- 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: helvetica; font-size: 10px; line-height:11px; letter-spacing:0px; color:{color:Text};}
- p { margin:0px; margin-top:0px;}
- a:link, a:active, a:visited{ color: {color:Link}; text-decoration: none;}
- a:hover {color:{color:Hover}; text-decoration: none;}
- div#center{
- margin:auto;
- position:relative;
- width:840px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;}
- div#content{
- float:right;
- width:385px;
- padding:0px;
- padding-top: 0px;
- margin-right: 195px;
- margin-top: 0px;
- background:;
- }
- div#entry{
- background-color: #FFF;
- margin-top:0px;
- padding-top:0px;
- padding-right:0px;
- padding-bottom:2px;
- }
- div#sidebar{
- position:fixed !important;
- width: 180px;
- height:auto%;
- margin: 200px 0px 0px 70px;
- padding: 1px; font-size: 10px;
- line-height:8px;
- letter-spacing:0px;
- margin-bottom: 5px;
- background-color: #FFF;
- border: 1px solid transparent;
- }
- #postnotes{
- text-align: justify;
- }
- #postnotes blockquote{
- border: 0px;
- }
- .title{
- font-family: helvetica;
- font-size: 10px;
- line-height: 12px;
- color: {color:Title};
- letter-spacing: 1px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- .title2{
- font-family: verdana;
- font-size: 10px;
- line-height: 12px;
- color: {color:Title};
- letter-spacing: 1px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- 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;
- background-color:#FFFFFF;
- }
- small{font-size: 90%;}
- </style>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- {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}
- </head>
- <body>
- <div id="cage">
- <div id="center">
- <div id="sidebar">
- {block:ifshowsidebarimage}<a href="/"><img src="{image:sidebar}" width=180px></a>{/block:ifshowsidebarimage}
- <br>
- <center>{Description}
- <br>
- <div align="right">
- <br>
- {block:ifshowarrows}{block:NextPage}<a href="{NextPage}"><center><font size="2"> > </font></center></a>{/block:NextPage}
- {block:PreviousPage} <a href="{PreviousPage}"><center><font size="2"> < </font></center></a>{/block:PreviousPage}{/block:ifshowarrows}
- </center>
- </div>
- <div id="content">
- {block:Posts}
- <div id="entry">
- <a href="{permalink}">{block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <span class="entrytext">{Body}</span>
- {/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}
- {block:Link}
- {block:Photo}<center>
- {LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=385px></a>{LinkCloseTag}</center>
- {/block:Photo}
- {block:Quote}
- <span class="title">{Quote}</span>
- {block:Source}{Source}{/block:Source}
- {/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>
- {/block:Chat}
- {block:Audio}
- <centeR><div style="width:330px; 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}
- {/block:Audio}
- {block:Video}<center>
- {Video-400}<BR>
- {block:Caption}{Caption}{/block:Caption}</center>
- {block:Video}
- {block:PostNotes}
- <center>
- {block:Caption}{Caption}{/block:Caption}
- {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
- {block:HasTags}
- # {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
- {block:RebloggedFrom}
- reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
- {/block:RebloggedFrom}
- </center></span>
- <br>
- <div id="postnotes">{PostNotes}</div><br>
- <center>{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}</center>
- {/block:PostNotes}
- </div>
- {/block:Posts}<br>
- </div></div>
- </div>
- </body>
- </body>
- <div style="position:fixed; top:0px; left:0px;">
- theme by<a href="http://-injection.tumblr.com">-injection</a>
Advertisement
Add Comment
Please, Sign In to add comment