Advertisement
Decrepitar

Theme 40

Jun 4th, 2013
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.47 KB | None | 0 0
  1. <!--------------
  2.  
  3. THEMES BY DECREPITAR , NADA DE PLAGIOS !
  4.  
  5. NÃO RETIRE OS CREDITOS !
  6.  
  7. DDDDDDDDDD EEEEEEEEEE =======>> CREPITAR
  8. DD DD EE =======>> CREPITAR
  9. DD DD EEEEEEE =======>> CREPITAR
  10. DD DD EEEEEEE =======>> CREPITAR
  11. DD DD EE =======>> CREPITAR
  12. DDDDDDDDDD EEEEEEEEEEE =======>> CREPITAR
  13.  
  14. ---------------->
  15. <script type="text/javascript">
  16.  
  17. // <![CDATA[
  18.  
  19. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  20.  
  21. var fgcolour="#bebebe"; // foreground colour
  22.  
  23. var hlcolour="#b5b5b5"; // highlight colour
  24.  
  25. var bgcolour="#FFFFFF"; // background colour
  26.  
  27. var glcolour="#f8f8f8"; // colour of glow around letters
  28.  
  29. var speed=66; // speed colours change, 1 second = 1000
  30.  
  31. var delay=50; // how long to wait between wipes
  32.  
  33. var alink="/"; // page to link text to (set to ="" for no link)
  34.  
  35.  
  36.  
  37. /****************************
  38.  
  39. *Multi-Wipe Neon Text Effect*
  40.  
  41. *(c)2003-12 mf2fm web-design*
  42.  
  43. * http://www.mf2fm.com/rv *
  44.  
  45. * DON'T EDIT BELOW THIS BOX *
  46.  
  47. ****************************/
  48.  
  49. var w_txt, w_txl;
  50.  
  51. var w_flp=bgcolour;
  52.  
  53. var w_sty=Math.floor(Math.random()*8);
  54.  
  55. var w_cnt=-1;
  56.  
  57. var wipes=new Array();
  58.  
  59. var wrand=new Array();
  60.  
  61. window.onload=function() { if (document.getElementById) {
  62.  
  63. var i, wiper, wipei;
  64.  
  65. wiper=document.getElementById("wipe");
  66.  
  67. w_txt=wiper.firstChild.nodeValue;
  68.  
  69. w_txl=w_txt.length;
  70.  
  71. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  72.  
  73. for (i=0; i<w_txl; i++) {
  74.  
  75. wipei=document.createElement("span");
  76.  
  77. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  78.  
  79. wipes[i]=wipei.style;
  80.  
  81. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  82.  
  83. wipes[i].color=fgcolour;
  84.  
  85. wiper.appendChild(wipei);
  86.  
  87. }
  88.  
  89. if (alink) {
  90.  
  91. wiper.style.cursor="pointer";
  92.  
  93. wiper.onclick=function() { top.location.href=alink; }
  94.  
  95. }
  96.  
  97. for (i=0; i<w_txl; i++) wrand[i]=i;
  98.  
  99. wiper=setInterval("randwipe()", speed);
  100.  
  101. }}
  102.  
  103.  
  104.  
  105. function c(i, shade) {
  106.  
  107. if (shade==bgcolour) wipes[i].textShadow="none";
  108.  
  109. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  110.  
  111. wipes[i].color=shade;
  112.  
  113. }
  114.  
  115.  
  116.  
  117. function randwipe() {
  118.  
  119. var w_old;
  120.  
  121. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  122.  
  123. else {
  124.  
  125. w_cnt=-1;
  126.  
  127. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  128.  
  129. w_old=w_sty;
  130.  
  131. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  132.  
  133. }
  134.  
  135. }
  136.  
  137.  
  138.  
  139. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  140.  
  141.  
  142.  
  143. function wipe0() { // curtains
  144.  
  145. if (w_cnt<Math.floor(w_txl/2)) {
  146.  
  147. c(w_cnt, hlcolour);
  148.  
  149. c(w_txl-w_cnt-1, hlcolour);
  150.  
  151. }
  152.  
  153. else if (w_cnt<w_txl) {
  154.  
  155. c(w_cnt, w_flp);
  156.  
  157. c(w_txl-w_cnt-1, w_flp);
  158.  
  159. }
  160.  
  161. }
  162.  
  163.  
  164.  
  165. function wipe1() { // random
  166.  
  167. var i, rand, temp;
  168.  
  169. if (w_cnt==0) {
  170.  
  171. for (i=0; i<w_txl; i++) {
  172.  
  173. rand=Math.floor(Math.random()*w_txl);
  174.  
  175. temp=wrand[i];
  176.  
  177. wrand[i]=wrand[rand];
  178.  
  179. wrand[rand]=temp;
  180.  
  181. }
  182.  
  183. }
  184.  
  185. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  186.  
  187. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  188.  
  189. }
  190.  
  191.  
  192.  
  193. function wipe2() { // forwards
  194.  
  195. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  196.  
  197. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  198.  
  199. }
  200.  
  201.  
  202.  
  203. function wipe3() { // backwards
  204.  
  205. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  206.  
  207. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  208.  
  209. }
  210.  
  211.  
  212.  
  213. function wipe4() { // searchlight
  214.  
  215. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  216.  
  217. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  218.  
  219. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  220.  
  221. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  222.  
  223. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  224.  
  225. }
  226.  
  227.  
  228.  
  229. function wipe5() { // fade
  230.  
  231. var i;
  232.  
  233. if (w_cnt<w_txl+3) {
  234.  
  235. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  236.  
  237. var temp="#";
  238.  
  239. for (i=1; i<6; i+=2) {
  240.  
  241. var hex1=parseInt(start.substring(i,i+2),16);
  242.  
  243. var hex2=parseInt(w_flp.substring(i,i+2),16);
  244.  
  245. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  246.  
  247. }
  248.  
  249. for (i=0; i<w_txl; i++) c(i, temp);
  250.  
  251. }
  252.  
  253. }
  254.  
  255.  
  256.  
  257. function wipe6() { // flash
  258.  
  259. var i;
  260.  
  261. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  262.  
  263. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  264.  
  265. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  266.  
  267. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  268.  
  269. }
  270.  
  271. }
  272.  
  273.  
  274.  
  275. function wipe7() { // checkerboard
  276.  
  277. var qtr=Math.floor(w_txl/4);
  278.  
  279. if (w_cnt<qtr) {
  280.  
  281. c(w_cnt, hlcolour);
  282.  
  283. c(w_cnt+2*qtr, hlcolour);
  284.  
  285. }
  286.  
  287. else if (w_cnt<2*qtr) {
  288.  
  289. c(w_cnt-qtr, w_flp);
  290.  
  291. c(w_cnt+qtr, w_flp);
  292.  
  293. }
  294.  
  295. else if (w_cnt<3*qtr) {
  296.  
  297. c(w_cnt-qtr, hlcolour);
  298.  
  299. c(w_cnt+qtr, hlcolour);
  300.  
  301. }
  302.  
  303. else if (w_cnt<w_txl) {
  304.  
  305. c(w_cnt-2*qtr, w_flp);
  306.  
  307. c(w_cnt, w_flp);
  308.  
  309. }
  310.  
  311. }
  312.  
  313. // ]]>
  314.  
  315. </script>
  316.  
  317.  
  318. <html>
  319.  
  320. <meta name="color:background" content="#FFFFFF" />
  321. <meta name="color:text" content="#bebebe" />
  322. <meta name="color:post" content="#FFFFFF" />
  323. <meta name="color:scrollbar" content="#bebebe" />
  324. <meta name="image:background" content="" />
  325. <meta name="color:sidebar" content="#fac3f5" />
  326.  
  327. <meta name="color:link" content="#bebebe"/>
  328. <meta name="color:linkss" content="#cecece"/>
  329. <meta name="color:linkhover" content="#bebebe"/>
  330. <meta name="image:foto" content "http://static.tumblr.com/gdekeu9/PxCmlgppc/5712_500202743349856_1435524873_n_large.jpg" />
  331. <meta name="text:frase" content="Ela so queria ter um cara ..." />
  332. <meta name="color:frase" content="#cecece"/>
  333.  
  334. <meta name="color:faixa" content="#fac3f5" />
  335. <meta name="color:faixa2" content="#f3eded" />
  336.  
  337. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  338.  
  339. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  340.  
  341.  
  342. <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'>
  343. <link href='http://fonts.googleapis.com/css?family=Special+Elite' rel='stylesheet' type='text/css'>
  344. <link href='http://fonts.googleapis.com/css?family=Cabin+Sketch' rel='stylesheet' type='text/css'>
  345. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  346.  
  347. <link href='http://fonts.googleapis.com/css?family=Megrim' rel='stylesheet' type='text/css'>
  348. <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
  349. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  350. <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Dosis|Inconsolata' rel='stylesheet' type='text/css'>
  351. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  352.  
  353. <meta name="text:Link1" content="/" />
  354. <meta name="text:Link1 Title" content="LINK GRANDINHO AQUI" />
  355. <meta name="text:Link2" content="/ask" />
  356. <meta name="text:Link2 Title" content="LINK GRANDINHO AQUI" />
  357. <meta name="text:Link3" content="/submit" />
  358. <meta name="text:Link3 Title" content="LINK GRANDINHO AQUI" />
  359. <meta name="text:Link4" content="#" />
  360. <meta name="text:Link4 Title" content="LINK GRANDINHO AQUI" />
  361. <meta name="text:Link5" content="/submit" />
  362. <meta name="text:Link5 Title" content="LINK GRANDINHO AQUI" />
  363.  
  364.  
  365. <link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
  366.  
  367.  
  368. <title>{Title}</title>
  369. <link rel="shortcut icon" href="http://static.tumblr.com/gdekeu9/WZNmnopso/tumblr_inline_mj0ebk8q5v1qz4rgp.gif">
  370. <link rel="alternate" type="application/rss+xml" href="http://static.tumblr.com/gdekeu9/WZNmnopso/tumblr_inline_mj0ebk8q5v1qz4rgp.gif">
  371. {block:Description}
  372. <meta name="description" content="{MetaDescription}" />
  373. {/block:Description}
  374.  
  375.  
  376.  
  377. <script type="text/javascript">
  378.  
  379. var _gaq = _gaq || [];
  380. _gaq.push(['_setAccount', 'UA-37760047-1']);
  381. _gaq.push(['_trackPageview']);
  382.  
  383. (function() {
  384. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  385. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  386. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  387. })();
  388. <script language="javascript">
  389. var mensagem="Não copie, reblogue!";
  390. function clickIE() {if (document.all) {(mensagem);return false;}}
  391. function clickNS(e) {if
  392. (document.layers||(document.getElementById&&!document.all)) {
  393. if (e.which==2||e.which==3) {alert(mensagem);return false;}}}
  394. if (document.layers)
  395. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  396. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  397. document.oncontextmenu=new Function("return false")
  398. </script>
  399. </script>
  400.  
  401. <style type="text/css">
  402.  
  403. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  404.  
  405. a {color: {color:link}; text-decoration: none; text-transform: none;}
  406. a:hover {color: {color:linkhover}; background-color: transparent; text-decoration: none;}
  407.  
  408. p {margin: 6px 0 0 0}
  409.  
  410. blockquote {margin: 5px 5px 5px 5px; border-left: 6px solid {color:background}; padding-left: 5px; }
  411. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  412. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  413. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  414.  
  415. blockquote img{max-width: 370px!important}
  416. blockquote blockquote img{max-width: 370px!important}
  417. blockquote blockquote blockquote img{max-width: 330px!important}
  418. blockquote blockquote blockquote blockquote img{max-width: 310px!important}
  419.  
  420. #container {text-align: center; width: 435px; margin: 20px auto 20px auto; padding: 0px; z-index: 1;}
  421.  
  422. #entry {float: left; margin-left:500px; margin-top: 0px; }
  423.  
  424. .posts {width: 400px; background-color: {color:post}; padding: 10px; margin-bottom: 1px; text-align: justify; font-family: arial ; font-size: 11px; position: relative;border:1px solid ; opacity:0.75;}
  425.  
  426. h1 {font-family: georgia; text-align: center; font-size: 13px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  427. h1 a {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  428. h1 a:hover {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  429.  
  430. .image {text-align: center; border: 0px}
  431. .image img {max-width: 400px; margin-bottom: 2px }
  432.  
  433. .pquote {font-family: arial ; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  434. .pquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  435. .pquotesource a, a:hover{text-transform: none;}
  436.  
  437. .chat {line-height: 13px; list-style: none }
  438. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  439. .person1 {color: {color:text}; padding: 2px; }
  440. .person1 .label {font-weight: bold; color:{color:text}}
  441. .person2 {color: {color:text}; padding: 2px; }
  442. .person2 .label {font-weight: bold; color:{color:text}}
  443.  
  444. .player {background-color: #000; text-align: left; display:block;}
  445.  
  446. /****** Balão da Ask, by: daniideutscher.tumblr *****/
  447. @font-face {src: url('http://static.tumblr.com/08l8cbl/UsQmgu9kz/pf_arma_five.ttf'); font-family: PF Arma Five; font-weight: normal;}
  448.  
  449. .estilodeask {
  450. overflow: hidden;
  451. font: 11px Verdana; /* Tamanho e nome da Fonte */
  452. margin-bottom: 8px;
  453. }
  454.  
  455. .balao {
  456. position: relative;
  457. background: #eee; /* Cor de Fundo da Caixa da Pergunta */
  458. margin-right: 65px;
  459. padding: 4px;
  460. color: #bebebe; /* Cor da Fonte */
  461. }
  462.  
  463. .balao:after {
  464. left: 100%;
  465. border: solid transparent;
  466. content: " ";
  467. height: 0;
  468. width: 0;
  469. position: absolute;
  470. pointer-events: none;
  471. }
  472.  
  473. .balao:after {
  474. border-left-color: #eee; /* Cor da Setinha do Balão */
  475. border-width: 10px;
  476. top: 65%;
  477. margin-top: -10px;
  478. }
  479.  
  480. .asker {
  481. font: 8px PF Arma Five; /* Tamanho e nome da fonte de quem perguntou */
  482. background: #eee; /* Cor de Fundo */
  483. color: #bebebe; /* Cor da Fonte */
  484. padding: 2px;
  485. margin-right: -4px;
  486. margin-left: -4px;
  487. margin-bottom: 12px;
  488. margin-top: -4px;
  489. text-align: center;
  490. }
  491.  
  492.  
  493. asker {
  494. color: #bebebe;
  495. }
  496.  
  497. .balao a {
  498. color: #bebebe;
  499. }
  500.  
  501. .askphoto {
  502. background: #eee; /* Cor de fundo da foto */
  503. padding: 6px;
  504. border-radius: 100px;
  505. }
  506.  
  507.  
  508. .creditoaokaique {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  509. .creditoaokaique:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  510.  
  511. #info {text-align: center ; margin-top:-4px; font-size: 10px; font-family: calibri; text-transform: uppercase; z-index: 11;border-top:1px solid;border-bottom:1px solid;}
  512. #info a {font-size: 10px; text-transform: uppercase;}
  513.  
  514. #tags {color: {color:text}; font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  515. #tags a {font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  516.  
  517. #cap {width: 500px; margin-top: -2px;}
  518. .source {display: none;}
  519.  
  520. .notes {width: 520px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: right ;}
  521. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  522. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  523. .notes img{display: none; border:0px}
  524.  
  525. ::-webkit-scrollbar{width:7px;height:7px;}
  526. ::-webkit-scrollbar-button:start:decrement
  527. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  528. ::-webkit-scrollbar-track-piece{background-color: {color:post}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  529. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  530. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  531.  
  532. #frase {background-color:{color:sidebar} ; width: 148px;height:20px ; letter-spacing: 0px; color: {color:frase}; text-align:center; line-height: 20px; position:; -moz-transition: all 0.4s ease-out; font-family:'Lobster Two'; margin-top:120px; margin-left:300px; text-transform: none; position: fixed; padding: 2px; font-size: 14px;border-bottom: 0px solid ; border-color:#bebebe ;-webkit-transform: rotate(-3deg);}
  533.  
  534. #sidebar {position: fixed; width:150px; height:180px; margin-left:300px; margin-top:150px; z-index:100;;-webkit-border-radius: 0px }
  535.  
  536. .fotoside img {display: block;width:150px; height:180px;;position:fixed; opacity:;-webkit-filter: grayscale(0%); -webkit-border-radius: 25px ;
  537.  
  538. -webkit-transition: all 1s ease-in-out;
  539. -moz-transition: all 1s ease-in-out;
  540. -o-transition: all 1s ease-in-out;
  541. -ms-transition: all 1s ease-in-out;position:fixed; opacity: 0.65; border:1.5px solid
  542.  
  543. }
  544. .fotoside img:hover{-webkit-border-radius:0px;}
  545.  
  546. #faixa {width: 5px;height:1000px;left:490px;top:-150px;background-color: {color:faixa};color: ;position: fixed;float: center;font-size: 9px;padding: 1px; font-family: verdana;opacity:;-webkit-transform:rotate(0deg) ;
  547. }
  548. #faixa1 {width: 5px;height:1000px;left:480px;top:-150px;background-color: {color:faixa2};color: ;position: fixed;float: center;font-size: 9px;padding: 1px; font-family: verdana;opacity:;-webkit-transform:rotate(0deg) ;
  549. }
  550.  
  551.  
  552.  
  553. .linka1 {width: 130px;margin-top: 335px; margin-left:312px; position:fixed; width: ; z-index:99999999999999999999999999999;}
  554.  
  555. .linka1 a{text-transform: none; display: inline-block ; font-family: arial ; background-color:transp.; color: {color:linkss}; width: 130px; text-align: center; font-size: 8.4px; height:20px;line-height:20px;text-transform:uppercase; -webkit-transition-duration: .66s;margin: 2px 0 0px 0;opacity:0.71;border-bottom:1px solid ; }
  556.  
  557. .linka1 a:hover{color:{color:linkhover};}
  558.  
  559.  
  560. #cred {margin-top: 10px; margin-left: 10px; position:fixed; width: auto; z-index:99999999999999999999999999999;}
  561.  
  562. #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;}
  563.  
  564.  
  565. #poeta-desc {width:150px;; margin-left:300px; margin-top:440px; position:fixed; overflow:hidden; background-color: #trans ; color: {color:text}; font-family:arial; font-size:10px; border-top:0px solid; border-right:0px solid; padding:3px;font-style: {color:sombra};}
  566.  
  567. #quel {position:fixed; margin-left:99px; margin-top:50px; width:auto; padding:3px; text-align:center;text-transform:uppercase;font-family: 'verdana'; font-size:5px; line-height:15px;height:auto; color:{color:coracao};z-index:999;opacity:0.45;text-shadow: 0 0 0.2em color: ; title;-webkit-transition-duration: .88s;}
  568.  
  569.  
  570.  
  571. #fade { /*--Transparent background layer--*/
  572. display: none; /*--hidden by default--*/
  573. background: #fffafa;background-image:url('http://static.tumblr.com/gdekeu9/naMmnn55s/bg4.jpg');
  574. position: fixed; left: 0; top: 0;
  575. width: 100%; height: 100%;
  576. opacity: .80;
  577. z-index: 9999;
  578. }
  579. .popup_block{
  580. display: none; /*--hidden by default--*/
  581. background: #fff;
  582. padding: 20px;
  583. border: 20px solid #bebebe;
  584. float: left;
  585. font-size: 1.2em;
  586. position: fixed;
  587. top: 50%; left: 55%;
  588. z-index: 99999;
  589. /*--CSS3 Box Shadows--*/
  590. -webkit-box-shadow: 0px 0px 20px #000;
  591. -moz-box-shadow: 0px 0px 20px #000;
  592. box-shadow: 0px 0px 20px #000;
  593. /*--CSS3 Rounded Corners--*/
  594. -webkit-border-radius: 10px;
  595. -moz-border-radius: 10px;
  596. border-radius: 10px;
  597. }
  598. img.btn_close {
  599. float: right;
  600. margin: -55px -55px 0 0;
  601. }
  602. /*--Making IE6 Understand Fixed Positioning--*/
  603. *html #fade {
  604. position: absolute;
  605. }
  606. *html .popup_block {
  607. position: absolute;
  608. }
  609.  
  610.  
  611. </style>
  612.  
  613. <body>
  614.  
  615.  
  616.  
  617.  
  618. <div id="faixa"></div>
  619. <div id="faixa1"></div>
  620.  
  621.  
  622.  
  623. <div id="frase"><span id="wipe">{text:frase}</span>
  624. </div>
  625. <div id="sidebar">
  626.  
  627. <div class="fotoside" class="hover">
  628. <img class="bottom shadow" src="{image:foto}"</div>
  629.  
  630.  
  631. </div>
  632. </div></div>
  633.  
  634.  
  635. <div id="content">
  636. <div class ="linka1">
  637. <a href="{text:Link1}" >{text:Link1 title}</a>
  638. <a href="{text:Link2}" >{text:Link2 title}</a>
  639. <a href="{text:Link3}" >{text:Link3 title}</a>
  640. <a href="{text:Link4}" >{text:Link4 title}</a>
  641. <a href="{text:Link5}" >{text:Link5 title}</a>
  642.  
  643.  
  644. </div>
  645. </div></div>
  646.  
  647.  
  648.  
  649. <div id="cred">
  650. <a href="http://DECREPITAR.tumblr.com" title="THEME BY DECREPITAR " target="_blank" > THEME</a>
  651.  
  652. </DIV>
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661. <div id="poeta-desc">
  662. <br>{block:PreviousPage}<a href="{PreviousPage}">«</a> {/block:PreviousPage}{CurrentPage} of {TotalPages}{block:NextPage} <a href="{NextPage}">»</a>{/block:NextPage}</div>
  663.  
  664. </div>
  665.  
  666.  
  667.  
  668. </div>
  669.  
  670.  
  671.  
  672. <div id="c2">
  673. <div id="c3">
  674.  
  675.  
  676.  
  677.  
  678. </div>
  679.  
  680. <div id="entry">
  681.  
  682. {block:Posts}
  683. <div class="posts">
  684.  
  685. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  686.  
  687. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-400}"></div>{LinkCloseTag}{/block:Photo}
  688.  
  689. {block:Photoset}{Photoset-400}{/block:Photoset}
  690.  
  691. {block:Quote}
  692. <div class="pquote"><big><big><big><big>❝ </big></big></big></big> {Quote}</div>
  693. {block:Source}<div class="pquotesource"> ─ {Source}</div>
  694. {/block:Source}
  695. {/block:Quote}
  696.  
  697. {block:Link}
  698. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  699. {block:Description}{Description}{/block:Description}
  700. {/block:Link}
  701.  
  702. {block:Chat}
  703. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  704. <div class="chat"><ul>{block:Lines}
  705. <li class="person{UserNumber}">{block:Label}
  706. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  707. {/block:Chat}
  708.  
  709. {block:Audio}
  710. <div class="player">{AudioPlayerBlack}</div>
  711. {block:Caption}{Caption}{/block:Caption}
  712. {/block:Audio}
  713.  
  714. {block:Video}{Video-400}{/block:Video}
  715.  
  716.  
  717. {block:Answer}
  718. <div class="estilodeask">
  719. <img src="{AskerPortraitURL-40}" class="askphoto" width="40px" align="right">
  720.  
  721. <div class="balao">
  722. <div class="asker">Ask by: <asker>{Asker}</asker></div>
  723. {Question}
  724. </div>
  725.  
  726. </div>
  727.  
  728. {Answer}
  729. {/block:Answer}
  730.  
  731.  
  732.  
  733. <div id="cap">
  734. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  735. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  736. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  737.  
  738. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  739. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  740. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  741. {/block:ContentSource}</div></div>
  742. <br>
  743.  
  744. <div class="creditoaokaique">
  745. {block:Date}<div id="info">
  746. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} • <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:IfShowTags}<center><div id="tags">{block:HasTags}{block:Tags} #<a href="{TagUrl}">{Tag}</a>{/block:Tags}{/block:HasTags}
  747. </div>{/block:IfShowTags}{/block:Date}</div>
  748. </div>
  749.  
  750.  
  751. {/block:Posts}
  752.  
  753.  
  754. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  755. <br>
  756. <small> Theme by <a href="http://decrepitar.tumblr.com" > Decrepitar</a> © Raquel Lopes , Brasillian | Don't Copies <br>
  757. Design todo feito por decrepitar , caso haja copias irei te denunciar .
  758. <br> Artigo lei 'artigo 184' . Bom uso .
  759. </small>
  760.  
  761. <br>
  762. <br>
  763. <br>
  764.  
  765.  
  766. </div>
  767.  
  768.  
  769.  
  770. </div>
  771. </div>
  772. </div>
  773. </div>
  774. </body>
  775. </html>
  776. <style> body, a, a:hover { cursor:url('http://www.totallylayouts.com/cursors/random/tiny_cursor.png'), auto }</style>
  777. <div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement