Eduarda

Untitled

Jun 9th, 2012
485
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.34 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 POR O-MUNDO-DE-UMA-GAROTA|TUMBLR (c) SÓ ADAPTE PARA O SEU PRÓPRIO USO' NÃO USE COMO BASE, NEM PENSE EM ME PLÁGIAR,NÃO VAMOS ME DAR DOR DE CABEÇA OK? {NOT COPIE} -->
  6.  
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  8.  
  9. <link href='http://fonts.googleapis.com/css?family=Snippet|Sue+Ellen+Francisco|Andika|Delius+Swash+Caps|Lobster|Redressed|Tangerine|Rancho|Rochester|Lobster+Two|Dancing+Script|Pacifico|Crafty+Girls' rel='stylesheet' type='text/css'>
  10.  
  11.  
  12. <head>
  13. <!-- BEGIN TUMBLR CODE --><iframe src="http://assets.tumblr.com/iframe.html?8&src=http%3A%2F%2Fquasebarbie.com%2F&amp;lang=en_US&amp;name=quasebarbie" scrolling="no" width="330" height="25" frameborder="0" style="position:absolute; z-index:1337; top:0px; right:0px; border:0px; background-color:transparent; overflow:hidden;" id="tumblr_controls"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('tumblr_controls').allowTransparency=true;</script><![endif]--><script type="text/javascript">_qoptions={qacct:"p-19UtqE8ngoZbM"};</script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script><noscript><img src="http://pixel.quantserve.com/pixel/p-19UtqE8ngoZbM.gif" style="display:none; border-width:0px; height:1px; width:1px;" alt=""/></noscript><!-- END TUMBLR CODE --></body>
  14.  
  15.  
  16.  
  17.  
  18. <script>
  19.  
  20. // <![CDATA[
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28. var bgcolour="#FFC5DD"; // background colour
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36. var fgcolour="#999999"; // foreground colour
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44. var speed=120; // speed of bubbling, lower is faster
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52. var shades=5; // number of shades of bubble
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68. /****************************
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76. * Bubbling Text Effect *
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84. *(c) 2003-6 mf2fm web-design*
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92. * http://www.mf2fm.com/rv *
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100. * DON'T EDIT BELOW THIS BOX *
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108. ****************************/
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116. var bubbcol=new Array();
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124. var bubbler, bubbtxt;
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132. var bubbchr=new Array();
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140. window.onload=function() { if (document.getElementById) {
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148. for (bubbler=0; bubbler<=shades; bubbler++) {
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156. bubbtxt="#";
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164. for (var i=1; i<6; i+=2) {
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172. var bg=parseInt(bgcolour.substring(i,i+2),16);
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188. }
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196. bubbcol[bubbler+1]=bubbtxt;
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204. }
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212. bubbler=document.getElementById("bubble");
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220. bubbtxt=bubbler.firstChild.nodeValue;
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236. for (var i=0; i<bubbtxt.length; i++) {
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244. var bubbi=document.createElement("span");
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252. bubbi.setAttribute("id", "bubb"+i);
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. bubbler.appendChild(bubbi);
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276. }
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284. bubbler=setInterval ("bubbling()", speed);
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292. }}
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308. function dechex(dec) {
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316. var hex=dec.toString(16);
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324. if (dec<16) return "0"+hex;
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332. else return hex;
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340. }
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356. function bubbling() {
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364. for (var i=0; i<bubbtxt.length; i++) {
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372. var bubbme=document.getElementById("bubb"+i);
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380. if (bubbchr[i]) {
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388. bubbme.style.color=bubbcol[bubbchr[i]];
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404. }
  405.  
  406.  
  407.  
  408.  
  409.  
  410.  
  411.  
  412. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420. }
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427.  
  428. }
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436. // ]]>
  437.  
  438.  
  439.  
  440.  
  441.  
  442. </script>
  443.  
  444.  
  445.  
  446. <link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here' rel='stylesheet' type='text/css'>
  447.  
  448. <script src="http://code.jquery.com/jquery-latest.js"></script>
  449.  
  450.  
  451. <script>
  452. function bloqueio()
  453. {alert(mensagem);}
  454. document.onkeydown=bloqueio;
  455. </script><meta http-equiv="x-dns-prefetch-control" content="off"/>
  456.  
  457.  
  458. <script type="text/javascript">
  459. //desabilita menu de opcoes ao clicar no botao direito
  460. function desabilitaMenu(e)
  461. {
  462. if (window.Event)
  463. {
  464. if (e.which == 2 || e.which == 3)
  465. return false;
  466. }
  467. else
  468. {
  469. event.cancelBubble = true
  470. event.returnValue = false;
  471. return false;
  472. }
  473. }
  474. document.oncontextmenu = desabilitaMenu;
  475. document.onmousedown = desabilitaBotaoDireito;
  476. document.onmouseup = desabilitaBotaoDireito;
  477. </script>
  478.  
  479.  
  480. <script language="JavaScript1.2">
  481. function disableselect(e){
  482. return false
  483. }
  484. function reEnable(){
  485. return true
  486. }
  487. //if IE4+
  488. document.onselectstart=new Function ("return false")
  489. //if NS6
  490. if (window.sidebar){
  491. document.onmousedown=disableselect
  492. document.onclick=reEnable
  493. }
  494. </script>
  495.  
  496.  
  497. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506. <script type="text/javascript">
  507.  
  508.  
  509. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  510.  
  511.  
  512.  
  513.  
  514. function tb8_makeArray(n){
  515.  
  516.  
  517. this.length = n;
  518.  
  519.  
  520. return this.length;
  521.  
  522.  
  523. }
  524.  
  525.  
  526.  
  527.  
  528. tb8_messages = new tb8_makeArray(1);
  529.  
  530.  
  531.  
  532.  
  533. tb8_messages[0] = "{Title}";
  534.  
  535.  
  536.  
  537.  
  538. tb8_rptType = 'infinite';
  539.  
  540.  
  541.  
  542.  
  543. tb8_rptNbr = 5;
  544.  
  545.  
  546.  
  547.  
  548. tb8_speed = 100;
  549.  
  550.  
  551.  
  552.  
  553. tb8_delay = 2000;
  554.  
  555.  
  556.  
  557.  
  558. var tb8_counter=1;
  559.  
  560.  
  561.  
  562.  
  563. var tb8_currMsg=0;
  564.  
  565.  
  566.  
  567.  
  568. var tb8_tekst ="";
  569.  
  570.  
  571.  
  572.  
  573. var tb8_i=0;
  574.  
  575.  
  576.  
  577.  
  578. var tb8_TID = null;
  579.  
  580.  
  581.  
  582.  
  583. function tb8_pisi(){
  584.  
  585.  
  586.  
  587.  
  588. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  589.  
  590.  
  591.  
  592.  
  593. document.title = tb8_tekst;
  594.  
  595.  
  596.  
  597.  
  598. tb8_sp=tb8_speed;
  599.  
  600.  
  601.  
  602.  
  603. tb8_i++;
  604.  
  605.  
  606.  
  607.  
  608. if (tb8_i==tb8_messages[tb8_currMsg].length){
  609.  
  610.  
  611.  
  612.  
  613. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  614.  
  615.  
  616.  
  617.  
  618. }
  619.  
  620.  
  621.  
  622.  
  623. if (tb8_currMsg == tb8_messages.length){
  624.  
  625.  
  626.  
  627.  
  628. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  629.  
  630.  
  631.  
  632.  
  633. clearTimeout(tb8_TID);
  634.  
  635.  
  636.  
  637.  
  638. return;
  639.  
  640.  
  641.  
  642.  
  643. }
  644.  
  645.  
  646.  
  647.  
  648. tb8_counter++;
  649.  
  650.  
  651.  
  652.  
  653. tb8_currMsg = 0;
  654.  
  655.  
  656. }
  657.  
  658.  
  659.  
  660.  
  661. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  662.  
  663.  
  664.  
  665.  
  666. }
  667.  
  668.  
  669.  
  670.  
  671. tb8_pisi()
  672.  
  673.  
  674.  
  675.  
  676. </script>
  677.  
  678. <meta name="color:background" content="#1C1C1C" />
  679. <meta name="font:body" content="georgia" />
  680. <meta name="font:title" content="georgia" />
  681. <meta name="color:link" content="#FF69B4" />
  682. <meta name="color:linkhover" content="#000000" />
  683. <meta name="color:text" content="#FFFFFF" />
  684. <meta name="color:sidebar" content="#000000" />
  685. <meta name="color:entry" content="#000000" />
  686. <meta name="color:menu" content="#FFFFFF"/>
  687. <meta name="color:menutext" content="#D3D3D3"/>
  688. <meta name="color:menuhover" content="#FFFFFF"/>
  689. <meta name="color:menutexthover" content="#D3D3D3"/>
  690. <meta name="color:bgscrollbar" content="#FFFFFF"/>
  691. <meta name="color:scrollbar" content="#D3D3D3"/>
  692. <meta name="color:source" content="#FF69B4"/>
  693. <meta name="color:tags" content="#FF69B4"/>
  694.  
  695. <meta name="if:Show tags" content="1"/>
  696. <meta name="if:Show sidebar image" content="1"/>
  697. <meta name="if:Show people I follow" content="0"/>
  698. <meta name="if:Enable endless scrolling" content="0"/>
  699. <meta name="if:Show pic" content="1"/>
  700. <meta name="if:Show search" content="1"/>
  701.  
  702. <meta name="image:sidebar1" content=""/>
  703. <meta name="image:background" content=""/>
  704.  
  705.  
  706. <meta name="text:titulo" content="Uma Frase aqui" />
  707.  
  708.  
  709.  
  710. <meta name="text:Link1" content="" />
  711. <meta name="text:Link1 Title" content="Link" />
  712. <meta name="text:Link2" content="" />
  713. <meta name="text:Link2 Title" content="Link" />
  714. <meta name="text:Link3" content="" />
  715. <meta name="text:Link3 Title" content="Link" />
  716. <meta name="text:Link4" content="" />
  717. <meta name="text:Link4 Title" content="Link" />
  718. <meta name="text:Link5" content="" />
  719. <meta name="text:Link5 Title" content="Link" />
  720. <meta name="text:Link6" content="" />
  721. <meta name="text:Link6 Title" content="Link" />
  722. <meta name="text:Link7" content="" />
  723. <meta name="text:Link7 Title" content="Link" />
  724. <meta name="text:Link8" content="" />
  725. <meta name="text:Link8 Title" content="Link" />
  726.  
  727.  
  728.  
  729.  
  730.  
  731. <title>{Title}</title>
  732. <link rel="shortcut icon" href="{Favicon}">
  733. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  734. {block:Description}
  735. <meta name="description" content="{MetaDescription}" />
  736. {/block:Description}
  737.  
  738.  
  739.  
  740.  
  741. <style type="text/css">
  742.  
  743. body {background-color: {color:background} ; color:{color:background};
  744. font-family: {font:body}; font-size:11px; line-height:110%;
  745. margin:0 auto 0 auto; text-align:center;
  746. background-image:url('{image:background}') ;
  747. ; background-attachment:
  748.  
  749. fixed; }
  750.  
  751. a {color: {color:link}; text-decoration: none; font-size: 9px; text-transform: none}
  752. a:hover {color: {color:linkhover}; -webkit-transition-duration: 0.6s; -moz-transition-duration: 0.6s; }
  753. p{margin-top: 1px}
  754. blockquote{margin-left:3px; margin-right: 0px; border-left: 3px solid #e4e4e4; padding-left:3px;
  755.  
  756. margin-top: 4px;}
  757.  
  758.  
  759. #xp {text-align: center; width: 870px; margin: 20px auto 10px auto; padding: 0px; z-index: 1}
  760.  
  761. #sid{position: fixed; margin-left:-35px; margin-top:133px; width: 300px; height: 70px; background-color: {color:sidebar}; padding: 10px; background-attachment: fixed; -webkit-transform: rotate(-90deg); line-height:15px;}
  762.  
  763. .sid2{float: right; width: 316px; height: 40; background-color: {color:sidebar}; padding: 2px; margin-bottom: 5px; color: {color:sidebar};}
  764.  
  765.  
  766. /* navigation */
  767.  
  768. #navigation{position: fixed; z-index: -2; width: 100%; top: 45%; left: 0px; background-color:transparent; height: 100px;
  769.  
  770. text-align: center; font-size: 85px;}
  771. .left{float:left; margin-left: 10px; width: 40px}
  772. .left a{text-decoration: none; font-size: 75px; line-height: 75px}
  773. .left a:hover{background-color: transparent; opacity: 0.4; filter:alpha (opacity=40)}
  774. .right{float:right; margin-right: 10px; width: 40px}
  775. .right a{text-decoration: none; font-size: 75px; line-height: 75px}
  776. .right a:hover{background-color: transparent; opacity: 0.4; filter:alpha (opacity=40)}
  777.  
  778. #content{width: 800px; text-align: center; margin:10px auto 0 auto; padding-bottom: 150px; background-color:
  779. transparent; color:{color:text}; position: absolute; }
  780.  
  781. .sidebarpic img{max-width: 200px; text-align:center; margin-top: 1px}
  782.  
  783.  
  784. #entries{float: right; background-color: transparent; text-align: center}
  785.  
  786.  
  787.  
  788. .post{ width: 503px; margin: 4px 0 4px 260px; padding: 12px; text-align: justify; background-color:{color:entry}; margin-right:-104px; margin-top:63px; margin-bottom:-62px; padding-bottom:9px; padding-top:25px; padding-left:9px; padding-right:9px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; }
  789. .post img{margin: 1px 0 1px 0; -webkit-border-radius: 0px 0px 0px 0px; max-width: 500px;}
  790.  
  791. h1{font-family: Georgia; font-style: none; font-size: 14px; font-weight:normal; letter-spacing: 0px;text-transform: uppercase; line-height: 22px; text-align:center}
  792.  
  793. h1 a{font-size: 14px; font-weight:normal; font-style: none; letter-spacing: 0px;text-transform: uppercase; line-height: 22px; text-align:center}
  794.  
  795.  
  796. h3{font-family: Rochester; font-size:17px; letter-spacing:0px; font-weight:normal; font-style:normal; text-transform: none; line-height: 14px; margin-bottom:-15px; text-align:center}
  797.  
  798.  
  799. h3 a{ font-family: Rochester; font-size:17px; letter-spacing:0px; font-weight:normal; font-style:normal; text-transform: none; line-height: 14px; text-align:center;}
  800.  
  801.  
  802. .image{text-align: center; height: auto; margin-bottom: 3px; border: 0px;
  803. margin: 1px;
  804. border: none;
  805. filter: alpha(opacity=100);
  806. moz-opacity:1.0;
  807. opacity:1.0;}
  808. .image:hover{
  809. filter: alpha(opacity=75);
  810. moz-opacity:.80;
  811. opacity:.80 ;
  812. -webkit-transition-duration: .50s}
  813.  
  814.  
  815. .qqmarks{font-size: 80px; font-family: {font:body}; font-weight: normal; line-height: 80px; color:{color:linkbackground}}
  816. h2{font-size: 9px; display: block; width: 250px; color:{color:text}; background-color: {color:linkbackground}; text-align: center; margin: 0px 0px 3px 0px; padding: 3px 0 3px 0; text-transform: uppercase; text-decoration: none; font-weight: normal}
  817.  
  818. .aspas{ position:relative; top: 15px; font-size: 80px; opacity:0.1; filter: alpha(opacity = 10); color: {background};}
  819. .qquote{font-family: Georgia; font-size: 15px; letter-spacing: 0px; line-height: 18px; text-transform: none; text-align: center;
  820.  
  821. }
  822. .qsource{margin-top: 5px; margin-right: 15px;text-align: right; height:20px;}
  823. .chat{line-height: 12px; list-style: none }
  824. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height: 20px;}
  825. .person1 {color: {color:text} }
  826. .person1 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text} }
  827. .person2 {color: {color:text} }
  828. .person2 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text} }
  829. .iaudio{text-align: center; margin-bottom: 2px; width: 100%; background-color: {color:linkbackground}}
  830. .iaudio img{max-width: 180px; height: auto; padding: 20px 0 20px 0}
  831. .icap{margin-top: 1px}
  832. .source{display:none}
  833.  
  834. .source {display:none}
  835. div#source {text-align: right; font-size: 9px}
  836.  
  837. .source {display:none}
  838. div#source {text-align: right; font-size: 9px}
  839.  
  840. /* post - info */
  841.  
  842. #info{margin-top: 10px; }
  843. #info a{color: {color:link} !important}
  844. #info a:hover{color:{color:menutexthover}!important; -webkit-transition-duration: 0.6s; -moz-transition-duration: 0.6s;}
  845.  
  846. .line1{font-size:10px; text-transform: lowercase; margin-top: 7px}
  847. .line2{font-size:10px; text-transform:lowercase; clear: both}
  848. .line3{font-size:10px; text-transform:lowercase; clear: both}
  849. .ileft{float: left}
  850. .iright{float: right}
  851. .postclear{clear: both; width: 100%; visibility: hidden; height: 1px}
  852.  
  853. .post:hover #information {opacity:1;}
  854.  
  855. #information{position:absolute; font: 9px calibri; text-transform:none; color:{color:link}; margin-left:515px; opacity:0; height:auto; width: 120px; margin-bottom:0px; background-color:{color:entry}; margin-top:-100px; background-color:#trans; display:block; text-align:left; padding:0px 0px 0px 7px; -moz-transition: all .7s ease-in-out; -o-transition: all .7s ease-in-out; transition: all .7s ease-in-out; -webkit-transition: all .7s ease-in-out; border-left:3px solid #e4e4e4; font-family: verdana; padding: 5px; -webkit-border-radius: 0px 0px 0px 0px;}
  856. #information a{text-transform:lowercase; color:{color:text}; font-style:none; }
  857. #information a:hover {color: {color:text}; }
  858.  
  859. .notes a{ font:11px Georgia!important; color:{color:permalink}!important; letter-spacing:0px; text-transform:none!important; font-style:normal!important; -moz-transition: all .7s ease-in-out; -o-transition: all .7s ease-in-out; transition: all .7s ease-in-out; -webkit-transition: all .7s ease-in-out; font-weight:300!important; }
  860. .notes a:hover {color: #999!important; }
  861.  
  862. .date {font:9px calibri; text-transform:uppercase; color:#999;}
  863.  
  864.  
  865.  
  866. .tags a{ font:9px verdana; color:{color:permalink}!important; letter-spacing:0px; text-transform:none!important; font-style:normal!important; -moz-transition: all .7s ease-in-out; -o-transition: all .7s ease-in-out; transition: all .7s ease-in-out; -webkit-transition: all .7s ease-in-out; font-weight:300!important; }
  867. .tags a:hover {color: #999!important; }
  868.  
  869. /* asker */
  870.  
  871. .asker {width: 480px; background-color: {color:background}; color:{color:text}; padding: 10px}
  872. .asker img{float: left; margin: 0px 4px 2px 0; }
  873. .asker a{font-size: 11px; color:{color:link}; text-transform: none; line-height: 27px; padding: 0; margin: 0; font-family: verdana; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; }
  874. .asker a:hover{font-size: 11px; color:{color:linkhover}; text-transform: none; line-height:27px; padding: 0; margin: 0; font-family:verdana;}
  875. .answer {padding: 4px}
  876.  
  877. .answer img {max-width: 470px;}
  878.  
  879.  
  880. #sidebar {width: 0px; height: 0px; float: left; margin-left:106px; margin-top: 60px; padding: 5px; background-color: transparent; text-align: center; position: fixed; }
  881.  
  882. #sidd3 {width: 158px; height: 206px; float: left; margin-left:57px; margin-top: 50px; padding: 5px; background-color: {color:entry}; text-align: center; position: fixed; }
  883.  
  884.  
  885. #top{width: 666px; height: 128px; float: left; margin-left: 107px; margin-top: -150px; padding: 10px; background-image:url('{image:background}') ; background-color: {color:background}; color:{color:menu}; text-align: center; position: fixed;
  886. -moz-transition: all 1.2s ease-out; -webkit-border-radius: 0px 0px 0px 0px;}
  887.  
  888. #sid3{width: 667px; height: -2px; float: left; margin-left: 107px; margin-top: -23px; padding: 10px; background-color: {color:sidebar}; color:{color:menu}; text-align: center; position: fixed;
  889. -moz-transition: all 1.2s ease-out; -webkit-border-radius: 10px 10px 0px 0px;}
  890.  
  891.  
  892. #estela1 {position: fixed; margin-left: 122px; width: 13px; height: 750px; background-color:#000000; {color:barra1}; margin-top: -50px;}
  893.  
  894. #estela2 {position: fixed; margin-left: 130px; width: 6px; height: 750px; background-color:#FF69B4; {color:barra2}; margin-top: -50px;}
  895.  
  896. #estela3 {position: fixed; margin-left: 111px; width: 12px; height: 750px; background-color:#000000; {color:barra3}; margin-top: -50px;}
  897.  
  898.  
  899. #estela4 {position: fixed; margin-left: 1010px; width: 52px; height: 302px; background-color:#000000; {color:barra3}; margin-top: -50px;}
  900.  
  901.  
  902.  
  903.  
  904. .credit { width: auto; text-align: center; font-family: Just Me Again Down Here, sans-serif; font-size: 20px; color: #c1c1c1; letter-spacing: 0px; line-height: 10px; margin-top: -80px; margin-left: -3px; text-transform: none;}
  905.  
  906. .credit:hover {
  907. letter-spacing: 0px;
  908. color:{color:source};
  909. -webkit-transition: all 0.5s ease-out;
  910. -moz-transition: all 0.5s ease-out; }
  911.  
  912. #love {float: right; margin-left:90px;top:238px;width: 160px; height: 10px; position: absolute;color:#999; font-size:11px;display: block; line-height:9px; z-index:830; background: #fff; alpha(Opacity=70);opacity:.70;}
  913.  
  914.  
  915.  
  916. #fashion {float: right; margin-left:90px;top:224px;width: 160px; height: 10px; position: absolute;color:#999; font-size:9px;display: block; z-index:830; background: #fff; alpha(Opacity=70);opacity:.70;}
  917.  
  918.  
  919.  
  920. #cerejinha{position: fixed; margin-top:120px; float:left; margin-left: -75px; width: 250px; height: 25px; line-height:15px; text-align: justify; background-color: transp; color:#999; font-family: Just Me Again Down Here, sans-serif; padding:0px; font-size: 24px; text-align: center; -webkit-box-shadow: 0px 0px 0px #999; -moz-box-shadow: 0px 0px 0px #999; box-shadow: 0px 0px 0px #999; -webkit-transform: rotate(0deg);z-index:1000; -webkit-transform: rotate(-90deg);}
  921.  
  922.  
  923. #link5 {font-family: tinytots; background-color:#000000; transparent; color: {color:text}; font-size: 8px; padding: 3px 5px 5px 5px; width: 154px; margin-top: 140px; margin-left: 847px; z-index: 1; position: fixed; text-align: center; height: 22px; border:2px solid ; text-transform: none; }
  924. #link5 a{font-family: verdana; font-size: 9px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px;}
  925.  
  926.  
  927.  
  928.  
  929.  
  930. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  931.  
  932.  
  933. #love:hover {color:transparent;-webkit-transition-duration: .40s; }
  934.  
  935.  
  936.  
  937. #fashion:hover {color:transparent; -webkit-transition-duration: .40s;}
  938.  
  939.  
  940.  
  941.  
  942. #sidimg2{width: 212px; height: 112px; margin-left: -22px; margin-top: 50px; padding: 5px; background-color: {color:sidebar}; float: left; -webkit-transition: all 0.5s ease-out;
  943. -moz-transition: all 0.5s ease-out; }
  944.  
  945. #sidimg3{width: 111px; height: 20px; float: left; margin-left: -10px; margin-top: 220px; padding: 5px; background-color: {color:background}; text-align: center; position: fixed; }
  946.  
  947.  
  948. #sidimg4{width: 154px; height: 134px; margin-left: 107px; margin-top: 172px; padding: 5px; background-color: {color:sidebar}; float: left; -webkit-transition: all 0.5s ease-out;
  949. -moz-transition: all 0.5s ease-out; position: fixed; z-index: 8; }
  950.  
  951.  
  952. #sidimg{width: 268px; height: 14px; float: left; margin-left: 990px; margin-top: 250px; padding: 5px; background-color: transparent; text-align: center; position: fixed; }
  953.  
  954.  
  955. #sidimg6{width: 154px; height: 163px; margin-left: 107px; margin-top: -2px; padding: 5px; background-color: {color:sidebar}; float: left; z-index:830; position:fixed; }
  956.  
  957.  
  958.  
  959.  
  960.  
  961. .simage img {margin-bottom: 2px; margin-left: 2px; margin-top:2px; max-width: 150px; height: 133; float: left; z-index:830; opacity: 0.7; -webkit-transition: all 0.5s ease-out;
  962. -moz-transition: all 0.5s ease-out;}
  963. .simage img:hover {opacity: 0.9;}
  964.  
  965. #sid1 {width: 113px; margin-left: 870px; height: 169px; margin-top: 0px; float:left; text-align: center; background-color: trasparente; font-size: 16px; position:fixed; padding: 5px; overflow: hidden; -webkit-transition: 1.3s ease-in;
  966. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in;}
  967.  
  968.  
  969.  
  970. #hello{text-align: justify; font-size: 9px; font-family: verdana; position: relative; margin-left: 110px; width:150px; height: 40px; background-color: {color:sidebar}; color: {color:text}; padding: 2px; margin-top: 200px; background-attachment: fixed; border-left: 0px solid {color:border}; padding:5px;z-index: 830;}
  971.  
  972.  
  973.  
  974. #kitty {text-align: center; margin-top:1px; 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;}
  975.  
  976.  
  977.  
  978. .inok {float: left; margin-top:-2px; width: 92px; margin-left: -2px; background-color:{color:sidebar}; border: 0px solid {color:sidebar}; overflow: auto; padding: 4px; height: 75px; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size:9px; text-align: justify;}
  979.  
  980. .oizinho {font-family: georgia; position: fixed; margin-left: 80px; margin-top: -190px; font-size: 8px; z-index: 0;}
  981. .oizinho a {color: {color:source}; background-color: transparent;}
  982. .oizinho a:hover {color: {color:source} ;}
  983.  
  984. .oizinho2 {font-family: georgia; position: fixed; margin-left: 80px; margin-top: -162px; font-size: 38px; z-index: 0;}
  985. .oizinho2 a {color: {color:source}; background-color: transparent;}
  986. .oizinho2 a:hover {color: {color:source};}
  987.  
  988. #title {width: 160px; height: 32px; position: fixed; background-color: transparent; margin-left: -5px; margin-top: 30px; z-index:830;}
  989. .optitle{font-family: Just Me Again Down Here, sans-serif; font-size: 20px; font-style: none;
  990. line-height: 19px; font-weight: none; color: #FF69B4; margin-top: 5px; margin-left: -5px; text-transform: none; letter-spacing: 0px; opacity:0.8}
  991.  
  992. ::-webkit-scrollbar{width:8px;height:5px;}
  993. ::-webkit-scrollbar-button:start:decrement
  994. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  995. ::-webkit-scrollbar-track-piece{background-color:{color:bgscrollbar};-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  996. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color:{color:scrollbar};-webkit-border-radius:px;}
  997. ::-webkit-scrollbar-thumb:horizontal{width:40px; background-color:{color:scrollbar};-webkit-border-radius:px;}
  998.  
  999.  
  1000. #pagina{ margin-top: 358px; margin-left: 45px; width: 106px; float: right; background-color: transparent; position: fixed; height: 20px; -webkit-border-radius: 0px 0px 0px 0px;}
  1001.  
  1002. /*** Paginação by madlyluv.com ***/
  1003. #paginacaoml {font-size: 8px; font-family: Verdana, Geneva, Tahoma, sans-serif; line-height: 21px; }
  1004. #paginacaoml a {font-size: 8px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: #eee; margin: 0 1px 0 0; padding: 1px 3px; color: #999; text-decoration: none; }
  1005. #paginacaoml a:hover {font-size: 8px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: {color:sidebar}; border: none;}
  1006. #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;}
  1007.  
  1008. #pagination {width:240px; font-family:georgia; text-align:right; font-size:15px; padding:4px; font-style:italic}
  1009.  
  1010.  
  1011. .barbie {opacity:0.9; -moz-transition: all 0.4s ease-out; -o-transition: all 0.4s ease-out; -webkit-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
  1012. .barbie:hover {opacity:1.0}
  1013.  
  1014. #clear{width: 500px; height: 30px}
  1015.  
  1016.  
  1017. #sidotitulo {width: 162px; margin-left: 731px; height: 91px; margin-top: 0px; float:left; text-align: center; background-color:#000000; {color:background}; font-size: 9px; position:fixed; color:#FFFFFF; font-family: verdana; overflow: hidden; -moz-transition: all .8s ease-in-out; -o-transition: all .8s ease-in-out; transition: all .8s ease-in-out; -webkit-transition: all .8s ease-in-out; letter-spacing: 0px; padding-left:5px; padding-top:5px; padding-right:5px; z-index:10;-webkit-border-radius: 10px 10px 10px 10px;}
  1018.  
  1019.  
  1020.  
  1021.  
  1022. #barra {margin-top:120px; margin-left: 98px; position: fixed; color: #d5d5d5; width:3px; height: 150px; background-color: {color:sidebar};}
  1023.  
  1024. #barra2 {margin-top:0px; margin-left: -130px; position: fixed; color: #d5d5d5; width:130px; height: 2px; background-color: {color:sidebar};}
  1025.  
  1026. #barra3 {margin-top:325px; margin-left: 0px; position: fixed; color: #d5d5d5; width:20px; height: 2px; background-color: {color:sidebar};}
  1027.  
  1028.  
  1029.  
  1030. #cute {float: right; margin-left:-2px;top:142px;width: 124px; height: 118px; position: absolute;color: #999; font-size:50px; line-height:9px; display: block; z-index:11; background: transparent; alpha(Opacity=25);opacity:.25; -webkit-transition-duration: .70s; -webkit-transform: rotate(0deg); -webkit-transform: rotate(-112deg);}
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036. #usericon {float: left; border: 7px solid {color:sidebar}; margin-top: 2px; margin-left: 802px;
  1037. }
  1038.  
  1039.  
  1040. .dreamgirl2 {opacity:0.9}
  1041. .dreamgirl2:hover {opacity:0.7; -moz-transition: all 0.5s ease-out; -o-transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out;}
  1042.  
  1043.  
  1044.  
  1045. .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;}
  1046.  
  1047.  
  1048. @font-face { font-family: 'Sevillana';
  1049.  
  1050.  
  1051.  
  1052.  
  1053. font-style: normal;
  1054.  
  1055.  
  1056.  
  1057.  
  1058. font-weight: 400;
  1059.  
  1060.  
  1061.  
  1062.  
  1063. src: local('Sevillana'), local('Sevillana-Regular'), url('http://themes.googleusercontent.com/static/fonts/sevillana/v1/SvsVbvy-WEK3abR3Sh8BiD8E0i7KZn-EPnyo3HZu7kw.woff') format('woff');
  1064.  
  1065.  
  1066.  
  1067.  
  1068. }
  1069.  
  1070.  
  1071. </style>
  1072. <script language='JavaScript'>
  1073. //Bloqueador de Tecla CTRL - iceBreaker http://www.icebreaker.com.br/
  1074. function checartecla (evt)
  1075. {if (evt.keyCode == &#39;17&#39;)
  1076. {alert(&quot;Comando Desativado&quot;)
  1077. return false}
  1078. return true}
  1079. </script>
  1080.  
  1081.  
  1082.  
  1083. </head>
  1084.  
  1085. <body oncontextmenu="return false" onselectstart="return false" onmousedown="return false" onkeydown="return false">
  1086.  
  1087.  
  1088. <div id="estela1"></div>
  1089. <div id="estela2"></div>
  1090. <div id="estela3"></div>
  1091. <div id="estela4"></div>
  1092.  
  1093.  
  1094.  
  1095.  
  1096.  
  1097.  
  1098. <div id="content">
  1099.  
  1100. <div id="entries">
  1101. {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
  1102. <script type="text/javascript"
  1103.  
  1104. src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
  1105.  
  1106.  
  1107.  
  1108.  
  1109. {block:Posts}
  1110.  
  1111.  
  1112.  
  1113. <div class="post">
  1114.  
  1115.  
  1116. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1117.  
  1118. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  1119.  
  1120. {block:Photoset}{Photoset-500}{/block:Photoset}
  1121.  
  1122. {block:Quote}
  1123. <div class="qquote">"{Quote}"</div>
  1124. {block:Source}<div class="qsource"><font color="{color:source}">~ {Source}</font></div>{/block:Source}
  1125. {/block:Quote}
  1126.  
  1127. {block:Link}
  1128. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1129. {block:Description}{Description}{/block:Description}
  1130. {/block:Link}
  1131.  
  1132. {block:Chat}
  1133. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1134. <div class="chat"><ul>{block:Lines}
  1135. <li class="person{UserNumber}">{block:Label}
  1136. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1137. {/block:Chat}
  1138.  
  1139. {block:Audio}
  1140. <div class="iaudio">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  1141. {AudioPlayerGrey}
  1142. <div class="icap">{block:Caption}{Caption}{/block:Caption}</div>
  1143. {/block:Audio}
  1144.  
  1145. {block:Video}{Video-500}{/block:Video}
  1146.  
  1147. {block:Answer}
  1148. <div class="asker"><img src="{AskerPortraitURL-30}" class="barbie"><b>{Asker}</b> sussurou:<br><i>{Question}</i></div>
  1149. <div class="answer"><br>{Answer}</div>
  1150. {/block:Answer}
  1151.  
  1152.  
  1153.  
  1154. <div class="cap">
  1155. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1156. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1157. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1158.  
  1159. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1160. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1161. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1162. {/block:ContentSource}</div></div>
  1163.  
  1164. <div id="bg">
  1165. <div id="info">
  1166.  
  1167. </div></div>
  1168.  
  1169.  
  1170. <div id="information">
  1171. <span class="notes"><a href="{Permalink}">{NoteCountWithLabel}</a></span><br>
  1172. <span class="date">{block:Date}{block:NewDayDate}{DayOfMonthWithZero}/{MonthNumberWithZero}/{ShortYear} ♡ {12HourWithZero}:{Minutes}{AmPm}{/block:NewDayDate}{block:SameDayDate} ♡ {12HourWithZero}:{Minutes}{AmPm}{/block:SameDayDate}{/block:Date}</span><br>
  1173. <a href="{ReblogURL}" target="_blank">Reblog ♡</a>
  1174. {block:RebloggedFrom}
  1175. <div class="tagtitle">
  1176. <a href="{ReblogParentURL}"><img src="{ReblogParentPortraitURL-24}" border="0" title="rebloguei"></a>
  1177. <a href="{ReblogRootURL}"><img src="{ReblogRootPortraitURL-24}" border="0" title="original"></a>
  1178. </div>
  1179. {/block:RebloggedFrom}
  1180. {block:IfShowTags}{block:HasTags}<div class="tags">Indiretas: <br />{block:Tags}&nbsp;&nbsp;<a
  1181. href="{TagURL}"><font color="{color:tags}">#</font> {Tag}&nbsp;&nbsp; <br /></a>{/block:Tags}</div>{/block:HasTags}{/block:IfShowTags}
  1182.  
  1183.  
  1184.  
  1185.  
  1186. </div></div>
  1187.  
  1188.  
  1189.  
  1190. {/block:Posts}
  1191. {block:IfEnableEndlessScrolling}</div>{/block:IfEnableEndlessScrolling}
  1192. {block:PostNotes}
  1193. <div id="notes"><div id="notestext">{PostNotes}</div></div>
  1194. {/block:PostNotes}
  1195.  
  1196.  
  1197.  
  1198. </div>
  1199.  
  1200. <div id="sidebar">
  1201.  
  1202.  
  1203. <div id="top"></div><div id="sid3"></div>
  1204.  
  1205.  
  1206.  
  1207. <div id="sidimg4">
  1208.  
  1209.  
  1210. <div id="sidotitulo"> <center>{block:Description}{Description}{/block:Description}
  1211. </center>
  1212.  
  1213.  
  1214.  
  1215. </div>
  1216. </div>
  1217.  
  1218.  
  1219.  
  1220. <div id="cerejinha">{text:titulo}</div>
  1221. <div id="sidimg6">
  1222.  
  1223. <div class="simage"><img src="{image:sidebar1}">
  1224. </div>
  1225.  
  1226.  
  1227. </div>
  1228.  
  1229.  
  1230.  
  1231. <div id="hello">
  1232. <div id="kitty">
  1233. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1} ۰
  1234. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2} ۰
  1235. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3} ۰
  1236. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4} ۰
  1237. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5} ۰
  1238. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6} ۰
  1239. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7} ۰
  1240. {block:ifLink8}<a href="{text:Link8}">{text:Link8 Title}</a>{/block:ifLink8}
  1241. </div></div>
  1242.  
  1243.  
  1244.  
  1245. <div id="cute"><div style="margin-left:30px; margin-top:40px; float:left;"><big><big><b>♥</b></big></big></div></div>
  1246.  
  1247.  
  1248.  
  1249. <div class="oizinho">{block:NextPage}<a href="{NextPage}" title="next"><big><big><big><big><big><big><big>↑</big></big></big></big></big></big></big></a>{/block:NextPage}</div>
  1250.  
  1251. <div class="oizinho2">{block:PreviousPage}<a href="{PreviousPage}" title="previous"><big><big><big><big><big><big><big>↓</big></big></big></big></big></big></big></a>{/block:PreviousPage}</div>
  1252.  
  1253.  
  1254.  
  1255. <div id="link5" title="não copie">theme by:o-mundo-de-uma-garota<font color="{color:source}"> +</font><br> Quasebarbie</div>
  1256.  
  1257. </div>
  1258.  
  1259.  
  1260.  
  1261.  
  1262. </body>
  1263. </html>
Advertisement
Add Comment
Please, Sign In to add comment