Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <!-- THEME BY DEFECTSS, DO NOT COPY -->
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head> <!-- DEFAULT VARIABLES -->
- <meta name="color:background" content="#ffffff" />
- <meta name="color:text" content="#3d3d3d" />
- <meta name="color:border" content="#3d3d3d" />
- <meta name="color:entry" content="#F7F7F5" />
- <meta name="color:descricao" content="#F7F7F5" />
- <meta name="color:linkx" content="#F7F7F5" />
- <meta name="color:linkss" content="#3d3d3d" />
- <meta name="color:lateral" content="#3d3d3d" />
- <meta name="color:pt1" content="#000000" />
- <meta name="color:pt2" content="#FFFFFF" />
- <meta name="color:pt3" content="#F8F8F8" />
- <meta name="color:pt4" content="#656565" />
- <meta name="color:sidebar" content="#000000" />
- <meta name="color:bgtitulo" content="#ffffff" />
- <meta name="color:info" content="#000000" />
- <meta name="color:linksin" content="#ffffff" />
- <meta name="color:link" content="#470E1A" />
- <meta name="image:sidebar" content=""/>
- <meta name="image:background" content=""/>
- <meta name="text:titulo" content="like a skyscraper" />
- <meta name="text:titulo2" content="seja voce, mesmo que seja estranho" />
- <meta name="text:Link1" content="" />
- <meta name="text:Link1 Title" content="" />
- <meta name="text:Link2" content="" />
- <meta name="text:Link2 Title" content="" />
- <meta name="text:Link3" content="" />
- <meta name="text:Link3 Title" content="" />
- <meta name="text:Link4" content="" />
- <meta name="text:Link4 Title" content="" />
- <meta name="text:Link5" content="" />
- <meta name="text:Link5 Title" content="" />
- <meta name="text:Link6" content="" />
- <meta name="text:Link6 Title" content="" />
- <meta name="text:Link7" content="" />
- <meta name="text:Link7 Title" content="" />
- <meta name="text:Link8" content="" />
- <meta name="text:Link8 Title" content="" />
- <meta name="text:Link9" content="" />
- <meta name="text:Link9 Title" content="" />
- <meta name="text:Link10" content="" />
- <meta name="text:Link10 Title" content="" />
- <script type="text/javascript">
- // <![CDATA[
- // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
- var fgcolour="{color:pt1}"; // foreground colour
- var hlcolour="{color:pt2}"; // highlight colour
- var bgcolour="{color:pt3}"; // background colour
- var glcolour="{color:pt4}"; // colour of glow around letters
- var speed=66; // speed colours change, 1 second = 1000
- var delay=50; // how long to wait between wipes
- var alink="/"; // page to link text to (set to ="" for no link)
- /****************************
- *Multi-Wipe Neon Text Effect*
- *(c)2003-12 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var w_txt, w_txl;
- var w_flp=bgcolour;
- var w_sty=Math.floor(Math.random()*8);
- var w_cnt=-1;
- var wipes=new Array();
- var wrand=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, wiper, wipei;
- wiper=document.getElementById("wipe");
- w_txt=wiper.firstChild.nodeValue;
- w_txl=w_txt.length;
- while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
- for (i=0; i<w_txl; i++) {
- wipei=document.createElement("span");
- wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
- wipes[i]=wipei.style;
- wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=fgcolour;
- wiper.appendChild(wipei);
- }
- if (alink) {
- wiper.style.cursor="pointer";
- wiper.onclick=function() { top.location.href=alink; }
- }
- for (i=0; i<w_txl; i++) wrand[i]=i;
- wiper=setInterval("randwipe()", speed);
- }}
- function c(i, shade) {
- if (shade==bgcolour) wipes[i].textShadow="none";
- else wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=shade;
- }
- function randwipe() {
- var w_old;
- if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
- else {
- w_cnt=-1;
- w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- w_old=w_sty;
- while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
- }
- }
- function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
- function wipe0() { // curtains
- if (w_cnt<Math.floor(w_txl/2)) {
- c(w_cnt, hlcolour);
- c(w_txl-w_cnt-1, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt, w_flp);
- c(w_txl-w_cnt-1, w_flp);
- }
- }
- function wipe1() { // random
- var i, rand, temp;
- if (w_cnt==0) {
- for (i=0; i<w_txl; i++) {
- rand=Math.floor(Math.random()*w_txl);
- temp=wrand[i];
- wrand[i]=wrand[rand];
- wrand[rand]=temp;
- }
- }
- if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
- }
- function wipe2() { // forwards
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- }
- function wipe3() { // backwards
- if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
- }
- function wipe4() { // searchlight
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
- if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
- if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- }
- function wipe5() { // fade
- var i;
- if (w_cnt<w_txl+3) {
- var start=(w_flp==fgcolour)?bgcolour:fgcolour;
- var temp="#";
- for (i=1; i<6; i+=2) {
- var hex1=parseInt(start.substring(i,i+2),16);
- var hex2=parseInt(w_flp.substring(i,i+2),16);
- temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
- }
- for (i=0; i<w_txl; i++) c(i, temp);
- }
- }
- function wipe6() { // flash
- var i;
- if (w_cnt<6*Math.floor(w_txl/6)+3) {
- if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
- else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
- else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
- }
- }
- function wipe7() { // checkerboard
- var qtr=Math.floor(w_txl/4);
- if (w_cnt<qtr) {
- c(w_cnt, hlcolour);
- c(w_cnt+2*qtr, hlcolour);
- }
- else if (w_cnt<2*qtr) {
- c(w_cnt-qtr, w_flp);
- c(w_cnt+qtr, w_flp);
- }
- else if (w_cnt<3*qtr) {
- c(w_cnt-qtr, hlcolour);
- c(w_cnt+qtr, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt-2*qtr, w_flp);
- c(w_cnt, w_flp);
- }
- }
- // ]]>
- </script>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- {block:IfEnableEndlessScrolling}
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- {/block:IfEnableEndlessScrolling}
- <style type="text/css">
- body {background-color:{color:background}; color:{color:text}; font-family: verdana; font-size:11px; line-height:110%; margin:0px; background-image:url('{image:background}'); background-attachment: fixed}
- a {color:{color:link}; text-decoration: none; font-size: 9px}
- a:hover {color:{color:text}; text-decoration: none}
- p{margin: 1px 0 0 0}
- blockquote{margin: 1px 0 0 5px; border-left: 3px solid; color:#000000; padding:0 0 0 5px;}
- #sidebar{text-align:center; position:fixed;; width:180px; height: 224px; overflow:hidden; -webkit-box-shadow: 0px 8px 6px -5px #b3b3b3; -moz-box-shadow: 0px 8px 6px -5px #b3b3b3; box-shadow: 0px 8px 6px -5px #b3b3b3; z-index:100; margin-left: 230px; margin-top: 50px; border: 3px solid {color:border}}
- #simg{width:180px; height: 224px; position:absolute; top:-3px; left:-3px; -webkit-transition: all 0.9s ease-in-out-moz-transition: all 0.9s ease-in-out; -o-transition: all 0.9s ease-in-out; transition: all 0.9s ease-in-out; border: 3px solid {color:border}; }
- #simg img{width:180px; height:224px; -moz-user-select: none; -webkit-user-select: none;
- /* this will work for QtWebKit in future */-webkit-user-drag: none; }
- #sidebar:hover #simg{margin-left:240px; -webkit-transition: all 0.9s ease-in-out; -moz-transition: all 0.9s ease-in-out; -o-transition: all 0.9s ease-in-out; transition: all 0.9s ease-in-out;}
- .stext{text-align: center; width: 100%; height: 100%; color:{color:descricao}; background-color: {color:sidebar}; margin-left: -240px; -webkit-transition: all 0.9s ease-in-out; -moz-transition: all 0.9s ease-in-out; -o-transition: all 0.9s ease-in-out; transition: all 0.9s ease-in-out; font-familly: verdana; font-size: 9px;}
- #sidebar:hover .stext{margin-left:0px; -webkit-transition: all 0.9s ease-in-out; -moz-transition: all 0.9s ease-in-out; -o-transition: all 0.9s ease-in-out; transition: all 0.9s ease-in-out;}
- #blogtitle{font-family: MS Sans Serif; font-size:15px; color:{color:descricao}; padding: 15px 15px 5px 15px; line-height:110%; text-align:center;}
- .desc{padding: 5px 20px;}
- #ttl {float: left; margin-top: 19px; margin-left: 230px; width: 170px; background-color: {color:bgtitulo}; color: #000; padding: 5px; font-size: 22px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: 0px; font-family: georgia;text-transform: ; height: 18px; border: 0px solid #FFF; border: 3px solid {color:border}; border-top-left-radius:20px; }
- #ttl a{font-size: 12px; color: ; }
- #creditt {font-family: verdana; margin-top:149px; margin-left:85px; height:21px; border-bottom: 0px solid #E4CBB7; background-color: #transp; z-index:2; padding: 0px; width: 270px; color: #000; padding: 4px; text-align: justify; font-size: 9px; position:fixed; -moz-transform: rotate(-90deg); -webkit-transform: rotate(-90deg);}
- #topbar #blogtitle {margin-top:40px; margin-right:10px; font:34px 'LavanderiaRegular', Cookie; color:#D8D1C2; background:#trans; text-align:center; width:516px; float:right; position:relative; z-index:4; line-height:40%; margin-bottom:9px;}
- #masoq2{text-align: justify; font-size: 9px; font-family: verdana; position: fixed; margin-left: 225px; width: 224px; height: 26px; background-color: transparent; color: #000000; padding: 4px; margin-top: 1px; background-attachment: fixed; margin-top: 301px; }
- .links4 {position: absolute; width: 260px; margin-left:0px; margin-top:0px; padding: 0px; text-align: center; z-index:3;}
- .links4 a {float: left; display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; margin-right: 1px; margin-bottom:1px; width: 45px; background-color: {color:linkx}; color:{color:linkss}; text-decoration: none; text-transform: lowercase; line-height:20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
- .links4 a:hover{text-align: center; background-color: #fff; color:#000; letter-spacing:0px;}
- #masoq{text-align: justify; font-size: 9px; font-family: verdana; position: fixed; margin-left: 225px; width: 204px; height: 56px; background-color: transparent; color: #000000; padding: 4px; margin-top: 1px; background-attachment: fixed; margin-top: 280px;}
- .links3 {position: absolute; width: 260px; margin-left:0px; margin-top:0px; padding: 0px; text-align: center; z-index:3; }
- .links3 a {float: left; display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; margin-right: 1px; margin-bottom:1px; width: 45px; background-color: {color:linkx}; color:{color:linkss}; text-decoration: none; text-transform: lowercase; line-height:20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
- .links3 a:hover{text-align: center; background-color: #fff; color:#000; letter-spacing:0px;}
- blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px; }
- blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
- blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
- blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
- blockquote img{max-width: 470px!important}
- blockquote blockquote img{max-width: 450px!important}
- blockquote blockquote blockquote img{max-width: 430px!important}
- blockquote blockquote blockquote blockquote img{max-width: 410px!important}
- #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width: 935px; }
- #oquevemnadireita {float: left; margin-left:413px; margin-top: 19px; position: relative; border: 3px solid {color:border}; border-top-right-radius:22px; }
- .babspost {width: 500px; background-color: {color:entry}; padding: 10px; border-bottom: 0px solid #transparent; text-align: justify; font-family: verdana; font-size: 11px; border-top-right-radius:20px;}
- .oipvc {margin-left: 70px; margin-top: 160px;float: left;font-family: georgia; position:fixed; font-size: 28px; text-align: center; background-color: {color:background};width: 260px; -moz-transform: rotate(-90deg); -webkit-transform: rotate(-90deg);}
- h1 {font-family: georgia; text-align: center; font-size: 17px; color: {color:text}; font-weight: normal; line-height: 17px;}
- h1 a {text-align: center; font-size: 17px; color: {color:text}; font-weight: normal; line-height: 17px;}
- h1 a:hover {text-align: center; font-size: 17px; color: {color:text}; font-weight: normal; line-height: 17px;}
- .image {text-align: center; border: 0px}
- .image img {max-width: 500px; margin-bottom: 2px }
- .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
- .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
- .oiqqtts a, a:hover{text-transform: none;}
- .chat {line-height: 13px; list-style: none }
- .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
- .person1 {color: {color:text}; padding: 2px; }
- .person1 .label {font-weight: bold; color:{color:text}}
- .person2 {color: {color:text}; padding: 2px; }
- .person2 .label {font-weight: bold; color:{color:text}}
- .player {background-color: #000; text-align: left; display:block;}
- .question{background: {color:post}; font-size: 10px; font-weight:bold; color: {color:text}; padding: 10px;}
- .asker {width: 490px; background-color: {color:post}; color:{color:text};
- padding: 10px}
- .asker img{float: left; margin: 0px 5px 3px 0}
- .asker a{font-size: 9px; color:{color:link}; text-transform: lowercase; line-height: 8px; padding: 0; margin: 0; font-family: verdana;}
- .asker a:hover{font-size: 9px; color:{color:link}; text-transform: lowercase; line-height:8px; padding: 0; margin: 0; font-family: verdana;}
- .answer {padding: 5px 0 0 0}
- #oidata {text-align: left; font-size: 9px; background-color: {color:info}; color: {color:linksin}; font-family: verdana; text-transform: lowercase; z-index: 11; padding-right: 10px;padding-left: 10px;padding-top: 5px; width: 492px; height:30px; margin-left: -6px; border-left: 3px solid {color:lateral}}
- #oidata a {font-size: 9px; color: {color:linksin};}
- .tags {color:{color:linksin}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase;}
- .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
- #cap {width: 500px; margin-top: -2px;}
- .source {display: none;}
- .notes {width: 520px; padding: 0px; margin-top: 1px; margin-bottom: 10px; font-size: 9px; text-align: right}
- ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
- ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
- .notes img{display: none; border:0px}
- ::-webkit-scrollbar{width:7px;height:3px;}
- ::-webkit-scrollbar-button:start:decrement
- ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
- ::-webkit-scrollbar-track-piece{background-color: {color:sidebar};}
- ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll}; }
- ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- </style>
- </head>
- <body>
- <div class="oipvc">{block:pagination}{block:previousPage} <a href="{PreviousPage}"><big><big><big><big><big><big><big>←</big></big></big></big></big></big></big> </a>{/block:previousPage}{block:NextPage} <a href="{NextPage}"><big><big><big><big><big><big><big>→</big></big></big></big></big></big></big></a> {/block:NextPage}{/block:pagination}</div>
- <div id="sidebar">
- <div id="simg"><img src="{image:sidebar}"></div>
- <div class="stext">
- <div id="blogtitle">{text:titulo2}</div>
- <div class="desc">{description}</div>
- </div>
- </div></div></div></div></div>
- <div id="ttl"><span id="wipe">{text:titulo}</span></div>
- <div id="creditt"><center> theme by <b>defectss</b>, dtls <b>luvtopia</b>; do not copy.</center></div></div></div></a></div></div></div>
- <div id="masoq"><div class="links3">
- <a href="{text:Link1}">{text:Link1 Title}</a>
- <a href="{text:Link2}">{text:Link2 Title}</a>
- <a href="{text:Link3}">{text:Link3 Title}</a>
- <a href="{text:Link4}">{text:Link4 Title}</a>
- </div></div>
- <div id="masoq2"><div class="links4">
- <a href="{text:Link5}">{text:Link5 Title}</a>
- <a href="{text:Link6}">{text:Link6 Title}</a>
- <a href="{text:Link7}">{text:Link7 Title}</a>
- <a href="{text:Link8}">{text:Link8 Title}</a>
- </div></div>
- <div id="oquevemnadireita">
- {block:Posts}
- <div class="babspost">
- {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
- {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
- {block:Photoset}{Photoset-500}{/block:Photoset}
- {block:Quote}
- <div class="oiqqtt">“{Quote}”</div>
- {block:Source}<div class="oiqqtts"> — {Source}</div>
- {/block:Source}
- {/block:Quote}
- {block:Link}
- <h1><a href="{URL}" {Target}>{Name}</a></h1>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
- <div class="chat"><ul>{block:Lines}
- <li class="person{UserNumber}">{block:Label}
- <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
- {/block:Chat}
- {block:Audio}
- <div class="player">{AudioPlayerBlack}</div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Video}{Video-500}{/block:Video}
- {block:Answer}
- <div class="asker"><img src="{AskerPortraitURL-48}"> <small><b>{Asker}</b></small> <small><b>whispered: </b></small><br> "{Question}"</div><br>
- <div class="answer">{Answer}</div>
- <br>
- {/block:Answer}
- <div id="cap">
- {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
- {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
- {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
- <div class="source">{block:ContentSource}<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}</div></div>
- <br>
- <div id="oidata">
- {block:Date}<div class="tags">{block:HasTags}<b>enter their indirect:</b> {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}<br>{/block:HasTags}</div>
- <a href="{Permalink}">{TimeAgo}</a>{block:NoteCount}; <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:IndexPage}; <a href="{ReblogUrl}" target="_blank">→ click to <b>orgasm</b></a>{/block:IndexPage}
- {block:RebloggedFrom}<br>posted: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom}, reblogged: <a href="{ReblogParentURL}">{ReblogParentName}</a>
- {/block:RebloggedFrom}
- </div>
- </div>{/block:Date}</font>
- {/block:Posts}
- {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment