Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Theme 2 by allygoat
- NOTE : Custom scrollbar only works on Google Chrome and Mozilla Firefox.
- -->
- <html lang="en">
- <head>
- <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Ruluko' rel='stylesheet' type='text/css'>
- <script type="text/javascript">
- WebFontConfig = {
- google: { families: [ 'Amatic+SC::latin' ] }
- };
- (function() {
- var wf = document.createElement('script');
- wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
- '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
- wf.type = 'text/javascript';
- wf.async = 'true';
- var s = document.getElementsByTagName('script')[0];
- s.parentNode.insertBefore(wf, s);
- })(); </script>
- <script type="text/javascript">
- WebFontConfig = {
- google: { families: [ 'Ruluko::latin' ] }
- };
- (function() {
- var wf = document.createElement('script');
- wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
- '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
- wf.type = 'text/javascript';
- wf.async = 'true';
- var s = document.getElementsByTagName('script')[0];
- s.parentNode.insertBefore(wf, s);
- })(); </script>
- <title>{Title}
- </title>
- {Block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/Block:ifinfinitescrolling}
- {block:ifenableminicursor}<style type="text/css">body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}</style>{/block:ifenableminicursor}
- <link href='http://fonts.googleapis.com/css?family=Ubuntu:300' rel='stylesheet' type='text/css'>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#FF9046"/>
- <meta name="color:text" content="#000000"/>
- <meta name="color:title" content="#000000"/>
- <meta name="color:links" content="#000000"/>
- <meta name="color:link hover" content="#686868"/>
- <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="" />
- <meta name="image:Sidebar" content="1"/>
- <meta name="image:Background" content=""/>
- <meta name="if:home link" content="1"/>
- <meta name="if:ask link" content="1"/>
- <meta name="if:archive link" content="1"/>
- <meta name="if:show blog title" content="0"/>
- <meta name="if:show sidebar photo" content="0"/>
- <meta name="if:show captions" content="0"/>
- <meta name="if:infinite scrolling" content="1"/>
- <meta name="if:enable mini cursor" content="1"/>
- <meta name="if:rainbow links" content="1"/>
- <meta name="if:custom scrollbar" content="0"/?
- {block:ifrainbowlinks}
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <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>
- {/block:ifrainbowlinks}
- <style type="text/css">
- @import url(http://fonts.googleapis.com/css?family=Amatic+SC);
- #permalink {
- position: absolute;
- margin-top: 0px;
- margin-left: 5px;
- opacity: 0;
- -webkit-transition: all .3s ease;
- -moz-transition: all .3s ease;
- -o-transition: all .3s ease;
- transition: all .3s ease;
- }
- #entry:hover #permalink {
- margin-top: 9px;
- margin-left: 5px;
- opacity: 1;
- }
- .countreblog {
- color: #fff;
- letter-spacing:1px;
- font-family: arial;
- font-size:10px;
- line-height:14px;
- margin: 2px;
- background-color: white;
- background-repeat:repeat;
- border:1px solid rgba(0,0,0,0.1);
- padding:3px 5px;
- -webkit-border-radius:2px;
- moz-border-radius:2px;
- -o-border-radius:2px;
- border-radius:2px;
- }
- .countreblog a { color: #FFF; }
- position:fixed !important;
- width:auto;
- height:auto;
- right:3px;
- top:26px;
- }
- {block:ifcustomscrollbar}
- ::-webkit-scrollbar {width: 9px; height: 3px; background: #fff}
- ::-webkit-scrollbar-thumb {background-color: #000;}
- {/block:ifcustomscrollbar}
- 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: 'Ruluko', sans-serif;
- font-size: 13px;
- line-height:{text:text line height};
- color:{color:Text};
- }
- p {
- margin:0px;
- margin-top:0px;
- }
- a:link, a:active, a:visited{
- color: {color:links};
- text-decoration: none;
- }
- a:hover {
- {block:ifnotrainbowlinks}
- color:{color:link hover};
- {block:ifnotrainbowlinks}
- font-weight: normal;
- }
- div#center{
- margin:auto;
- position:relative;
- width:730px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;
- }
- div#content{
- float:left;
- width:400px;
- padding:2px;
- padding-bottom:0px;
- margin-left:50px;
- margin-top:5px;
- margin-bottom:2px;
- background-color: transparent;
- }
- div#sidebar{
- position:fixed !important;
- width:190px;
- height:auto;
- margin-top:150px;
- margin-left:600px;
- padding:2px;
- background-color: transparent;
- }
- div#entry{
- margin-top:0px;
- padding-top:0px;
- padding-bottom:2px;
- background-color: transparent};
- }
- #postnotes{
- text-align: justify;}
- #postnotes blockquote{
- border: 0px;}
- .credit{
- color: #000;
- font-family: Ruluko;
- font-size:10px;
- line-height:11px;
- letter-spacing:0px;
- }
- .credit a{
- color:#000000;
- font-family:arial;
- font-size:10px;
- line-height:11px;
- letter-spacing:0px;
- }
- .title{
- font-family: 'Amatic SC', cursive;
- font-size: 30px;
- line-height: {text:title line height};
- color: {color:title};
- letter-spacing: 0px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 0px 0px;
- border-left: 1px solid #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;
- }
- .photoset, .photoset_row, div.photoset_photo, .photoset img, .html_photoset {
- {block:IndexPage}
- width:400px !important;
- {/block:IndexPage}
- }
- </style>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- </head>
- <body>
- <div id="cage">
- <div id="center">
- <div id="sidebar">
- <center>
- {block:ifshowblogtitle}<span class=title><a title="" href="/">
- {Title}
- </a></span><br>{/block:ifshowblogtitle}</center>
- {block:ifshowsidebarphoto}<center><img src="{image:sidebar}" width=190px></img></center><br>{/block:ifshowsidebarphoto}
- <center>
- {Description}
- </center>
- {block:ifhomelink}<center><br><a href="/">home</a> {/block:ifhomelink}
- {block:ifasklink}<a href="/ask">message</a> {/block:ifasklink}
- {block:ifarchivelink}<a href="/archive">archive</a> {/block:ifarchivelink}
- <a href="http://n0ds.tumblr.com/">theme</a>
- {block:ifLinkOneTitle}
- <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:ifnotinfinitescrolling}
- <br><p>{block:Pagination}<center>
- {block:PreviousPage}<a href="{PreviousPage}"><font size="2">← </font></a>{/block:PreviousPage}{block:NextPage}<a href="{NextPage}"><font size="2">→</font></a>{/block:NextPage}</center>{/block:Pagination}
- {/block:ifnotinfinitescrolling}
- </div>
- <div id="content">
- {block:Posts}
- <div id="entry">
- {block:IndexPage}
- <div id="permalink">
- <span class=""><a href="" target="_blank"></a></span>
- <span class="countreblog"><a href="{ReblogURL}" target="_blank">Reblog</a></span>
- <span class="countreblog"><a href="{Permalink}">Permalink</a></span>
- <span class="countreblog"><a href="{Permalink}">{NoteCount}</a></span></div>
- {/block:IndexPage}
- {block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- {Body}
- {/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}
- {block:Link}
- {block:Photo}<center>
- {block:IndexPage}{LinkOpenTag}<div class="photo"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=400px/></div>{LinkCloseTag}{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=400px/>{LinkCloseTag}{/block:PermalinkPage}</center>
- {block:ifshowcaptions}{caption}{/block:ifshowcaptions}
- {/block:Photo}
- {block:Photoset}
- <center><div class="photoset_photo">{Photoset-500}</div></center>
- {block:ifshowcaptions}{caption}{/block:ifshowcaptions}
- {/block:Photoset}
- {block:Quote}
- <span class="title">{Quote}</span>
- {block:Source}<p align="center">-{Source}</p>{/block:Source}
- </span>
- {/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 class="audio"><div style="width:400px; height:-10px;"><div style="float:center">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
- </div></div>{block:ifshowcaptions}{caption}{/block:ifshowcaptions}</center>
- {/block:Audio}
- {block:Video}<center>
- {Video-400}</center>{block:ifshowcaptions}{caption}{/block:ifshowcaptions}
- {block:Video}
- {block:PermalinkPage}{block:ifnotshowcaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifnotshowcaptions}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{/block:PermalinkPage}
- {block:PostNotes}{PostNotes}
- {/block:PostNotes}
- </div>
- {/block:Posts}
- </div></div>
- </div>
- </center>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment