ANTIGO-BRASILEIRO

fiixa #27

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