ANTIGO-BRASILEIRO

exclusivo thica

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