babirdgs

Theme Twenty One

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