Advertisement
Decrepitar

Theme 46

Jun 20th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.23 KB | None | 0 0
  1.  
  2.  
  3. <!--------------
  4. __________ THEMES DECREPITAR __________
  5.  
  6.  
  7. BASE POR I-NSEGUR-A
  8. SEM COPIAS , PFV ;
  9.  
  10.  
  11. Nada de copias , nada de plágios , nada de inspiração ;
  12. ok baby ?
  13. THEMES DECREPITAR ;
  14.  
  15. Raquellopes , Brasillian ,
  16.  
  17. ---------------->
  18.  
  19.  
  20. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  21.  
  22. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  23.  
  24. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  25.  
  26. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  27.  
  28.  
  29.  
  30. <head>
  31.  
  32. <script type="text/javascript">
  33.  
  34. // <![CDATA[
  35.  
  36. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  37.  
  38. var fgcolour="#656565"; // foreground colour
  39.  
  40. var hlcolour="#b5b5b5"; // highlight colour
  41.  
  42. var bgcolour="#FFFFFF"; // background colour
  43.  
  44. var glcolour="#f8f8f8"; // colour of glow around letters
  45.  
  46. var speed=66; // speed colours change, 1 second = 1000
  47.  
  48. var delay=50; // how long to wait between wipes
  49.  
  50. var alink="/"; // page to link text to (set to ="" for no link)
  51.  
  52.  
  53.  
  54. /****************************
  55.  
  56. *Multi-Wipe Neon Text Effect*
  57.  
  58. *(c)2003-12 mf2fm web-design*
  59.  
  60. * http://www.mf2fm.com/rv *
  61.  
  62. * DON'T EDIT BELOW THIS BOX *
  63.  
  64. ****************************/
  65.  
  66. var w_txt, w_txl;
  67.  
  68. var w_flp=bgcolour;
  69.  
  70. var w_sty=Math.floor(Math.random()*8);
  71.  
  72. var w_cnt=-1;
  73.  
  74. var wipes=new Array();
  75.  
  76. var wrand=new Array();
  77.  
  78. window.onload=function() { if (document.getElementById) {
  79.  
  80. var i, wiper, wipei;
  81.  
  82. wiper=document.getElementById("wipe");
  83.  
  84. w_txt=wiper.firstChild.nodeValue;
  85.  
  86. w_txl=w_txt.length;
  87.  
  88. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  89.  
  90. for (i=0; i<w_txl; i++) {
  91.  
  92. wipei=document.createElement("span");
  93.  
  94. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  95.  
  96. wipes[i]=wipei.style;
  97.  
  98. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  99.  
  100. wipes[i].color=fgcolour;
  101.  
  102. wiper.appendChild(wipei);
  103.  
  104. }
  105.  
  106. if (alink) {
  107.  
  108. wiper.style.cursor="pointer";
  109.  
  110. wiper.onclick=function() { top.location.href=alink; }
  111.  
  112. }
  113.  
  114. for (i=0; i<w_txl; i++) wrand[i]=i;
  115.  
  116. wiper=setInterval("randwipe()", speed);
  117.  
  118. }}
  119.  
  120.  
  121.  
  122. function c(i, shade) {
  123.  
  124. if (shade==bgcolour) wipes[i].textShadow="none";
  125.  
  126. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  127.  
  128. wipes[i].color=shade;
  129.  
  130. }
  131.  
  132.  
  133.  
  134. function randwipe() {
  135.  
  136. var w_old;
  137.  
  138. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  139.  
  140. else {
  141.  
  142. w_cnt=-1;
  143.  
  144. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  145.  
  146. w_old=w_sty;
  147.  
  148. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  149.  
  150. }
  151.  
  152. }
  153.  
  154.  
  155.  
  156. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  157.  
  158.  
  159.  
  160. function wipe0() { // curtains
  161.  
  162. if (w_cnt<Math.floor(w_txl/2)) {
  163.  
  164. c(w_cnt, hlcolour);
  165.  
  166. c(w_txl-w_cnt-1, hlcolour);
  167.  
  168. }
  169.  
  170. else if (w_cnt<w_txl) {
  171.  
  172. c(w_cnt, w_flp);
  173.  
  174. c(w_txl-w_cnt-1, w_flp);
  175.  
  176. }
  177.  
  178. }
  179.  
  180.  
  181.  
  182. function wipe1() { // random
  183.  
  184. var i, rand, temp;
  185.  
  186. if (w_cnt==0) {
  187.  
  188. for (i=0; i<w_txl; i++) {
  189.  
  190. rand=Math.floor(Math.random()*w_txl);
  191.  
  192. temp=wrand[i];
  193.  
  194. wrand[i]=wrand[rand];
  195.  
  196. wrand[rand]=temp;
  197.  
  198. }
  199.  
  200. }
  201.  
  202. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  203.  
  204. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  205.  
  206. }
  207.  
  208.  
  209.  
  210. function wipe2() { // forwards
  211.  
  212. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  213.  
  214. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  215.  
  216. }
  217.  
  218.  
  219.  
  220. function wipe3() { // backwards
  221.  
  222. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  223.  
  224. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  225.  
  226. }
  227.  
  228.  
  229.  
  230. function wipe4() { // searchlight
  231.  
  232. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  233.  
  234. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  235.  
  236. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  237.  
  238. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  239.  
  240. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  241.  
  242. }
  243.  
  244.  
  245.  
  246. function wipe5() { // fade
  247.  
  248. var i;
  249.  
  250. if (w_cnt<w_txl+3) {
  251.  
  252. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  253.  
  254. var temp="#";
  255.  
  256. for (i=1; i<6; i+=2) {
  257.  
  258. var hex1=parseInt(start.substring(i,i+2),16);
  259.  
  260. var hex2=parseInt(w_flp.substring(i,i+2),16);
  261.  
  262. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  263.  
  264. }
  265.  
  266. for (i=0; i<w_txl; i++) c(i, temp);
  267.  
  268. }
  269.  
  270. }
  271.  
  272.  
  273.  
  274. function wipe6() { // flash
  275.  
  276. var i;
  277.  
  278. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  279.  
  280. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  281.  
  282. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  283.  
  284. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  285.  
  286. }
  287.  
  288. }
  289.  
  290.  
  291.  
  292. function wipe7() { // checkerboard
  293.  
  294. var qtr=Math.floor(w_txl/4);
  295.  
  296. if (w_cnt<qtr) {
  297.  
  298. c(w_cnt, hlcolour);
  299.  
  300. c(w_cnt+2*qtr, hlcolour);
  301.  
  302. }
  303.  
  304. else if (w_cnt<2*qtr) {
  305.  
  306. c(w_cnt-qtr, w_flp);
  307.  
  308. c(w_cnt+qtr, w_flp);
  309.  
  310. }
  311.  
  312. else if (w_cnt<3*qtr) {
  313.  
  314. c(w_cnt-qtr, hlcolour);
  315.  
  316. c(w_cnt+qtr, hlcolour);
  317.  
  318. }
  319.  
  320. else if (w_cnt<w_txl) {
  321.  
  322. c(w_cnt-2*qtr, w_flp);
  323.  
  324. c(w_cnt, w_flp);
  325.  
  326. }
  327.  
  328. }
  329.  
  330. // ]]>
  331.  
  332. </script>
  333.  
  334.  
  335. <meta name="color:background" content="#eeeeee" />
  336. <meta name="color:text" content="#838383" />
  337. <meta name="color:post" content="#ffffff" />
  338. <meta name="color:scroll" content="#c9c9c9" />
  339. <meta name="color:link text" content="#838383"/>
  340. <meta name="color:link text hover" content="#fbfbfb"/>
  341. <meta name="color:bg ask" content="#FFF" />
  342. <meta name="image:background" content=""/>
  343. <meta name="color:faixa1" content="#ebe6e6" />
  344. <meta name="color:faixa2" content="#d3d1d0" />
  345.  
  346. <meta name="image:foto" content="http://static.tumblr.com/6f7274515c51fc80572ed2653301155b/gdekeu9/ABsmkwuj4/tumblr_static_tumblr_mj1hcb5spr1s6cw6lo1_500.jpg"/>
  347. <meta name="text:frase" content="Eu e voce aqui ..."/>
  348. <meta name="text:frase2" content="Ontem eu chorei , hoje eu me arrependo de ter feito isso !"/>
  349. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  350. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  351. <meta name="text:Link1" content="/" />
  352. <meta name="text:Link1 Title" content="1st page" />
  353. <meta name="text:Link2" content="/ask" />
  354. <meta name="text:Link2 Title" content="ask me" />
  355. <meta name="text:Link3" content="/submit" />
  356. <meta name="text:Link3 Title" content="submit" />
  357. <meta name="text:Link4" content="#" />
  358. <meta name="text:Link4 Title" content="link" />
  359. <meta name="text:Link5" content="#" />
  360. <meta name="text:Link5 Title" content=" links" />
  361.  
  362. <meta name="color:frase" content="#616161" />
  363.  
  364. <meta name="color:linkss" content="#b1b1b1" />
  365.  
  366.  
  367.  
  368.  
  369. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  370.  
  371. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  372.  
  373. <script type="text/javascript">
  374. $(window).load(function(){
  375. var $wall = $('#baseruby');
  376. $wall.imagesLoaded(function(){
  377. $wall.masonry({
  378. itemSelector: '.jubs',
  379. isAnimated : true
  380. });
  381. });
  382. $wall.infinitescroll({
  383. navSelector : "div#navigation",
  384. nextSelector : "div#navigation a#nextPage",
  385. itemSelector : '.jubs',
  386. loadingImg : "http://static.tumblr.com/kwz90l7/bIdlst7ub/transparent.png",
  387. loadingText : " ",
  388. donetext : " ",
  389. extraScrollPx : 9000,
  390. bufferPx : 10000,
  391. debug : false,
  392. errorCallback: function() {
  393. $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');
  394. }},
  395. function( newElements ) {
  396. var $newElems = $( newElements );
  397. $newElems.hide();
  398. $newElems.imagesLoaded(function(){
  399. $wall.masonry( 'appended', $newElems, {isAnimated: true, animationOptions: {duration: 750, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  400. });
  401. }); $('#baseruby').show(500);
  402. });
  403. </script>
  404.  
  405.  
  406.  
  407.  
  408.  
  409. <link href='http://fonts.googleapis.com/css?family=Original+Surfer|Akronim' rel='stylesheet' type='text/css'>
  410.  
  411.  
  412.  
  413. </script>
  414.  
  415.  
  416. <link href='http://fonts.googleapis.com/css?family=Princess+Sofia|Crafty+Girls|Stalemate|Allura|Sevillana|Great+Vibes|Mouse+Memoirs|Merienda' rel='stylesheet' type='text/css'>
  417. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  418.  
  419. <link href='http://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Grand+Hotel' rel='stylesheet' type='text/css'>
  420.  
  421.  
  422. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  423.  
  424. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  425. <link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  426. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  427.  
  428. <link href='http://fonts.googleapis.com/css?family=Megrim' rel='stylesheet' type='text/css'>
  429.  
  430. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  431.  
  432. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  433.  
  434. <link href='http://fonts.googleapis.com/css?family=Snippet|Sue+Ellen+Francisco|Andika|Delius+Swash+Caps|Lobster|Redressed|Tangerine|Rancho|Rochester|Lobster+Two|Dancing+Script|Pacifico|Crafty+Girls' rel='stylesheet' type='text/css'>
  435.  
  436. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  437. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  438. <link href='http://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
  439. <link href='http://fonts.googleapis.com/css?family=Alex+Brush|Qwigley|Rochester' rel='stylesheet' type='text/css'>
  440. <link href='http://fonts.googleapis.com/css?family=Bilbo+Swash+Caps|Lovers+Quarrel|Josefin+Sans|Allura|Bilbo|Sevillana|Great+Vibes|Ruthie|Italianno|Monsieur+La+Doulaise|Playball' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Bilbo+Swash+Caps' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Croissant+One|Text+Me+One|Iceland' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Snippet|Sue+Ellen+Francisco|Andika|Delius+Swash+Caps|Lobster|Redressed|Tangerine|Rancho|Rochester|Lobster+Two|Dancing+Script|Pacifico|Crafty+Girls' rel='stylesheet' type='text/css'>
  441.  
  442.  
  443.  
  444.  
  445. <title>{Title}</title>
  446.  
  447. <script type="text/javascript"> function tb8_makeArray(n){ this.length = n; return this.length; } tb8_messages = new tb8_makeArray(3); tb8_messages[0] = "{Title}"; tb8_messages[1] = "{Title}"; tb8_messages[2] = "{Title}"; tb8_rptType = 'infinite'; tb8_rptNbr = 5; tb8_speed = 100; tb8_delay = 2000; var tb8_counter=1; var tb8_currMsg=0; var tb8_tekst =""; var tb8_i=0; var tb8_TID = null; function tb8_pisi(){ tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1); document.title = tb8_tekst; tb8_sp=tb8_speed; tb8_i++; if (tb8_i==tb8_messages[tb8_currMsg].length){ tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay; } if (tb8_currMsg == tb8_messages.length){ if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){ clearTimeout(tb8_TID); return; } tb8_counter++; tb8_currMsg = 0; } tb8_TID = setTimeout("tb8_pisi()", tb8_sp); } tb8_pisi() </script>
  448.  
  449. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  450.  
  451. <link rel="shortcut icon" href="{Favicon}" />
  452. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  453. <style type="text/css">
  454.  
  455.  
  456.  
  457. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  458. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 10px; background-image:url('{image:background}'); background-attachment: fixed; }
  459.  
  460. a:visited, a:link, a:active {text-decoration: none; color:{color:link text};}
  461. a:hover{color:{color:link text hover};};
  462.  
  463. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  464. blockquote {margin: 5px 5px 5px 5px; border-left: 1px solid {color:background}; padding-left: 5px; }
  465. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  466. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  467. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  468.  
  469. blockquote img{max-width: 330px!important}
  470. blockquote blockquote img{max-width: 300px!important}
  471. blockquote blockquote blockquote img{max-width: 280px!important}
  472. blockquote blockquote blockquote blockquote img{max-width: 270px!important}
  473. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  474. #baseruby {margin-left: 450px; width: 700px;opacity:0.75;}
  475. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  476. .jubs { width:290px;background-color:{color:post} ; text-align: justify; padding: 9px; float: left; position: relative; -webkit-transition: opacity 0.9s linear;-moz-transition: opacity 0.9s linear;-webkit-transition: all 0.9s ease-in-out;-moz-transition: all 0.9s ease-in-out;-o-transition: all 0.9s ease-in-out;border:1px solid{color:text};float: left;margin:2px ;{block:PermalinkPage}width:400px {/block:PermalinkPage}; }
  477. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  478. #title {font-family: georgia; letter-spacing: -1px;font-size: 16px; font-weight:; font-style: none; letter-spacing:0px; line-height: 18px;text-align: center;}
  479.  
  480. #title a{background: ; padding: 5px; color: {color:text};}
  481. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  482. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  483. .person1 {color: {color:text};; padding: 2px; }
  484. .person1 .label {font-weight: bold; color:{color:text};}
  485. .person2 {color: {color:text};; padding: 2px; }
  486. .person2 .label {font-weight: bold; color:{color:text};}
  487.  
  488. .player {background-color: #000; text-align: left; display:block;}
  489.  
  490. .asking {text-align:center; color:{color:text}; font:9px calibri; text-transform:uppercase; opacity:1; margin-top:5px;}
  491. .asking a{color:{color:text}; text-transform:uppercase; margin-top:5px;}
  492. .asking img {width:45px; vertical-align:middle; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;padding:3px;opacity:1;border:1px solid {color:bg ask};}
  493. .asking img:hover {webkit-filter: grayscale(1);-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%);filter: url(desaturate.svg#greyscale);filter: gray; filter: grayscale(100%);-webkit-transition: all 0.4s linear;-moz-transition: all 0.4s linear;transition: all 0.4s linear;opacity:1}
  494.  
  495. .question {color:{color:text};font-size: 11px;font-weight: normal;fon-family: verdana;line-height:95%;background: {color:bg ask};position: relative;min-height:70px;padding:10px 15px;margin-bottom:2px;margin-right:-10px;}
  496.  
  497. .questionarrow {font-size:30px;color:{color:bg ask};vertical-align:middle;margin-left:-5px!important;}
  498.  
  499.  
  500. .xquote {text-align:justify; verdana; font-size: 10px; line-height:10px; padding:3px;margin-left:02px; border-bottom:1px solid {color:background};margin-bottom:3px; margin-top:5px; };}
  501. .xquotesource {text-align: center ; text-transform: none; margin-bottom:5px; font-size: 09px; font-weight: bold; color:{color:tags};}
  502. .xquotesource a, a:hover{text-transform: none;color:{color:text};}
  503.  
  504. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  505. /*--✱-- SCROLLBAR BY I-NSEGIR-A SE USAR CREDITE --✱--*/
  506. ::-webkit-scrollbar-thumb:vertical {
  507. background-color:{color:scroll};background-image:url('{image:fundinho}');
  508. height:70px;
  509. border:1px dashed {color:tags};
  510. }
  511.  
  512. ::-webkit-scrollbar-button:vertical {
  513. height:0px;
  514. display: block;
  515. background:{color:scroll};background-image:url('{image:fundinho}');
  516. }
  517.  
  518. ::-webkit-scrollbar {
  519. background-color:{color:sidebar};
  520. height:0px;
  521. width:5px;
  522. }
  523. #tumblr_controls{position: fixed!important;z-index:15;}
  524.  
  525. iframe#tumblr_controls { right:3px !important; position: fixed !important; -webkit-transition: opacity 0.5s linear; opacity: 0.6; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; transition: all 0.8s ease-out;}
  526.  
  527. iframe#tumblr_controls:hover{ -webkit-transition: opacity 0.7s linear; opacity: 1; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
  528.  
  529.  
  530. #baseruby img{max-width:290px;-webkit-filter: grayscale(0%);transition-duration: 1s;-moz-transition-duration: 1s;-webkit-transition-duration: 1s;
  531. -o-transition-duration: 1s;opacity:1.0;{block:PermalinkPage}max-width:400px {/block:PermalinkPage};}
  532.  
  533. #baseruby img:hover { -webkit-filter: grayscale(100%);{block:PermalinkPage}max-width:400px {/block:PermalinkPage};}
  534.  
  535. .photoset{{block:IfTwoColumns}max-width: 300px;{/block:IfTwoColumns};max-width: 400px;}
  536.  
  537. .hehe {opacity: 0.8; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;border-top:1px solid {color:background};}
  538. .hehe:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  539. i, em {color: {color:tags};}s {color: {color:tags};}u {text-decoration: none; border-bottom: 1px dashed {color:tags};}
  540. #tags {color: {color:text}; font-size: 10px; font-family: Iceland;text-align: center; }
  541. #tags a {font-size: 11px; font-family: Iceland; color:{color:text};text-transform: uppercase;text-align: center;{block:IfTwoColumns} ;margin: 2px 0 0 2px; {/block:IfTwoColumns};}
  542. #tags a:hover{color:{color:tags};}
  543.  
  544. #info {text-align: left; margin-top:2px; font-size: 11px; font-family: Iceland; text-transform: uppercase; z-index: 11;background-color:{color:background};background-image:url('{image:bg notes}');}
  545. #info a {font-size: 12px; text-transform: uppercase;color:{color:text};{block:IfTwoColumns} ;margin: 2px 0 0 2px; {/block:IfTwoColumns};}
  546. #info a:hover{color:{color:linkh};}
  547. a:visited, a:link, a:active {text-decoration: none; color:{color:link text};text-shadow: 0 0 5px {color:post};}
  548. a:hover{text-shadow: 0 0 9px {color:post};text-decoration: none;color:{color:linkh}; }
  549. /** THEME POR DECREPITAR BASE DE POST I-NSEGUR-A DONT' COPIES**/
  550. /*SIDEBAR NÃO OUSE MEXER NESSA PORRA CARALHO --' */
  551.  
  552. #sidebar {position: fixed; width:170px; height:200px; margin-left:250px; margin-top:50px; z-index:100; border:1px solid ;color:{color:links};}
  553.  
  554. .fotoside img {display: block;width:160px; height:190px;margin-left:5px; margin-top:5px;-webkit-border-radius: 0px 0px 0px 0px ;-webkit-transition: all 1s ease-in-out;
  555. -moz-transition: all 1s ease-in-out;
  556. -o-transition: all 1s ease-in-out;
  557. -ms-transition: all 1s ease-in-out;position:fixed; opacity: 0.85;-webkit-transform: rotate(0deg) ; }
  558.  
  559. .fotoside:hover img{ -webkit-border-radius: 50px 0px 50px 0px ; -webkit-transform: rotate(0deg) ; -webkit-transition: all 0.5s ease-in-out }
  560.  
  561. #linka {width: 130px; margin-top: 260px; margin-left: 293px; position:fixed;z-index:99999999999999999999999999999;}
  562.  
  563. #linka a{display:inline-block ; font-family: 'arial'; background-color:#transp.; color: {color:linkss}; width: 60px;; font-size: 8px; height:13px;line-height:13px;text-transform:uppercase; -webkit-transition-duration: .66s;margin: 1px 0 0px 0;opacity:0.71;border: 1px solid {color:borda}}
  564.  
  565.  
  566. .linka {width: 40px; margin-top: 260px; margin-left: 248px; position:fixed;z-index:99999999999999999999999999999;}
  567.  
  568. .linka a{display:inline-block ; font-family: 'arial'; background-color:#transp.; color: {color:linkss}; width: 40px;; font-size: 8px; height:29px;line-height:29px;text-transform:uppercase; -webkit-transition-duration: .66s;margin: 1px 0 0px 0;opacity:0.71;border: 1px solid {color:borda}}
  569.  
  570. #frase {background-color: ; font-weight: normal; letter-spacing: 0px; color: {color:frase}; text-align:right; width: 170px; line-height: 20px; position: absolute; -moz-transition: all 0.4s ease-out; font-family:'Alex Brush'; margin-top:20px; margin-left:250px; text-transform: none; position: fixed; padding: 2px; font-size: 20px;border-bottom:1px solid ; }
  571.  
  572.  
  573. #faixa {width: 5px;height:1000px;left:448px;top:-150px;background-color: {color:faixa1};color: ;position: fixed;float: center;font-size: 9px;padding: 1px; font-family: verdana;opacity:;-webkit-transform:rotate(0deg) ;
  574. }
  575. #faixa1 {width: 5px;height:1000px;left:437px;top:-150px;background-color: {color:faixa2};color: ;position: fixed;float: center;font-size: 9px;padding: 1px; font-family: verdana;opacity:;-webkit-transform:rotate(0deg) ;
  576. }
  577. #cred {margin-top: 0px; margin-left: 0px; position:fixed; width: auto; z-index:99999999999999999999999999999;}
  578.  
  579. #cred a{text-transform: none; display: block; font-family: 'arial'; background-color:#transp.; color: {color:link}; width: 90px; text-align: center; font-size: 8px; height:12px;line-height:10px;text-transform:uppercase; -webkit-transition-duration: .66s;}
  580.  
  581. #poeta-desc {width:165px; height: auto; margin-left:250px; margin-top:300px; position:fixed; overflow:hidden; background-color: #trans ; color: {color:frase}; font-family:verdana; font-size:9px; border-top:1px solid; border-right:0px solid; padding:3px;font-style: {color:sombra};}
  582.  
  583.  
  584. </style>
  585.  
  586.  
  587. </script>
  588.  
  589. <body>
  590. <div id="faixa"></div>
  591. <div id="faixa1"></div>
  592.  
  593. <div id="sidebar">
  594. <div class ="fotoside"> <img src="{image:foto}">
  595. </div></div>
  596. <div id="content">
  597. <div id="linka">
  598.  
  599. <a href="{text:Link2}" >{text:Link2 title}</a>
  600. <a href="{text:Link3}" >{text:Link3 title}</a>
  601. <a href="{text:Link4}" >{text:Link4 title}</a>
  602. <a href="{text:Link5}" >{text:Link5 title}</a>
  603.  
  604. </div>
  605. <div id="frase">{text:frase}</div>
  606.  
  607. <div id="content">
  608. <div class="linka">
  609.  
  610. <a href="{text:Link1}" >{text:Link1 title}</a>
  611.  
  612.  
  613. </div>
  614. <div id="poeta-desc"> {description} <br><br>
  615.  
  616.  
  617. {block:Pagination}
  618. {block:PreviousPage}
  619. <a href="{PreviousPage}">←</a>
  620. {/block:PreviousPage}
  621. {block:JumpPagination length="5"}
  622. {block:CurrentPage}
  623. <span class="current_page" style="color:#B0B0B0;">{PageNumber}</span>
  624. {/block:CurrentPage}
  625. {block:JumpPage}
  626. <a class="jump_page" href="{URL}">{PageNumber}</a>
  627. {/block:JumpPage}
  628. {/block:JumpPagination}
  629. {block:NextPage}
  630. <a href="{NextPage}">→</a>
  631. {/block:NextPage}
  632. </div>
  633. {/block:Pagination}
  634.  
  635. </div>
  636.  
  637. <div id="cred">
  638. <a href="http://decrepitar.tumblr.com" title="THEME BY DECREPITAR POST'S POR I-NSEGUR-A " target="_blank" > THEME</a>
  639. </div>
  640.  
  641.  
  642.  
  643.  
  644. <div id="baseruby">
  645. {block:Posts}
  646.  
  647. <div class="jubs">{block:Text}{block:Title}<u><div id="title">{Title}</div></u>{/block:Title}{Body}{/block:Text}
  648.  
  649. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}" ></div>{LinkCloseTag}{/block:Photo}
  650.  
  651. {block:Photoset}<div class="photoset">{Photoset-250}</div>{/block:Photoset}
  652.  
  653. {block:Quote}
  654. <div class="xquote">{Quote}</div>
  655. {block:Source}<div class="xquotesource"> — <font color="{color:text}">{Source}</font></div>
  656. {/block:Source}
  657. {/block:Quote}
  658.  
  659. {/block:Source}
  660. {/block:Quote}
  661.  
  662. {block:Link}
  663. <div id="title"><a href="{URL}" {Target}>{Name}</a></div>
  664. {block:Description}{Description}{/block:Description}
  665. {/block:Link}
  666.  
  667. {block:Chat}
  668. {block:Title}<div id="title"><a href="{Permalink}">{Title}</a></div>{/block:Title}
  669. <div class="chat"><ul>{block:Lines}
  670. <li class="person{UserNumber}">{block:Label}
  671. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  672. {/block:Chat}
  673.  
  674. {block:Audio}
  675. <div class="player">{AudioPlayerBlack}</div>
  676. {block:Caption}{Caption}{/block:Caption}
  677. {/block:Audio}
  678.  
  679. {block:Video}{Video-400}{/block:Video}
  680.  
  681. {block:Answer}
  682. <table width="290px" cellspacing="0" cellpadding="0">
  683. <tr>
  684. <td width="209px" class="question">{Question}</td>
  685. <td width="30px"><span class="questionarrow">◤</span></td>
  686. <td width="64px" class="asking"><img src="{AskerPortraitURL-64}"><br>{Asker}</td>
  687. </tr>
  688. </table>
  689. <div class="answer">{Answer}</div>
  690. {/block:answer}
  691.  
  692.  
  693.  
  694. <div id="cap">
  695. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  696. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  697. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  698.  
  699. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  700. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  701. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  702. {/block:ContentSource}</div></div>
  703. <br>
  704.  
  705.  
  706.  
  707. <div class="hehe">
  708. {block:Date}<div id="info">
  709. <center> <a href="{Permalink}">{TimeAgo} •<a href="{Permalink}" {block:NoteCount}{/block:NoteCount} </a> {NoteCountWithLabel}</a>{block:RebloggedFrom}<a href="{ReblogParentURL}"> • <a href="{ReblogParentURL}"> via</a>{/block:RebloggedFrom} {block:ContentSource} • <a href="{SourceURL}"> source</a>{/block:ContentSource} {block:IndexPage}• <a href="{ReblogUrl}" target="_blank"> reblog</a>{/block:IndexPage}</center> </div>{/block:Date}
  710. </div>
  711. </div>
  712.  
  713.  
  714.  
  715.  
  716. {/block:Posts}
  717. {block:PostNotes}{PostNotes}{/block:PostNotes}
  718.  
  719.  
  720. </div>
  721. </div>
  722. </div>
  723. </div>
  724. </body>
  725. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement