- <!--theme by s-ug4r
- remove credit and I will report you
- -->
- <!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">
- <script type="text/javascript" src="http://static.tumblr.com/q0etgkr/mFbkoqlkr/tumblrautopager.js"></script>
- <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>
- <head>
- <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
- <script type="text/javascript">
- WebFontConfig = {
- google: { families: [ 'Short+Stack::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>
- <link href='http://fonts.googleapis.com/css?family=Amatic+SC' 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">
- // <![CDATA[
- var speed=100; // speed colours change, 1 second = 1000
- var delay=25; // how long to wait for each wipe
- var alink="http://www.mf2fm.com/rv"; // page to link text to (set to ="" for no link)
- /****************************
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var w_txt;
- window.onload=function() { if (document.getElementById) {
- var wiper=document.getElementById("wipe");
- w_txt=wiper.firstChild.nodeValue;
- while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
- for (var i=0; i<w_txt.length; i++) {
- var wipei=document.createElement("span");
- wipei.setAttribute("id", "wipe"+i);
- wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
- if (alink) {
- wipei.style.cursor="pointer";
- wipei.onclick=function() { top.location.href=alink; }
- }
- wiper.appendChild(wipei);
- }
- wipe(0);
- }}
- function wipe(c) {
- if (!c) for (var w=0; w<w_txt.length; w++) document.getElementById("wipe"+w).style.visibility="hidden";
- else if (c<=w_txt.length) document.getElementById("wipe"+(c-1)).style.visibility="visible";
- setTimeout("wipe("+(++c%(w_txt.length+delay))+")", speed);
- }
- // ]]>
- </script>
- <title>{Title}</title>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <meta name="color:Background" content="#EEEEEE"/>
- <meta name="color:Text" content="#000000"/>
- <meta name="image:side1" content="http://24.media.tumblr.com/tumblr_m28blyvXzo1r5rmq0o1_500.gif"/>
- <meta name="image:side2" content="http://24.media.tumblr.com/tumblr_m2r07ft8ku1qgfh4lo1_500.gif"/>
- <meta name="image:Background" content="1"/>
- <meta name="text:Custom Link One Title" content= >
- <meta name="text:Custom Link One" content="http://" />
- <meta name="text:Custom Link Two Title" content= >
- <meta name="text:Custom Link Two" content="http://" />
- <meta name="text:Custom Link Three Title" content= >
- <meta name="text:Custom Link Three" content="http://" />
- <meta name="text:Custom Link Four Title" content= >
- <meta name="text:Custom Link Four" content="http://" />
- <meta name="text:Custom Link Five Title" content= >
- <meta name="text:Custom Link Five" content="http://" />
- <link href='http://fonts.googleapis.com/css?family=Karla' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Fredoka+One' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Sunshiney' rel='stylesheet' type='text/css'>
- <style type="text/css">
- @import url(http://fonts.googleapis.com/css?family=Short+Stack);
- @import url(http://fonts.googleapis.com/css?family=Amatic+SC);
- .kitty{padding: 0px; background-color: transparent;float: left; text-align: center; margin-top: 0px; margin-left: 0px; margin-right: 0px; margin-bottom:0px;}
- .kitty img {float: center; display: block; width: 200px; height:126px;margin-top:0px; margin-left:0px;border-top-right-radius:0px;
- border-bottom-right-radius:0px;
- border-top-left-radius:0px;
- border-bottom-left-radius:0px;}
- #meow {letter-spacing:0px; padding: 0px;}
- #meow img {display: inline; text-align:center; border: 0px solid ;}
- #meow img:hover {display: inline; height:126px; text-align:center; opacity:3; -webkit-transition: all 0.6s ease;border: 0px solid ;}
- .side1{float:right; letter-spacing:2px; padding: 0px; position:fixed; -webkit-transition: all 1s ease-in;opacity: 0;}
- .side1 img{width: 200px; height:126px; border: 0px;margin-top:0px;}
- .side1:hover{opacity:3;}
- a {color:;text-decoration:none;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
- .fufu {width:227px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
- .fufu:hover {-webkit-transform: translate(1em,0);-moz-transform: translate(1em,0);-o-transform: translate(1em,0);}
- #biter
- #bite a {display:block}
- #bite .death {margin-top:0px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
- #bite:hover .death {margin-top:0px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
- <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}
- <script type=”text/javascript”>
- //
- function desabilitaMenu(e)
- {
- if (window.Event)
- {
- if (e.which == 2 || e.which == 3)
- return false;
- }
- else
- {
- event.cancelBubble = true
- event.returnValue = false;
- return false;
- }
- }
- document.oncontextmenu = desabilitaMenu;
- document.onmousedown = desabilitaBotaoDireito;
- document.onmouseup = desabilitaBotaoDireito;
- </script>
- {/block:Ifnorightclick}
- #tumblr_controls{
- position:fixed !important;
- }
- .wrapper{
- margin: 0px auto;
- width: 802px;
- }
- .header{
- float: left;
- width: 100%;
- }
- .left{
- float: left;
- margin-right: 20px;
- width: 802px;
- }
- .right{
- float: right;
- width: 200px;
- background-color: {color:Background};
- }
- body {
- padding: 0px;
- margin: 0px;
- color:{color:text};
- font-family: 'short stack', cursive;
- font-size: 14px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- }
- a:link, a:active, a:visited{
- text-decoration: none;
- color:white;
- text-shadow:0px 0px 2px #6E6E6E;
- -webkit-transition: color 0.4s ease-out;
- -moz-transition: color 0.4s ease-out;
- }
- a:hover{
- color:white;
- -webkit-transition: color 0.4s ease-out;
- -moz-transition: color 0.4s ease-out;
- text-shadow:0px 0px 1px #000;
- }
- .entry {
- margin:0px;
- padding-left: 3px;
- padding-right: 3px;
- width: 250px;
- height: auto;
- float:left;
- text-align: center;
- background-color: #BDBDBD;
- font-family: 'short stack', cursive;
- font-size: 11px;
- line-height:14px;
- {block:IndexPage}
- width:250px;
- {/block:IndexPage}
- {block:PermalinkPage}
- width:500px;
- margin-left: 357x;
- {/block:PermalinkPage}
- -o-border-radius: 0px
- -webkit-border-radius: 0px;
- -moz-border-radius: 0px;
- border-radius: 0px;
- -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
- -moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
- box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
- }
- .entry .permalink{
- width:120px;
- position: absolute;
- margin-top: 0px;
- margin-left: 130px;
- font-size:12px;
- opacity: 0;
- height:14px;
- line-height:14px;
- -webkit-transition: all .3s ease;
- -moz-transition: all .3s ease;
- -o-transition: all .3s ease;
- transition: all .3s ease;
- }
- .entry:hover .permalink{
- margin-top: 0px;
- margin-left:130px;
- width: 120px;
- overflow:visible;
- background:
- height:14px;
- line-height:14px;
- -webkit-transition: opacity 0.2s linear; opacity: 1;
- -webkit-transition: all 0.2s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;
- moz-border-radius: 15px 15px 15px 15px;
- border-radius:0px 0px 0px 0px;
- }
- .countreblog {
- color: #ffffff;
- letter-spacing:1px;
- font-family: 'short stack', cursive;
- font-size:13px;
- line-height:20px;
- margin: 2px;
- background: transparent;
- border:1px solid rgba(0,0,0,0.1);
- padding:2px 2px;
- }
- div#sidebar{
- z-index:999999999999999;
- position:absolute !important;
- position:fixed !important;
- top:-80px;
- left: 200px;
- font-family:'short stack'cursive;
- font-size: 13px;
- background-color:transparent;
- -color:transparent;
- background-color: transparent;
- position:fixed !important;
- width:200px;
- height:auto;
- margin-top:150px;
- margin-left:-145px;
- padding:0px;
- background-color:transparent;
- background-color:transparent;
- z-index:10;
- overflow:hidden;
- -moz-box-shadow: 0px 0px 0px ;
- -webkit-box-shadow: 0px 0px 0px ;
- box-shadow: 0px 0px 0px ;
- moz-border-radius: 0px 0px 0px 0px;
- border-radius:0px 0px 0px 0px;
- }
- .candy{
- position: fixed;
- font-family: 'short stack', cursive;
- font-size: 13px;
- margin-top: 0px;
- margin-left:0px;
- background:black;
- font-weight:bold;
- }
- div#blogtitle {
- font-family: 'amatic sc' cursive;
- font-size: 60px;
- color:#fff;
- line-height: 60px;
- margin:0px;
- letter-spacing:2px;
- padding-bottom:10px;
- -webkit-transform: rotate(0deg);
- -moz-transform: rotate(0deg);
- text-shadow: 0px 0px 5px #6E6E6E;
- }
- #blogtitle:hover {
- color:#000;
- text-shadow:none;
- -webkit-transition: all .3s ease;
- -moz-transition: all .3s ease;
- -o-transition: all .3s ease;
- transition: all .3s ease;
- }
- .links{
- width: 200px;
- display:block;
- height:20px;
- background : #BDBDBD;
- font-size: 14px;
- line-height:20px;
- margin-top: 2px;
- margin:2px;
- color: #fff;
- font-family: 'short stack', cursive;
- text-align: center;
- text-transform:lowercase;
- padding : 1px;
- border: 1px none #000000;
- padding-bottom : 0px;
- -webkit-transition-duration: .9s;
- -webkit-transform: rotate(0deg);
- }
- .links:hover {
- text-transform:none;
- width:100px;
- background :
- -webkit-transition-duration: .9s;
- -webkit-transform: rotate(0deg);
- box-shadow: 0px 0px 0px rgba(50, 50, 50, 0.42);
- }
- #posts {
- width: 800px;
- margin-left:350px;
- margin-top:5px;
- float:left;
- font-family:'short stack', cursive;
- }
- .title{
- font-family: 'amatic sc', cursive;
- font-size: 40px;
- line-height:11px;
- color: black;
- font-weight: normal;
- }
- </style>
- {block:IndexPage}
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
- <script type="text/javascript">
- $(window).load(function () {
- var $content = $('#posts');
- $content.masonry({itemSelector: '.entry'}),
- $content.infinitescroll({
- navSelector : 'div#pagination',
- nextSelector : 'div#pagination a#nextPage',
- itemSelector : '.entry',
- loading: {
- finishedMsg: '',
- img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
- },
- bufferPx : 600,
- debug : false,
- },
- // call masonry as a callback.
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- // ensure that images load before adding to masonry layout
- $newElems.imagesLoaded(function(){
- $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
- });
- });
- });
- </script>
- {/block:IndexPage}
- <title>{title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <meta name="viewport" content="width=820" />
- </head>
- <body>
- <div class="wrapper">
- <div class="header">
- </div>
- <div id="sidebar">
- <center>
- <div id="blogtitle"><center><span id="wipe">{Title}
- </span></div>
- <div style=margin-top:-5px><div class="kitty"><div id="meow"><div class="side1"><center><img src="{image:side2}" /></center></div><center><img src="{image:side1}" /></center></div></div></div>
- {Description}
- <div id="bite">
- <h4><center>hover</center></h4>
- <div class= "death">
- <div align="center">
- {block:ifCustomLinkOneTitle}<div class="links"><a href="{text:Custom Link One}" class="links1">{text:Custom Link One Title}</a></div>{/block:ifCustomLinkOneTitle}
- {block:ifCustomLinkTwoTitle}<div class="links"><a href="{text:Custom Link Two}" class="links1">{text:Custom Link Two Title}</a></div>{/block:ifCustomLinkTwoTitle}
- {block:ifCustomLinkThreeTitle}<div class="links"><a href="{text:Custom Link Three}" class="links1">{text:Custom Link Three Title}</a></div>{/block:ifCustomLinkThreeTitle}
- {block:ifCustomLinkFourTitle}<div class="links"><a href="{text:Custom Link Four}" class="links1">{text:Custom Link Four Title}</a></div>{/block:ifCustomLinkFourTitle}
- {block:ifCustomLinkFiveTitle}<div class="links"><a href="{text:Custom Link Five}" class="links1">{text:Custom Link Five Title}</a></div>{/block:ifCustomLinkFiveTitle}
- <div class="links"><a href="http://s-ug4r.tumblr.com">theme</a> </div>
- </div>
- </div>
- </center></div>
- </center></div>
- <div class="left">
- <div id="posts">
- {block:Posts}
- <div class="entry">
- {block:IndexPage}
- <div class="permalink">
- <a href="{permalink}">{NoteCount} </a> ∆ <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
- {/block:IndexPage}
- {block:Text}
- <div style="padding-top:10px; padding-bottom:0px; padding-left:10px; padding-right:10px;">
- {block:Title}
- <a href="{permalink}"><span class="title">{Title}</span></a>
- {/block:Title}
- <span class="entrytext" style="line-height:12px;">{Body}</span>
- <a href="{Permalink}"></a></div>
- {block:IndexPage}
- <div align="right">
- <a href="{permalink}"></a></div>
- {/block:Date}{/block:IndexPage}
- {/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}
- {block:Link}
- {block:Photo}
- {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="250"/></a></div>{LinkCloseTag}{/block:IndexPage}
- {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500"/></a>{LinkCloseTag}{/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {block:IndexPage}
- <center>
- {Photoset-340}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Photoset-550}</center>
- {/block:PermalinkPage}
- {/block:Photoset}
- {block:Quote}
- {Quote}</span>
- {block:Source}<strong>{Source}</strong>{/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:340px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
- {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
- {/block:Audio}
- {block:Video}
- {block:IndexPage}
- <center>
- {Video-340}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Video-550}</center>
- {/block:PermalinkPage}
- {block:Video}
- {block:PermalinkPage}
- <center>
- <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} · {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
- {/block:PermalinkPage}
- {block:PostNotes}{PostNotes}
- {/block:PostNotes}
- </div>
- {/block:Posts}
- </div>
- </div>
- {block:IndexPage}
- {block:Pagination}
- <div id="pagination">
- {block:NextPage}
- <a id="nextPage" href="{NextPage}"> →</a>
- {/block:NextPage}
- {block:PreviousPage}
- <a href="{PreviousPage}">← </a>
- {/block:PreviousPage}
- </div>
- {/block:Pagination}
- {/block:IndexPage}
- </div>
- </body>
- <br>
- <br>
- </html>