Don't like ads? PRO users don't see any ads ;-)
Guest

welcome welcome

By: a guest on Jul 22nd, 2012  |  syntax: None  |  size: 42.98 KB  |  hits: 5,448  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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 i-ngenuidade !>
  6.      
  7.     <head>
  8.  
  9. <script type="text/javascript">
  10. //desabilita menu de opcoes ao clicar no botao direito
  11. function desabilitaMenu(e)
  12. {
  13. if (window.Event)
  14. {
  15. if (e.which == 2 || e.which == 3)
  16. return false;
  17. }
  18. else
  19. {
  20. event.cancelBubble = true
  21. event.returnValue = false;
  22. return false;
  23. }
  24. }
  25.  
  26. //desabilita botao direito
  27. function desabilitaBotaoDireito(e)
  28. {
  29. if (window.Event)
  30. {
  31. if (e.which == 2 || e.which == 3)
  32. return false;
  33. }
  34. else
  35. if (event.button == 2 || event.button == 3)
  36. {
  37. event.cancelBubble = true
  38. event.returnValue = false;
  39. return false;
  40. }
  41. }
  42.  
  43. //desabilita botao direito do mouse
  44. if ( window.Event )
  45. document.captureEvents(Event.MOUSEUP);
  46. if ( document.layers )
  47. document.captureEvents(Event.MOUSEDOWN);
  48.  
  49. document.oncontextmenu = desabilitaMenu;
  50. document.onmousedown = desabilitaBotaoDireito;
  51. document.onmouseup = desabilitaBotaoDireito;
  52. </script>
  53.  
  54. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  55.  
  56.  <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  57.  
  58. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  59. <script type="text/javascript">
  60. function slideSwitch() {
  61.     var $active = $('#slideshow2 img.active');
  62.    
  63.         $active.addClass('last-active');
  64.        
  65.         // verifica se existe um próximo objeto na div #slideshow2, caso ele nao exista, retorna para o primeiro
  66.     var $next =  $active.next().length ? $active.next() : $('#slideshow2 img:first');
  67.  
  68.     $next.css({opacity: 0.0})
  69.         .addClass('active')
  70.         .animate({opacity: 1.0}, 1000, function() {
  71.             $active.removeClass('active last-active');
  72.         });
  73. }
  74.  
  75. $(function() {
  76.         //Executa a função a cada 2 segundos
  77.         setInterval( "slideSwitch()", 2500 );
  78. });
  79. </script>
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. <script type="text/javascript">
  88.  
  89.  
  90. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  91.  
  92.  
  93.  
  94.  
  95. function tb8_makeArray(n){
  96.  
  97.  
  98. this.length = n;
  99.  
  100.  
  101. return this.length;
  102.  
  103.  
  104. }
  105.  
  106.  
  107.  
  108.  
  109. tb8_messages = new tb8_makeArray(1);
  110.  
  111.  
  112.  
  113.  
  114. tb8_messages[0] = "{Title}";
  115.  
  116.  
  117.  
  118.  
  119. tb8_rptType = 'infinite';
  120.  
  121.  
  122.  
  123.  
  124. tb8_rptNbr = 5;
  125.  
  126.  
  127.  
  128.  
  129. tb8_speed = 100;
  130.  
  131.  
  132.  
  133.  
  134. tb8_delay = 2000;
  135.  
  136.  
  137.  
  138.  
  139. var tb8_counter=1;
  140.  
  141.  
  142.  
  143.  
  144. var tb8_currMsg=0;
  145.  
  146.  
  147.  
  148.  
  149. var tb8_tekst ="";
  150.  
  151.  
  152.  
  153.  
  154. var tb8_i=0;
  155.  
  156.  
  157.  
  158.  
  159. var tb8_TID = null;
  160.  
  161.  
  162.  
  163.  
  164. function tb8_pisi(){
  165.  
  166.  
  167.  
  168.  
  169. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  170.  
  171.  
  172.  
  173.  
  174. document.title = tb8_tekst;
  175.  
  176.  
  177.  
  178.  
  179. tb8_sp=tb8_speed;
  180.  
  181.  
  182.  
  183.  
  184. tb8_i++;
  185.  
  186.  
  187.  
  188.  
  189. if (tb8_i==tb8_messages[tb8_currMsg].length){
  190.  
  191.  
  192.  
  193.  
  194. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  195.  
  196.  
  197.  
  198.  
  199. }
  200.  
  201.  
  202.  
  203.  
  204. if (tb8_currMsg == tb8_messages.length){
  205.  
  206.  
  207.  
  208.  
  209. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  210.  
  211.  
  212.  
  213.  
  214. clearTimeout(tb8_TID);
  215.  
  216.  
  217.  
  218.  
  219. return;
  220.  
  221.  
  222.  
  223.  
  224. }
  225.  
  226.  
  227.  
  228.  
  229. tb8_counter++;
  230.  
  231.  
  232.  
  233.  
  234. tb8_currMsg = 0;
  235.  
  236.  
  237. }
  238.  
  239.  
  240.  
  241.  
  242. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  243.  
  244.  
  245.  
  246.  
  247. }
  248.  
  249.  
  250.  
  251.  
  252. tb8_pisi()
  253.  
  254.  
  255.  
  256.  
  257. </script>
  258.  
  259.       <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  260.      
  261.      <!-- DEFAULT VARIABLES -->
  262.     <meta name="color:background" content="#f8f8f8" />
  263.     <meta name="color:link" content="#000000" />
  264.      <meta name="color:bgfrase" content="#000000" />
  265.       <meta name="color:text" content="#000000" />
  266.     <meta name="color:post" content="#ffffff" />
  267.     <meta name="color:border" content="#000000" />
  268. <meta name="color:frase" content="#ffffff" />
  269.     <meta name="color:scroll" content="#000000" />
  270.     <meta name="color:ask" content="#ebebeb" />
  271.     <meta name="color:bgdescription" content="#ebebeb" />
  272.     <meta name="color:textdescription" content="#000" />
  273.     <meta name="color:links" content="#000" />
  274.     <meta name="color:tags" content="#000" />
  275.     <meta name="color:linkbg" content="#ffffff" />
  276.     <meta name="color:linktext" content="#000" />
  277.      <meta name="color:linktext1" content="#000" />
  278.     <meta name="color:linkbghover" content="#000" />
  279.     <meta name="color:linktexthover" content="#fff" />
  280.     <meta name="color:bgpage" content="#EEEEEE" />
  281. <meta name="color:xizinhodoslinks" content="#FF1493" />
  282.  <meta name="color:link1" content="#ffffff" />
  283.   <meta name="color:link2" content="#ffffff" />
  284.  
  285.      <meta name="color:maislinkhover" content="#ffffff" />
  286.      <meta name="color:fundo" content="#ffffff" />
  287.  
  288.      
  289.      
  290.     <meta name="image:background" content="" />
  291.     <meta name="image:fotinha" content="http://static.tumblr.com/ylxfgce/9tnm73xw1/xuxiz.jpg"/>
  292.      
  293.     <meta name="font:text" content="verdana" />
  294.     <meta name="font:title" content="georgia" />
  295.    
  296.      <meta name="text:titulo" content="you are everything" />
  297.        <meta name="text:frase2" content="i'm sexy and free" />
  298.      <meta name="text:linkcoracao" content="/" />
  299.     <meta name="text:link1" content="/" />
  300.     <meta name="text:Link1 Title" content="link" />
  301.     <meta name="text:Link2" content="/" />
  302.     <meta name="text:Link2 Title" content="link" />
  303.     <meta name="text:Link3" content="/" />
  304.     <meta name="text:Link3 Title" content="link" />
  305.     <meta name="text:Link4" content="/" />
  306.     <meta name="text:Link4 Title" content="link" />
  307.     <meta name="text:Link5" content="/" />
  308.     <meta name="text:Link5 Title" content="link" />
  309.     <meta name="text:Link6" content="/" />
  310.     <meta name="text:Link6 Title" content="link" />
  311.     <meta name="text:Link7" content="/" />
  312.     <meta name="text:Link7 Title" content="link" />
  313.  
  314.      
  315.      
  316.      
  317.        
  318.      
  319.                         <title>{Title}</title>
  320.     <link rel="shortcut icon" href="{Favicon}">
  321.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  322.     {block:Description}
  323.     <meta name="description" content="{MetaDescription}" />
  324.     {/block:Description}
  325.  
  326.      <link href='http://fonts.googleapis.com/css?family=Megrim' rel='stylesheet' type='text/css'>
  327.      
  328.         <style type="text/css">
  329.      
  330.      
  331.     body {background-color: {color:background}; font-family: georgia; color: {color:text}; text-align: center; font-size: 9px; background-image:url('{image:background}'); background-attachment: fixed; }
  332.      
  333.     a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  334.      
  335.     p {margin: 6px 0 0 0}
  336.      
  337.     blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  338.     blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  339.     blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  340.     blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  341.      
  342.     blockquote img{max-width: 470px!important}
  343.     blockquote blockquote img{max-width: 450px!important}
  344.     blockquote blockquote blockquote img{max-width: 430px!important}
  345.     blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  346.     .qquote{font-family: Georgia; font-size: 15px; letter-spacing: 0px; line-height: 18px; text-transform: none;  text-align: center;
  347.  
  348. }
  349. .qsource{margin-top: 5px; margin-right: 15px;text-align: center}
  350.    
  351.     #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width: 935px; position:fixed; }
  352.      
  353.     #entries{float: left; margin-left:320px; margin-top: 20px; position: relative; border-left: 0px solid {color:background}; z-index:1000; }
  354.      
  355.     #msd {width: 350px; height: 350px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar};}
  356.      
  357.      
  358.      
  359.     .danpost {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: tahoma; font-size: 11px;}
  360.      
  361.     h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  362.     h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link}; font-weight: normal; line-height: 18px;}
  363.     h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  364.      
  365.     .image {text-align: center; border: 0px}
  366.     .image img {max-width: 500px; opacity:0.9; margin-bottom: 2px }
  367.      
  368.     .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  369.     .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  370.     .oiqqtts a, a:hover{text-transform: none;}
  371.      
  372.     .chat {line-height: 13px; list-style: none }
  373.     .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  374.     .person1 {color: {color:text}; padding: 2px; }
  375.     .person1 .label {font-weight: bold;  color:{color:text}}
  376.     .person2 {color: {color:text}; padding: 2px;  }
  377.     .person2 .label {font-weight: bold;  color:{color:text}}
  378.      
  379.     .player {background-color: #000; text-align: left; display:block;}
  380.      
  381.  
  382.  
  383. .bg {width: 480px; background-color: {color:entrie}; color:{color:text}; margin-top: 5px; padding-right: 10px; padding-left: 5px; padding-top: 2px; padding-bottom: 3px; border-radius:8px;}
  384.  
  385. #info{margin-top: 15px; }
  386. #info a{color: {color:link} !important}
  387. #info a:hover{color:{color:linkhover}!important}
  388. .tags{font-size: 10px; display: inline; text-align: left;text-transform: lowercase;}
  389.  
  390. .source{display:none}
  391.      
  392.     #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  393.     #oidata a {font-size: 9px;}
  394.    
  395.      #oidata2 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-24px;}
  396.     #oidata2 a {font-size: 9px;}
  397.    
  398.       #oidata3 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-14px; }
  399.     #oidata3 a {font-size: 9px;}
  400.      
  401.     .tags {color: {color:text};  font-size: 9px; font-family: {font:text};  display: inline; list-style: none; text-transform: lowercase;}
  402.     .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  403.      
  404.     #cap {width: 500px; margin-top: -2px;}
  405.     .source {display: none;}
  406.      
  407.     .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  408.     ol.notes {list-style: none;  margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  409.     ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  410.     .notes img{display: none; border:0px}
  411.      
  412.      .question {
  413.     color: {color:text};
  414.     font-size: 11px;
  415.     font-weight: normal;
  416.     font-family: {font:body};
  417.     line-height:95%;
  418.     background: {color:ask};
  419.     margin: 0 0 10px 0;
  420.     padding: 10px 15px;
  421.     position: relative;}
  422.      
  423.     .questionarrow {
  424.     width: 13px;
  425.     height: 7px;
  426.     font-size:30px;
  427.     font-family: verdana;
  428.     position: absolute;
  429.     color: {color:ask};
  430.     bottom: -3.5px;
  431.     left: 240px;}
  432.      
  433.      
  434.     .asker {width:500px; text-align:center; text-transform:none; color:{color:text};}
  435.     .asker a {color: {color:text};}
  436.     .asker img {float:left; margin-left:220px; vertical-align:top; margin-right:3px; max-height:15px;}
  437.      
  438.     .answer {color: {color:text};}
  439.      
  440.    
  441.      
  442.      
  443.     .fj {font-size: 130px; font-family: arial; line-height: 95px; margin-left: 5px; color: {color: titulos posts}; opacity:0.15; -moz-opacity: 0.15; filter: alpha(opacity=15);}
  444.     .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  445.      
  446.     @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453. #chuchus {width:90px; height:8px; margin-top:195px; margin-left: 137px; background-color:  {color:text}; position:fixed; font-size: 15px; pacity:0.9; z-index:100000; }
  454.  
  455.  
  456. #heey {width:3px; height:1000px; margin-top:-1px; margin-left: 315px; background-color:  {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  457.  
  458. #heeyb {width:535px; height:3px; margin-top:-4px; margin-left: 315px; background-color:  {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  459.  
  460. #heey2 {width:182px; height:338px; margin-top:130px; margin-left: 128px; background-color:  {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:100}
  461. #heey3 {width:182px; height:2px; margin-top:130px; margin-left: 128px; background-color:  {color:text}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  462.  
  463.  
  464. #fundolinks {width:153px; height:75px; margin-top:305px; margin-left: 158px; background-color:  {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  465.  
  466.  
  467. #safadinha {position: fixed; width:300px; margin-left:230px; margin-top:352px; z-index:100}
  468.  
  469. .baunilha {width:80px; height:12px; background-color:  {color:background}; position:fixed; color: {color:text}; font-size: 18px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index: 1000; -webkit-transition: all 0.6s ease; z-index:0 }
  470. .baunilha:hover {text-align: center; background-color: {color:background}; color:{color:frase}; letter-spacing:0px; z-index:900}
  471.  
  472. .baunilha:hover #bumbum {margin-top:-25px;height:auto; margin-left:-10px;}
  473.  
  474. #bumbum { float:left; display:block; width:190px; height: auto; margin-left: 140px; color:{color:text sidebar}; font-family:verdana; font-size:9px; text-align:justify; padding:1px; margin-top:-25px; opacity:0.9; overflow:hidden; -webkit-transition: all 0.6s ease;
  475. text-align: justify; }
  476. #bumbum a {text-align: center; margin-top:1px; margin-bottom: -2px; font-family: tahoma; font-size: 10px; color: {color:text}; letter-spacing: 0px; text-transform: none; -webkit-transition: 0.4s ease-in;-moz-transition: 0.4s ease-in; transition: 0.4s ease-in; }
  477. #bumbum a:hover{background-color:transparent; color:{color:maislinkhover}; font-weight: bold;}
  478.  
  479.  
  480.  
  481.  
  482.  
  483. #tchetche {width:80px; height:12px; margin-top:344px; margin-left: 120px; background-color:  transparent; position:fixed; color: {color:text}; font-size: 13px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index:1000;  -webkit-transform: rotate(-270deg); }
  484. #tchetche2 {width:80px; height:12px; margin-top:373px; margin-left:142px; background-color:  transparent; position:fixed; color: {color:text}; font-size: 13px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index:1000 }
  485.  
  486. #chupa {width:1px; height:102px; margin-top:67px; margin-left: 80px; background-color:  transparent; position:fixed; color: {color:text}; font-size: 13px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index:1000 }
  487.  
  488.  
  489.  
  490. #barra3 {width:10px; height:12px; margin-top:88px; margin-left: 145px; background-color: transparent; position:fixed; padding:4px; font-size: 40px; font-family: Give You Glory; text-transform: lowercase; color: {color:text}; text-align: right; -moz-transform: rotate(-25deg);-webkit-transform: rotate(-25deg);-o-transform: rotate(-25deg);-ms-transform: rotate(-15deg);transform: rotate(-10deg);}
  491.  
  492.    
  493.     #sideimg {display: block; margin-left: 202px; float: right; margin-top: 19px; width: auto; height: auto; background-color: transparent; position: fixed; z-index:30;}
  494.     .simg1 img {width: 135px; height: 160px; margin-bottom: 2px; border: 4px solid {color:fundinho};}
  495.      
  496.      #pag {width: 15px; padding:1px; background-color: {color:bgpage}; position:fixed; text-align: center; margin-top: 100px; margin-left: 119px;}
  497.  
  498. #cruz {position: fixed; margin: 200px 0px 0px 60px; }
  499.  
  500. #acruz {width: 39px; position: absolute;  margin-left: -92px; margin-top: -365px; color: {color:cruz};  font-size: 60px; -webkit-transform: rotate(-20deg);}
  501. #acruz:hover { -webkit-transform: rotate(0deg);}
  502.  
  503. #home {width: 24px; position: fixed; float: left; font-size: 9px; font-family: tahoma; color: {color:cruz}; padding: 5px; height: 24px; margin-left: 110px; rotation: 10px; margin-top: 280px; margin-top: 185px; -moz-border-bottom-left-radius: 0px; border-bottom-left-radius: 0px; z-index: 20;}
  504.  
  505.  
  506. #pgs {text-align: center; font-family: verdana; font-size: 8px; line-height: 15px; -moz-border-bottom-left-radius: 10px; border-top-left-radius: 10px; z-index: 1}
  507. #pgs a {background: #000; margin: 30 0px 0 0; padding: 2px 4px; color: {color:background}; text-decoration: none;}
  508. #a:hover {background: {color:sidebar}; color: {color:link hover}; border: none;}
  509. #pgs span.pagina_atual {background: {color:border};  padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  510. .pg { position:fixed !important; clear: both; float: left; margin-top: 120px; margin-left: 100px; width: 207px; height: 15; font-size: 9px; padding: 2px;  background-color: {color:sidebar}; -moz-border-bottom-left-radius: 10px; border-bottom-left-radius: 10px; -moz-border-bottom-right-radius: 10px; border-bottom-right-radius: 10px; z-index: 1;}
  511.  
  512. #pagina{ margin-top: 120px; margin-left: 170px; width: 100px; float: right; background-color: transparent; position: fixed;  height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:1000000 }
  513.  
  514. /*** Paginação by madlyluv.com ***/
  515. #paginacaoml {font-size: 20px; font-family: tahoma; line-height: 24px;}
  516. #paginacaoml a {font-size: 20px; font-family: tahoma; background: transparent; margin: 0 1px 0 0; padding: 2px 2px; color: {color:tags}; text-decoration: none;}
  517. #paginacaoml a:hover {font-size: 20px; font-family: tahoma; background: transparent; border: none;}
  518. #paginacaoml span.pagina_atual {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none; font-weight: bold;}#paginacaoml span.info {background: {color:link}; margin: 0 1px 0 0; padding: 1px 2px; color: #cor da fonte; text-decoration: none;}
  519.  
  520.  
  521. #pagination {width:240px; font-family:georgia; text-align:right; font-size:15px; padding:4px; font-style:italic}
  522.  
  523.  
  524. #frase {width:185px; height:40px; margin-top:75px; margin-left: 110px;  position:fixed; padding:4px; font-size: 25px; overflow:hidden; font-family: megrim; text-transform: uppercase; color: {color:frase}; text-shadow: -2px  0px  #E86060, 2px 0px #54d2cb; transition: all .5s ease-in-out!important; -webkit-transition: all .5s ease-in-out!important;line-height: 50px; text-align: center; z-index:10000000}
  525.  
  526.  
  527.  
  528.  
  529. #frase:hover {text-shadow: 0px  0px  {color:text links}, 0px 0px {color:text links};transition: all .5s ease-in-out!important; -webkit-transition: all .5s ease-in-out!important;}
  530.  
  531. #side {position: fixed; width:210px; margin-left:127px; margin-top:130px; z-index:100}
  532.  
  533. .photo {position:absolute; width:175px; padding:0px; background-color:{color:sidebar}; overflow: hidden;-webkit-transition: all 0.6s ease; margin-top:50px; border: 4px solid {color:border}; }
  534. .photo:hover {opacity:0.8; -webkit-transition: all 0.6s ease;}
  535. .photo img {display: block;width:185px; height:225px; }
  536.  
  537. .photo:hover #upupup {margin-left:2px; -webkit-transition: 0.9s ease-in;
  538. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in;}
  539.  
  540. .photo:hover #upupup2 {margin-left:0px; margin-top:200px;  -webkit-transition: 0.9s ease-in;
  541. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in;}
  542. .photo:hover #twitter {margin-left:0px; margin-top:80px;  -webkit-transition: 0.9s ease-in;
  543. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in;}
  544.  
  545. #twitter {width: 17px; position: absolute; background-color: #ffffff; font-size: 9px; font-family: tahoma; padding: 5px; height: 16px; margin-left: -50px;  margin-top: -10px;  z-index: 0; margin-top: 80px; opacity:0,6;  -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in;
  546. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in;}
  547.  
  548. #twitter img {height:17px; width:17px; margin-left:-2px;  }
  549.  
  550.  
  551. #upupup {width: 220px; float: left; margin-left:280px; margin-top: -6px; padding: 0px; text-align: center; position: absolute;  -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  552. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in;}
  553.  
  554. #upupup a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center;  width: 58px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 18px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  555.  
  556. #upupup  a:hover{text-align: center; background-color: {color:background}; color: {color:linktexthover};}
  557.  
  558. #upupup2 {width: 220px; float: left; margin-left:280px; margin-top: 200px; padding: 0px; text-align: center; position: absolute;  -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  559. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  560.  
  561. #upupup2 a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center;  width: 42px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 18px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  562.  
  563. #upupup2  a:hover{text-align: center; background-color: {color:background}; color: {color:linktexthover};}
  564.  
  565. #upupup3 {width: 220px; float: left; margin-left:2px; margin-top: -50px; padding: 0px; text-align: center; position: absolute; -moz-border-bottom-right-radius: 60px; border-bottom-right-radius: 60px; -moz-border-top-right-radius: 60px; border-top-right-radius: 60px; z-index: 1;  -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  566. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  567.  
  568. #upupup3 a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center;  width: 20px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 20px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  569.  
  570. #upupup3  a:hover{text-align: center; background-color: {image:background}; color: {color:linktexthover};}
  571.  
  572.  
  573. #beeijo {width: 220px; float: left; margin-left:2px; margin-top: -50px; padding: 0px; text-align: center; position: absolute;  -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  574. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  575.  
  576. #beeijo a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center;  width: 15px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 20px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  577.  
  578. #beeijo  a:hover{text-align: center; background-color: {color:background}; color: {color:linktexthover};}
  579.  
  580.  
  581.  
  582.  
  583.      
  584.     .li {opacity: 1}
  585.     .li2 {opacity: 0.8}
  586.     .li3 {opacity: 0.6}
  587.     .li4 {opacity: 0.8}
  588.     .li5 {opacity: 1}
  589.      
  590.     #kitty {width: 160px; text-align: center; margin-top:137px; margin-bottom: -2px; font-family: verdana; font-size: 9px; color: {color:text}; letter-spacing: 0px; text-transform: none; -webkit-transition: 0.4s ease-in;-moz-transition: 0.4s ease-in; transition: 0.4s ease-in; margin-left: 15px;}
  591.      
  592.     #kitty a:hover{ opacity: 0.8; }
  593.  
  594.      
  595.     #faixa {margin-top: 50px; margin-left: -10px; position: fixed; background-color: {color:bobsponja}; height: 140px; width:354px; }
  596.      
  597.   #faixa2 {margin-top: -50px; margin-left: 50px; position: fixed; background-color: {color:bobsponja}; height: 2000px; width:30px; }
  598.  
  599. @font-face {
  600. font-family: 'Give You Glory';
  601. font-style: normal;
  602. font-weight: norAmal;
  603. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  604. }
  605.  
  606.  
  607. #title {width: 215px; height: 55px; position: fixed; background-color:transparent; margin-left: 120px; margin-top: 55px; }
  608. .optitle{font-family: Give You Glory; font-size: 15px; font-style: none;
  609. line-height: 15px; font-weight: none; color: #777777; margin-top: 10px; margin-left: -5px;   text-transform: none; letter-spacing: 0px}
  610.  
  611.      
  612.  #links {width: 10px; float: left; margin-left: 99px; margin-top: -121px; padding: 0px; text-align: center; position: fixed; padding: 0px; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out; z-index:10000}
  613.  
  614. #links a {float: left; margin-left: 1px; display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; width: 22px; background-color: {color:link1}; color:{color:linktext}; text-decoration: none; line-height: 18px; height: 18px; overflow: hidden;  margin-top: 220px; margin-bottom: 1px; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out;}
  615.  
  616. #links  a:hover{text-align: center; background-color: {color:barrinha}; color:{color:letradabarrinha}; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out;}
  617.  
  618. #meus{text-align: justify; font-size: 9px; font-family: calibri; position: fixed; margin-left: 1000px; width:198px; height: 20px; background-color: {color:border}; -moz-border-top-left-radius: 10px; border-top-left-radius: 10px; z-index: 1; -moz-border-top-right-radius: 10px; border-top-right-radius: 10px; z-index: 1; text-align: center; color: {color:linktext}; padding: 2px; margin-top: 85px; background-attachment: fixed; border-left: 0px solid ; padding:5px;z-index: 830;}
  619. #meus a {text-align: center; margin-top:1px; margin-bottom: -2px; font-family: tahoma; font-size: 10px; color: {color:linktext}; letter-spacing: 0px; text-transform: none; -webkit-transition: 0.4s ease-in;-moz-transition: 0.4s ease-in; transition: 0.4s ease-in; }
  620.  
  621.  
  622. #textv {width:180px; height: 190px; margin-left:130px; margin-top:412px; position:fixed;  color: {color:frase}; z-index: 100000; font-family: tahoma; font-size:10px;text-transform: lowercase; border-left:0px solid; border-right:0px solid; padding:3px; width: 174px; height:60px; border: 0px solid {color:border};}
  623.  
  624.  
  625. #textya {width:200px; height: 0px; margin-left:118px; margin-top:153px; position:fixed;  color: {color:frase}; z-index: 100000; font-family: 'homenaje'; font-size:21px;text-transform: lowercase; border-left:0px solid; border-right:0px solid; padding:3px; width: 200px; height:10px; border: 0px solid {color:border};}
  626.  
  627. #textg {width:118px; height: 10px; margin-left:115px; margin-top:200px; position:fixed; color: {color:textdescription}; z-index: 10; overflow: auto;  font-family: tahoma; font-size:30px;text-transform: lowercase;  font-family: megrim; text-transform: uppercase; color: {color:frase}; transition: all .5s ease-in-out!important; -webkit-transition: all .5s ease-in-out!important;line-height: 50px; text-align: center; z-index:10000000border-left:0px solid; border-right:0px solid; padding:3px; width: 200px; height:220px; border: 0px solid {color:border};}
  628.  
  629. #masoq{text-align: justify; font-size: 9px; font-family: verdana; position: fixed; margin-left: 68px; width: 20px; height: 120px; background-color: {linkbg}; color: #838383; padding: 6px; margin-top: 80px; background-attachment: fixed;}
  630.  
  631. #emcima {z-index: 90; margin-top: 900px; background-color:{color:background}; width: 1320px; height: 50px; padding: 0px; position: fixed; margin-left: 100px;}
  632. #emcima2 { width: 696px; -webkit-border-radius: 0px 0px 0px 0px; margin-left: 261px; height: 1px; margin-top: 0px; float:left; text-align: right; background-color: {color:sidebar}; font-size: 9px; position:fixed; padding: 5px; color: {color:text}; font-family: {font:text}}
  633.  
  634. #oie {position: fixed; margin-left: 0px; margin-top: 100px; display: none;}
  635.  
  636. #bebezinha {position: absolute; width: 200px; margin-left: -10px; margin-top: -176px; padding: 0px; text-align: center; z-index:3;}
  637. #bebezinha a {float: left; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-right: 0px; margin-bottom: 0px;margin-top: 247px;  width: 46px; background-color: {color:bglink}; color: {color:linktext}; text-decoration: none; text-transform: uppercase; height: 18px; line-height: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  638. #bebezinha  a:hover{text-align: center; background-color: {color:linkbghover}; color: {color:linksshover};text-shadow:6px 5px 9px #000;}
  639.  
  640.  
  641. #bebezinha2 {position: absolute;  margin-left: -88px; margin-top: 450px; padding: 0px; text-align: center; z-index:3;}
  642. #bebezinha2 a {float: left; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-right: 0px; margin-bottom: 1px;margin-top: 217px;  width: 48px; background-color: {color:linkbg}; color: {color:linktext}; text-decoration: none; text-transform: uppercase; height: 20px; line-height: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;  }
  643. #bebezinha2  a:hover{text-align: center; background-color: {color:linkbghover}; color: {color:linktexthover};text-shadow:6px 5px 9px #000;  }
  644.  
  645.  
  646.  
  647.  
  648. .links1 {position: absolute; width: 20px; margin-left:90px; margin-top:245px; padding: 0px; text-align: center; z-index:3;}
  649. .links1 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase;  line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  650. .links1  a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  651.  
  652. .links2 {position: absolute; width: 20px; margin-left:161px; margin-top:245px; padding: 0px; text-align: center; z-index:3;}
  653. .links2 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase;  line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  654. .links2  a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  655.  
  656. .links3 {position: absolute; width: 20px; margin-left:90px; margin-top:261px; padding: 0px; text-align: center; z-index:3;}
  657. .links3 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase;  line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  658. .links3  a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  659.  
  660. .links4 {position: absolute; width: 20px; margin-left:161px; margin-top:261px; padding: 0px; text-align: center; z-index:3;}
  661. .links4 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase;  line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  662. .links4  a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  663.  
  664. .links5 {position: absolute; width: 20px; margin-left:90px; margin-top:277px; padding: 0px; text-align: center; z-index:3;}
  665. .links5 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase;  line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  666. .links5  a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  667.  
  668. .links6 {position: absolute; width: 20px; margin-left:161px; margin-top:277px; padding: 0px; text-align: center; z-index:3;}
  669. .links6 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase;  line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  670. .links6  a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  671.  
  672. .links7 {position: absolute; width: 20px; margin-left:128px; margin-top:49px; padding: 0px; text-align: center; z-index:3;}
  673. .links7 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 40px; background-color: {color:link2}; color: {color:linktext}; text-decoration: none; text-transform:uppercase;  line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  674. .links7  a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  675.  
  676.  
  677. #sdbarsi {font-family: verdana; color: {color:textdescription}; font-size:7px; padding: 3px 3px 4px 3px; width: 110px; height: 7px; margin-top: 200px; margin-left: 220px; font-family: arial; z-index: 200; position: fixed; text-align: center; text-transform: uppercase; letter-spacing: 1px}
  678. #sdbarsi a{font-family: arial; font-size: 8px; letter-spacing: 1px}
  679.  
  680. #credit {width: 170px; margin-left: 28px; height: 9px; margin-top:280px; float:left; text-align: center; font-size: 9px; position:fixed; padding: 4px;  font-family:tahoma; color:{color:text}; -webkit-transform: rotate(270deg); overflow:hidden; z-index:1000;  -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  681.  
  682. #credit:hover { opacity:0.7; color:{color:linktext};  }
  683.  
  684. .credittex {margin-top: -2px; letter-spacing: 0px; text-align: center; font-family: tahoma; font-size: 10px; color:#000; }
  685. .credittex a{color:{color:frase};}
  686.      
  687.      
  688.    .credit {
  689. position:fixed !important;
  690. margin-left: 1028px;
  691. margin-top: 1000px;
  692. margin-bottom: -5px;
  693. font-size: 9px;
  694. width: 49px;
  695. height: 15px;
  696. padding: 1px 3px 3px 2px;
  697. font-family: verdana;
  698. color: #000000;
  699. text-align: center;
  700. background-color: {color:sidebar};
  701. -webkit-transition: all 0.5s ease;
  702. }
  703.      
  704.     ::-webkit-scrollbar{width:5px;height:5px;}
  705.     ::-webkit-scrollbar-button:start:decrement
  706.     ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  707.     ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  708.     ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  709.     ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  710.      
  711.     #tumblr_controls{position: fixed!important}
  712.     #tumblr_controls{position: fixed!important}
  713.     #tumblr_controls{position: fixed!important}
  714.     #tumblr_controls{position: fixed!important}
  715.      
  716.      
  717.      
  718.      
  719.     </style>
  720.      
  721.     </head>
  722.      
  723.      
  724.     <body>
  725.      
  726.  
  727.      
  728.     <div id="tudo">
  729.     <div id="msd">
  730.     </div>
  731.  
  732.  
  733. <div id="heey"></div>
  734. <div id="heey2"></div>
  735. <div id="heey3"></div>
  736. <div id="heeyb"></div>
  737.  
  738.  
  739.  
  740. <div id="chocolate"></div>
  741.  
  742.  
  743.  
  744.  
  745.  
  746.      
  747.    
  748.    
  749.     </div></div>
  750.    
  751.  
  752.  
  753. <div id="side">
  754.  
  755. <div class="photo">
  756. <div id="upupup">
  757.  <a href="http://i-ngthemes.tumblr.com/">{text:link1 title}</a>
  758. <a href="{text:link2}">{text:link2 title}</a>
  759. <a href="{text:link3}">{text:link3 title}</a></div>
  760. <div id="upupup2">
  761.     <a href="{text:link4}">{text:link4 title}</a>
  762.     <a href="{text:link5}">{text:link5 title}</a>
  763.     <a href="{text:link6}">{text:link6 title}</a>
  764. <a href="{text:link7}">{text:link7 title}</a></div>
  765.  <div id="twitter"><a href="{text:linkcoracao}"><img src="http://cdn1.iconfinder.com/data/icons/System%20Tray%20Icons%20v2/16/Last.FM_Alt.png"></a></div>
  766.  
  767.  
  768. <img src="{image:fotinha}">
  769. </div></div>
  770.  
  771.  
  772.  
  773.  
  774. </div></div>
  775.  
  776.  
  777.  
  778.  
  779. </div></div>
  780.  
  781. <div id="textv" title=" text so cute">{description}</div>
  782.  
  783. <div id="textg">{text:frase2}</div>
  784.  
  785.  
  786. <div id="textya">{text:titulo}</div>
  787.  
  788.  
  789.  
  790. <div id="emcima">
  791. </div>
  792.  
  793.  
  794.  
  795.  
  796. <div id="bebezinha">
  797.  
  798. </div>
  799. </div></div>
  800. </div>
  801. </div>
  802. </div>
  803. </li></div>
  804. </div></div>
  805. </div>
  806. </div>
  807. </div>
  808.  
  809.   <div id="emcima2">
  810.  
  811.  
  812. <div></div>
  813.  
  814. <div id="bebezinha2">
  815.  
  816. </div>
  817. </div></div>
  818.  
  819. <div id="cruz">
  820. <div id="acruz"></div>
  821.  
  822.  
  823.  
  824. </div>
  825. <font color="{color:tags}">
  826. <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"alt="" title="previous page baby">←</a>{/block:PreviousPage}{/block:Pagination}
  827.  
  828. {block:JumpPagination length="0"} {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage} {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}{block:Pagination}{block:NextPage}<a href="{NextPage}"alt="" title="next page baby">→</a>{/block:NextPage}{/block:Pagination}</div></div>
  829.  
  830. </div>
  831. </font>
  832.  
  833.    
  834.  
  835. <div id="credit"><div class: "credittex"></a></a> <a href="http://i-ngenuidade.tumblr.com" title="clica aqui baby [] ">  <font color="{color:text}">  by i-ngenuidade, don't copy this shit  </font></a> <a href="http://idolatrado.tumblr.com/"><font color="#FF1493">♥</font></a></div></font>
  836.  
  837.     </a></div>
  838.     <div id="entries">
  839.      {block:Posts}
  840.     <div class="danpost">
  841.      
  842.     {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  843.      
  844.     {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  845.      
  846.     {block:Photoset}{Photoset-500}{/block:Photoset}
  847.      
  848.    {block:Quote}
  849. <div class="qquote"alt="" title="delicate" >"{Quote}"</div>
  850. {block:Source}<div class="qsource"alt="" title="via" ><font color="{color:tags}">~ {Source}</font> ♡ </div>{/block:Source}
  851. {/block:Quote}
  852.      
  853.     {/block:quote}
  854.      
  855.     {block:Link}
  856.     <h1><a href="{URL}" {Target}>{Name}</a></h1>
  857.     {block:Description}{Description}{/block:Description}
  858.     {/block:Link}
  859.      
  860.     {block:Chat}
  861.     {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  862.     <div class="chat"><ul>{block:Lines}
  863.     <li class="person{UserNumber}">{block:Label}
  864.     <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  865.     {/block:Chat}
  866.      
  867.     {block:Audio}
  868.     <div class="player">{AudioPlayerBlack}</div>
  869.     {block:Caption}{Caption}{/block:Caption}
  870.     {/block:Audio}
  871.      
  872.     {block:Video}{Video-500}{/block:Video}
  873.      
  874.      
  875.      {block:Answer}
  876.     <div class="question" title=" asked">
  877.     <div class="questionarrow"></div>{Asker} <b>asked to me:</b> {Question}
  878.     </div>
  879.    
  880.     <div class="answer" title=" i am delicate">{Answer}</div>
  881.     {/block:answer}
  882.  
  883.     <div id="cap">
  884.     {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  885.     {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  886.     {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  887.      
  888.     <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  889.       <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  890.         {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  891. {/block:ContentSource}</div></div>
  892.  
  893.  <div class="bg">
  894. <div class="tags"><b></b> {block:HasTags}{block:Tags}<font color="{color:tags}"># </font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  895.  
  896. <div class="tags">
  897. {block:Date}<a href="{Permalink}">{TimeAgo} . </a> {/block:Date} {block:NoteCount} <a href="{Permalink}"alt="" title="this is good" >{NoteCountWithLabel} <font color= {color:tags}></font> </a>{/block:NoteCount}<div style="float:right;" class="details">{Block:IndexPage}  <a href="{ReblogURL}" target="_blank" alt="" title="reblog this baby? i do a streep tease, hahahahaha" > reblog <img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class=" alt="" title="reblog this baby? i do a streep tease, hahahahaha" > </a>{/Block:IndexPage}<br></div><BR>{block:RebloggedFrom}(<font color= {color:tags}>@</font><a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>)
  898. </span>  {/block:RebloggedFrom}<div style="float:right;" class="details">{block:RebloggedFrom}(<font color= {color:tags}>via</font>: <a href="{ReblogParentURL}">{ReblogParentName}</a>)<br>{/block:RebloggedFrom}</div>
  899. </div>
  900.  
  901.  
  902.  
  903. </div></div>
  904.  {/block:Date}
  905.  
  906.  
  907.  {/block:Posts}
  908. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  909.      
  910.      
  911.      
  912.      
  913.      
  914.      
  915.      
  916.      
  917.     </div>
  918.     </div>
  919.     </div>
  920.     </div>
  921.     </div>
  922.     </div>
  923.      
  924.     </body>
  925.     </html>