ANTIGO-BRASILEIRO

usei#priv

Aug 28th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.98 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5.  
  6.  
  7.  
  8.  
  9. <! Theme #27 ANTIGO-BRASILEIRO + BASE DE LATE-TO-WRITE, NÃO RETIRE OS CRÉDITOS, NÃO COPIE!!!!>
  10.  
  11.  
  12. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. <head> <!-- DEFAULT VARIABLES -->
  21.  
  22. <meta name="font:text" content="verdana" />
  23. <meta name="font:title" content="georgia" />
  24.  
  25.  
  26. <meta name="color:background" content="#f1f1f1" />
  27. <meta name="color:text" content="#000" />
  28. <meta name="color:entry" content="#fff" />
  29. <meta name="color:desc" content="#fff" />
  30. <meta name="color:links" content="#000" />
  31. <meta name="color:links1" content="#000" />
  32. <meta name="color:linktex" content="#fff" />
  33. <meta name="color:pag" content="#fff" />
  34.  
  35. <meta name="image:background" content=""/>
  36. <meta name="image:sidebar1" content=""/>
  37.  
  38.  
  39.  
  40.  
  41. <meta name="image:sidebar1" content=""/>
  42.  
  43.  
  44.  
  45.  
  46. <meta name="text:frase" content="bote o titulo aqui"/>
  47.  
  48.  
  49. <meta name="text:Link1" content="/" />
  50. <meta name="text:Link1 Title" content="link1" />
  51. <meta name="text:Link2" content="/" />
  52. <meta name="text:Link2 Title" content="link2" />
  53. <meta name="text:Link3" content="/" />
  54. <meta name="text:Link3 Title" content="link3" />
  55. <meta name="text:Link4" content="/" />
  56. <meta name="text:Link4 Title" content="link4" />
  57. <meta name="text:Link5" content="/" />
  58. <meta name="text:Link5 Title" content="link5" />
  59. <meta name="text:Link6" content="/" />
  60. <meta name="text:Link6 Title" content="link6" />
  61. <meta name="text:Link7" content="/" />
  62. <meta name="text:Link7 Title" content="link7" />
  63. <meta name="text:Link8" content="/" />
  64. <meta name="text:Link8 Title" content="link8" />
  65. <meta name="text:Link9" content="/" />
  66. <meta name="text:Link9 Title" content="link9" />
  67. <meta name="text:Link10" content="/" />
  68. <meta name="text:Link10 Title" content="link10" />
  69.  
  70.  
  71.  
  72. <script type="text/javascript">
  73.  
  74. // <![CDATA[
  75.  
  76. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  77.  
  78. var fgcolour="#656565"; // foreground colour
  79.  
  80. var hlcolour="#b5b5b5"; // highlight colour
  81.  
  82. var bgcolour="#FFFFFF"; // background colour
  83.  
  84. var glcolour="#f8f8f8"; // colour of glow around letters
  85.  
  86. var speed=66; // speed colours change, 1 second = 1000
  87.  
  88. var delay=50; // how long to wait between wipes
  89.  
  90. var alink="/"; // page to link text to (set to ="" for no link)
  91.  
  92.  
  93.  
  94. /****************************
  95.  
  96. *Multi-Wipe Neon Text Effect*
  97.  
  98. *(c)2003-12 mf2fm web-design*
  99.  
  100. * http://www.mf2fm.com/rv *
  101.  
  102. * DON'T EDIT BELOW THIS BOX *
  103.  
  104. ****************************/
  105.  
  106. var w_txt, w_txl;
  107.  
  108. var w_flp=bgcolour;
  109.  
  110. var w_sty=Math.floor(Math.random()*8);
  111.  
  112. var w_cnt=-1;
  113.  
  114. var wipes=new Array();
  115.  
  116. var wrand=new Array();
  117.  
  118. window.onload=function() { if (document.getElementById) {
  119.  
  120. var i, wiper, wipei;
  121.  
  122. wiper=document.getElementById("wipe");
  123.  
  124. w_txt=wiper.firstChild.nodeValue;
  125.  
  126. w_txl=w_txt.length;
  127.  
  128. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  129.  
  130. for (i=0; i<w_txl; i++) {
  131.  
  132. wipei=document.createElement("span");
  133.  
  134. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  135.  
  136. wipes[i]=wipei.style;
  137.  
  138. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  139.  
  140. wipes[i].color=fgcolour;
  141.  
  142. wiper.appendChild(wipei);
  143.  
  144. }
  145.  
  146. if (alink) {
  147.  
  148. wiper.style.cursor="pointer";
  149.  
  150. wiper.onclick=function() { top.location.href=alink; }
  151.  
  152. }
  153.  
  154. for (i=0; i<w_txl; i++) wrand[i]=i;
  155.  
  156. wiper=setInterval("randwipe()", speed);
  157.  
  158. }}
  159.  
  160.  
  161.  
  162. function c(i, shade) {
  163.  
  164. if (shade==bgcolour) wipes[i].textShadow="none";
  165.  
  166. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  167.  
  168. wipes[i].color=shade;
  169.  
  170. }
  171.  
  172.  
  173.  
  174. function randwipe() {
  175.  
  176. var w_old;
  177.  
  178. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  179.  
  180. else {
  181.  
  182. w_cnt=-1;
  183.  
  184. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  185.  
  186. w_old=w_sty;
  187.  
  188. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  189.  
  190. }
  191.  
  192. }
  193.  
  194.  
  195.  
  196. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  197.  
  198.  
  199.  
  200. function wipe0() { // curtains
  201.  
  202. if (w_cnt<Math.floor(w_txl/2)) {
  203.  
  204. c(w_cnt, hlcolour);
  205.  
  206. c(w_txl-w_cnt-1, hlcolour);
  207.  
  208. }
  209.  
  210. else if (w_cnt<w_txl) {
  211.  
  212. c(w_cnt, w_flp);
  213.  
  214. c(w_txl-w_cnt-1, w_flp);
  215.  
  216. }
  217.  
  218. }
  219.  
  220.  
  221.  
  222. function wipe1() { // random
  223.  
  224. var i, rand, temp;
  225.  
  226. if (w_cnt==0) {
  227.  
  228. for (i=0; i<w_txl; i++) {
  229.  
  230. rand=Math.floor(Math.random()*w_txl);
  231.  
  232. temp=wrand[i];
  233.  
  234. wrand[i]=wrand[rand];
  235.  
  236. wrand[rand]=temp;
  237.  
  238. }
  239.  
  240. }
  241.  
  242. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  243.  
  244. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  245.  
  246. }
  247.  
  248.  
  249.  
  250. function wipe2() { // forwards
  251.  
  252. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  253.  
  254. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  255.  
  256. }
  257.  
  258.  
  259.  
  260. function wipe3() { // backwards
  261.  
  262. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  263.  
  264. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  265.  
  266. }
  267.  
  268.  
  269.  
  270. function wipe4() { // searchlight
  271.  
  272. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  273.  
  274. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  275.  
  276. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  277.  
  278. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  279.  
  280. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  281.  
  282. }
  283.  
  284.  
  285.  
  286. function wipe5() { // fade
  287.  
  288. var i;
  289.  
  290. if (w_cnt<w_txl+3) {
  291.  
  292. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  293.  
  294. var temp="#";
  295.  
  296. for (i=1; i<6; i+=2) {
  297.  
  298. var hex1=parseInt(start.substring(i,i+2),16);
  299.  
  300. var hex2=parseInt(w_flp.substring(i,i+2),16);
  301.  
  302. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  303.  
  304. }
  305.  
  306. for (i=0; i<w_txl; i++) c(i, temp);
  307.  
  308. }
  309.  
  310. }
  311.  
  312.  
  313.  
  314. function wipe6() { // flash
  315.  
  316. var i;
  317.  
  318. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  319.  
  320. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  321.  
  322. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  323.  
  324. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  325.  
  326. }
  327.  
  328. }
  329.  
  330.  
  331.  
  332. function wipe7() { // checkerboard
  333.  
  334. var qtr=Math.floor(w_txl/4);
  335.  
  336. if (w_cnt<qtr) {
  337.  
  338. c(w_cnt, hlcolour);
  339.  
  340. c(w_cnt+2*qtr, hlcolour);
  341.  
  342. }
  343.  
  344. else if (w_cnt<2*qtr) {
  345.  
  346. c(w_cnt-qtr, w_flp);
  347.  
  348. c(w_cnt+qtr, w_flp);
  349.  
  350. }
  351.  
  352. else if (w_cnt<3*qtr) {
  353.  
  354. c(w_cnt-qtr, hlcolour);
  355.  
  356. c(w_cnt+qtr, hlcolour);
  357.  
  358. }
  359.  
  360. else if (w_cnt<w_txl) {
  361.  
  362. c(w_cnt-2*qtr, w_flp);
  363.  
  364. c(w_cnt, w_flp);
  365.  
  366. }
  367.  
  368. }
  369.  
  370. // ]]>
  371.  
  372. </script>
  373.  
  374.  
  375.  
  376. <title>{Title}</title>
  377. <link rel="shortcut icon" href="{Favicon}">
  378. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  379. {block:Description}
  380. <meta name="description" content="{MetaDescription}" />
  381. {/block:Description}
  382.  
  383.  
  384. <link href='http://fonts.googleapis.com/css?family=Zeyada' rel='stylesheet' type='text/css'>
  385.  
  386. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  387.  
  388.  
  389. <style type="text/css">
  390.  
  391.  
  392.  
  393. body {
  394. color:{color:text};
  395. background-color: {color:background};
  396. background-image:url('http://media.tumblr.com/tumblr_m4sp9vKy8j1qj5ffr.png');
  397. color:{color:text};
  398. font-family: verdana;
  399. font-size: 11px;
  400. text-align: center;
  401. background-attachment:fixed;
  402.  
  403. background-repeat:
  404.  
  405. line-height:110%;
  406.  
  407. text-align:justify
  408. }
  409.  
  410. a:link, a:active, a:visited {
  411. color: {color:links};
  412. text-decoration:none;
  413. }
  414.  
  415. a:hover {
  416. color: {color:links};
  417. -webkit-transition-duration: 0.8s;
  418. -moz-transition-duration: 0.8s;
  419. }
  420.  
  421.  
  422. .bubble {align:right;background: {color:background}; margin:7px 0px 2px 66px;padding:11px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
  423. .bubble p {margin:1px 0px;}
  424. .bubble span {display:block;position:absolute;width:1px;height:1px;font-size: 0;line-height: 1px; left:-13px;top:2px;border-top:7px solid transparent;border-bottom:7px solid transparent; border-right:10px solid {color:entry};}
  425. .askborder{-webkit-border-radius: 3px 3px 3px 3px; -webkit-transition-duration: 0.6s; }.askborder:hover{ -webkit-border-radius: 180px}
  426.  
  427.  
  428.  
  429.  
  430.  
  431. #bolinha {margin-top:2px;calibri;font-size:8px;text-align:right;
  432. text-transform:uppercase;width:80px;padding-right:6px;background-color:#eee; letter-spacing: 1px; color: #000;-webkit-transition: all 0.75s ease-out;-moz-transition: all 0.75s ease-out;-o-transition: all 0.75s ease-out;}
  433.  
  434. #bolinha:hover { background-color:#ffffff;}
  435.  
  436.  
  437.  
  438. #sidebar {outline: dashed 1px #000;width:90px;font-family:'calibri'; font-size:10px; color:#777;margin-top:290px;margin-left: 65px;float: center;text-align: justify; position: fixed ;padding: 3px;background: #ffffff; }
  439.  
  440.  
  441.  
  442. #hak {width: 300px;
  443. height: 22px;
  444. position: fixed;
  445. background-color: transparent;
  446. margin-left: -198px;
  447. z-index: 0;
  448. margin-top: -115px;
  449. text-align: right;
  450. -webkit-transform: rotate(-28deg);}
  451. .optitle{font-family: Homenaje; font-size: 15px; line-height: 14px; margin-top: 117px; margin-left: -2px; text-align: center; width: 116px; color: #848686; height: 18px; word-spacing: 1px; background-color: #FFFFFF}
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459. #foto{
  460. width: 190px;
  461. height: auto;
  462. top: 212px;
  463. left:170px;
  464. position:fixed;
  465. padding: 5px ;
  466. background-color:#fff;
  467. color:#fff;
  468. text-align:center;
  469. float:right;
  470. }
  471.  
  472.  
  473.  
  474.  
  475.  
  476.  
  477. .falamuito {font-size: 15px; font-family: calibri;color: {color:#000}; position:fixed; padding: 4px; margin-left: 1px; margin-top: -4px;height: autopx; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; padding-right: 3px;}
  478.  
  479.  
  480. #pag {width: 291px;
  481. padding: 4px;
  482. float: right;
  483. height: 13px;
  484. position: fixed;
  485. margin-left: -106px;
  486. margin-top: 7px;}
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496. #sbar5 {width: 11px;
  497. height: 58px;
  498. margin-left: 85px;
  499. margin-top: -262px;
  500. position: fixed;
  501. overflow: hidden;
  502. background-color: transparent;
  503. border-left: 0px solid;
  504. border-right: 0px solid;
  505. padding: 3px; }
  506.  
  507.  
  508.  
  509. #credit{position:fixed;bottom:5px;right:15px;}
  510.  
  511.  
  512. #credit a{color: #000;font-size:10px;font-family:consolas;text-decoration:none;}
  513.  
  514.  
  515. #icon {
  516. text-align: center;
  517. width: 100px;
  518. display: block;
  519. padding: 8px;
  520. }
  521.  
  522. #container {
  523. background-color:transparent;
  524. width: 465px;
  525. position: absolute;
  526. top:13px;
  527. left: 371px;
  528.  
  529. padding-bottom: 5px;
  530. }
  531.  
  532. #entries {margin: -10px 0 0px 0}
  533.  
  534.  
  535. #entry {
  536. width: 500px;
  537. border-bottom: 2px solid {color:background};
  538. background-color:{color:entry};
  539. text-align: justify;
  540. padding: 20px;
  541. margin-bottom:0px;}
  542.  
  543. .image{text-align: center; margin: 0 0 5px 0}
  544. .image img{border: 0px; margin: 0; padding: 0;}
  545.  
  546. #ask_form{width: 500px; }
  547.  
  548. .search_result{font-size: 12px; text-align: center}
  549.  
  550. .source{display:none}
  551.  
  552. h1{
  553. font-family: georgia;
  554. font-size:20px;
  555. letter-spacing: -1px;
  556. line-height: 20px;
  557. text-transform: none;
  558. font-weight: normal;
  559. margin: 0 0 5px 0;
  560. text-align: center;
  561. }
  562.  
  563. h1 a{font-size:20px; letter-spacing: -1px; line-height: 20px; text-transform: none; font-weight: normal; margin: 0 0 5px 0; text-decoration: none; text-align: center; }
  564.  
  565.  
  566. .fj {margin-top: -45px;font-size: 40px; font-family: Elephant; line-height: 120px; color:{color:text};}
  567.  
  568.  
  569. .qquote {font-family: calibri; text-align: left; font-size: 14px; line-height: 16px; padding: 0px;}
  570.  
  571. .qsource {font-size: 8px; font-family: PF Ronda Seven;text-align: right;margin-bottom: 5px;}
  572.  
  573.  
  574. .chat{
  575. line-height: 12px;
  576. list-style: none
  577. }
  578.  
  579. .chat ul {
  580. line-height: 15px;
  581. list-style: none;
  582. padding: 0px;
  583. line-height: 20px;
  584. background: {color:entry};
  585. }
  586.  
  587. .person1 {
  588. background-color: {color:entry};
  589. color: {color:text}
  590. }
  591. .person1 .label {
  592. font-weight: bold;
  593. padding: 0px;
  594. margin-left: 5px;
  595. color: {color: text}
  596. }
  597. .person2 {
  598. background-color: {color:entry};
  599. color: {color: text}
  600. }
  601. .person2 .label {
  602. font-weight: bold;
  603. padding: 0px;
  604. margin-left: 5px;
  605. color: {color: text}
  606. }
  607.  
  608. .audioimage{
  609. float:left;
  610. text-align: center;
  611. margin: 0 10px 5px 0;
  612. width: 205px;
  613. border: 15px solid {color:background};
  614. }
  615. .audioimage img{
  616. max-width: 205px;
  617. height: auto;
  618. margin: 0 0 2px 0
  619. }
  620. .playcount {font-style: italic}
  621.  
  622.  
  623. .asker {
  624. width: 480px;
  625. background-color: {color:background};
  626. color:{color:text};
  627. padding: 10px; }
  628. .asker img{
  629. float: left;
  630. margin: 0px 4px 2px 0
  631. }
  632. .asker a{
  633. font-size: 20px;
  634. color:{color:links};
  635. text-transform: lowercase;
  636. line-height: 27px;
  637. padding: 0; margin: 0;
  638. font-family: georgia;
  639. }
  640. .asker a:hover{
  641. font-size: 20px;
  642. color:{color:links};
  643. text-transform: lowercase;
  644. line-height:27px;
  645. padding: 0;
  646. margin: 0;
  647. font-family: georgia;
  648. }
  649. .answer {padding: 5px 0 0 0; }
  650.  
  651. #cap {
  652. padding: 2px 0 0 0;
  653. width: 500px;
  654. margin: 0 0 0 5px
  655. }
  656.  
  657. .info {
  658. margin-top: 10px;
  659. border-left: 0px solid {color:entry};
  660. padding: 5px;
  661. background-color: {color:entry};
  662. text-align: left;
  663. font-size: 8px;
  664. font-family: tinytots;
  665. text-transform: uppercase;
  666. }
  667.  
  668. .info a {font-size: 8px;text-transform:uppercase;}
  669.  
  670. .info2 {
  671. padding: 2px;
  672. border-bottom: 1px dotted {color:entry};
  673. text-align: right;
  674. }
  675. .tags {
  676. color: {color:text};
  677. font-size: 9px;
  678. font-family: verdana;
  679. display: inline;
  680. list-style: none;
  681. text-transform: none;
  682. }
  683. .tags a {
  684. font-size: 9px;
  685. color: {color:text};
  686. display: inline;
  687. list-style: none;
  688. text-transform: none;
  689. }
  690.  
  691. #nts {
  692. width: 500px;
  693. margin-left: 95px;
  694. padding: 10px;
  695. margin-top: 5px;
  696. font-size: 10px;
  697. text-align: left
  698. }
  699.  
  700. #nts img{display: none; border:0px}
  701.  
  702. #clear{
  703. clear: both;
  704. width: 50px;
  705. height: 0px;
  706. background-color: transparent
  707. }
  708.  
  709. #prevnextlinks{
  710. text-align: center;
  711. width: 500px;
  712. background-color:{color:entry};
  713. padding: 7px 20px 7px 20px;
  714. margin: 0 0 2px 0;
  715. font-size: 10px
  716. }
  717.  
  718. #notes {
  719. width: 500px;
  720. margin: 0px;
  721. margin-left: 0px;
  722. padding: 5px;
  723. text-align: left
  724. }
  725.  
  726. ol.notes {list-style: none; margin: 0 20px 0 10px; padding: 0px}
  727. ol.notes li {margin: 0px; padding: 2px;}
  728.  
  729. #notes img{border:0px}
  730. #notes a{font-size: 10px}
  731.  
  732. #tumblr_controls{position: fixed!important}
  733. ::-webkit-scrollbar{width:5px;height:5px;}
  734.  
  735. ::-webkit-scrollbar-button:start:decrement
  736.  
  737. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  738.  
  739. ::-webkit-scrollbar-track-piece{background-color:#fff;-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  740.  
  741. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color:#000;-webkit-border-radius:px;}
  742.  
  743. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:#000;-webkit-border-radius:px;}
  744.  
  745. {CustomCSS}
  746.  
  747. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  748.  
  749.  
  750.  
  751. #desc {z-index: 1;background-color:#fff;position:fixed;width:183px; line-height: 10px; font-size:12px; font-family:calibri; text-align:center; color:{color:desc}; padding: 5px; margin-top:375px; margin-left:8px; overflow:hidden;border-bottom: 2px solid {color:links};}
  752.  
  753.  
  754.  
  755. #paginacaoml {font-family: arial sans; font-size:8px; font-weight: none; line-height: 15px; text-shadow: 0 0px 0px #000;}
  756. #paginacaoml a {background: {color:pag}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
  757. #paginacaoml a:hover {background: {color:pag};}
  758. #paginacaoml span.pagina_atual {background: #; margin: 0 1px 0 0; padding: 1px 3px; color:{color:links}; text-decoration: none;}
  759. #paginacaoml span.info {background: {color:pag}; margin: 0 0px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
  760.  
  761.  
  762. .rs {right:1px;margin-left: autopx; margin-top: -450px;font-size: 10px; background-color: #000000; font-family: Homenaje; line-height:16px; color:#fff; position: fixed; -webkit-border-radius: 0px 0px 0px 0px; overflow: hidden; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index: 1; text-align: center; font-style: bold; padding-bottom: 9px}
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769. </style>
  770.  
  771. </head>
  772.  
  773.  
  774.  
  775. <body>
  776.  
  777.  
  778.  
  779. <div id="container">
  780.  
  781. <div id="entries">
  782. {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
  783. <script type="text/javascript"
  784.  
  785. src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
  786.  
  787.  
  788. {block:SearchPage}<div class="search_result">{SearchResultCount} results</div>{/block:SearchPage}
  789.  
  790.  
  791.  
  792. {block:Posts}
  793.  
  794. <div id="entry">
  795. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  796.  
  797. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}
  798. <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Photo}
  799.  
  800. {block:Photoset}{Photoset-500}
  801. <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>
  802. {/block:Photoset}
  803.  
  804.  
  805. {block:Quote}
  806. <div class="qquote"><div class="fj">“</div><div style="margin-top: -80px;margin-left:25px;background-color: #c5c4c4;padding: 15px;-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;">{Quote}</div></div>
  807. {block:Source}<div class="qsource"><br> — {Source}</div>
  808. {/block:Source}
  809. {/block:Quote}
  810.  
  811. {block:Link}
  812. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  813. {block:Description}{Description}{/block:Description}
  814. {/block:Link}
  815.  
  816. {block:Chat}
  817. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  818. <div class="chat"><ul>{block:Lines}
  819. <li class="person{UserNumber}">{block:Label}
  820. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  821. {/block:Chat}
  822.  
  823. {block:Audio}
  824. <div class="audioimage">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  825. {AudioPlayerWhite}
  826. <div class="playcount">{PlayCountWithLabel}</div>
  827. <div class="cap">{block:Caption}{Caption}{/block:Caption}</div>
  828. {/block:Audio}
  829.  
  830. {block:Video}{Video-500}
  831. <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Video}
  832.  
  833. {block:Answer}
  834. <img src="{AskerPortraitURL-48}" align="left" class="askborder" class="dreamgirl"><div class="bubble"><span></span><b>{Asker}</b>
  835. {Question}&nbsp;</div><br>{Answer} {/block:Answer}
  836.  
  837. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  838. <img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  839. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  840. {/block:ContentSource}</div>
  841.  
  842.  
  843.  
  844. <div id="clear"></div>
  845.  
  846. {block:Date} <div class="info"> <a href="{Permalink}">{TimeAgo}</a> {/block:Date} {block:NoteCount} . <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{Block:IndexPage} <a href="{ReblogUrl}" target="_blank"> . <img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png" class="" title=""> <b>r</b>eblog </a> {/Block:IndexPage} {block:RebloggedFrom} . via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  847. <br>
  848. {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  849. </div></div>
  850. {/block:Posts}
  851. {block:PostNotes}
  852. <div id="nts"><div id="ntstext"> . {PostNotes}</div></div>
  853. {/block:PostNotes}
  854. </br></br></br>
  855. </div>
  856.  
  857. </div>
  858.  
  859.  
  860.  
  861. </div></div>
  862.  
  863. </div></div></div></div>
  864.  
  865.  
  866.  
  867.  
  868. <div id="sidebar">
  869. <div id="hak">
  870. <center><div class="optitle"> ANTIGO-BRASILEIRO </div></div>
  871.  
  872. <div id="bolinha"><a href="/" style="color:#000" >home</a></div>
  873. <div id="bolinha"><a href="/piu" style="color:#000" >F.ask</a></div>
  874. <div id="bolinha"><a href="/tagged/ftf" style="color:#000" >Fotos Frases</a></div>
  875. <div id="bolinha"><a href="/tagged/frases4" style="color:#000" >Recentes</a></div>
  876. <div id="bolinha"><a href="/tagged/frases3" style="color:#000" >mine 3</a></div>
  877. <div id="bolinha"><a href="/tagged/frases2" style="color:#000" >mine 2</a></div>
  878. <div id="bolinha"><a href="/tagged/frases1" style="color:#000" >mine 1</a></div>
  879. <div id="bolinha"><a href="/tagged/quadro" style="color:#000" >COMIC STRIP</a></div>
  880. <div id="bolinha"><a href="http://ir0n-girl.tumblr.com/" style="color:#000" >fiona</a></div>
  881. <div id="bolinha"><a href="http://themes-a-b.tumblr.com/" style="color:#000" >My themes</a></div>
  882.  
  883.  
  884. <b>[...] Como não consigo te falar, eu escrevo <font color='#FF6660'>...</font> </b><a href="https://twitter.com/share" class="twitter-share-button" data-via="Antesdotumblr" data-lang="pt">Tweetar</a>
  885. <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
  886.  
  887. </div>
  888.  
  889.  
  890.  
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901. <div id="foto">
  902.  
  903.  
  904.  
  905.  
  906.  
  907. <img src="http://static.tumblr.com/vz9dmqi/s0Em99wgn/cats.jpg" width= "190px;" height= "260px;"/></a> <br><div id="pag"><div class="falamuito"><span id="wipe">Vontade de sumir. Mesmo sem ter pra onde ir.</span>
  908. </div>
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919. <div id="sbar5"> <center><div id="paginacaoml"><span style="font-weight: normal;">
  920. {block:Pagination}
  921. {block:JumpPagination length="4"}
  922. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  923. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  924. {/block:JumpPagination}
  925. {/block:Pagination}
  926. </center>
  927. </div></div>
  928.  
  929.  
  930.  
  931.  
  932. </div>
  933. </div></div>
  934.  
  935.  
  936.  
  937.  
  938. </body>
  939.  
  940. <!--SCM Music Player by Adrian C Shum - http://scmplayer.net-->
  941. <script type="text/javascript" src="http://scmplayer.net/script.js" ></script>
  942. <script type="text/javascript">
  943. SCMMusicPlayer.init("{'skin':'http://static.tumblr.com/lbe2k6j/gnOm2w4gh/derlan.css','playback':{'autostart':'true','shuffle':'true','volume':'100'},'playlist':[{'title':'N%E3o sei','url':'http://www.youtube.com/watch?v=C9M1kqOTC_M'},{'title':'N%E3o sei','url':'http://www.youtube.com/watch?v=B2wBNY8xaS8'},{'title':'N%E3o sei','url':'http://www.youtube.com/watch?v=oGAGC4irCVk'},{'title':'me gusta *-*','url':'http://www.youtube.com/watch?v=p4wcW3mWPfw'},{'title':'N%E3o sei','url':'http://www.youtube.com/watch?v=NPTPmd-SjXo'},{'title':'T%F4 Ficando Louco','url':'http://www.youtube.com/watch?v=zAYpy9jCvW4'},{'title':'Pollo - Buxixos & Simpatias','url':'http://www.youtube.com/watch?v=CLYhmpJl4-4'}],'placement':'bottom','showplaylist':'false'}");
  944. </script>
  945. <!--End of SCM Music Player script-->
  946.  
  947.  
  948. <div id="credit">
  949.  
  950.  
  951.  
  952. <a title="Theme feito por ANTIGO-BRASILEIRO, + base de late-to-write" href="http://antigo-brasileiro.tumblr.com">© theme</a>
  953.  
  954.  
  955.  
  956. </div>
  957.  
  958.  
  959. </html>
Advertisement
Add Comment
Please, Sign In to add comment