Eduarda

Theme 72

Nov 3rd, 2012
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!----
  4. Theme by: o-mundo-de-uma-garota|tumblr {NÃO USE COMO BASE} só adapte para o seu próprio uso e sem retirar os creditos, aliás não foi voce que fez né?! {NOT COPIE} plágio é crime se eu pegar algo tiro da minha página de themes.
  5.  
  6. - - - - - - - - - - - - - -
  7. - THEME FEITO POR DUDA.R -
  8. - - - - - - - - - - - - - - ---->
  9.  
  10.  
  11.  
  12.  
  13. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
  14.  
  15.  
  16. <script>
  17.  
  18. // <![CDATA[
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. var bgcolour="#FFC5DD"; // background colour
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. var fgcolour="#999999"; // foreground colour
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. var speed=120; // speed of bubbling, lower is faster
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50. var shades=5; // number of shades of bubble
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66. /****************************
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74. * Bubbling Text Effect *
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82. *(c) 2003-6 mf2fm web-design*
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90. * http://www.mf2fm.com/rv *
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98. * DON'T EDIT BELOW THIS BOX *
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106. ****************************/
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114. var bubbcol=new Array();
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122. var bubbler, bubbtxt;
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130. var bubbchr=new Array();
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138. window.onload=function() { if (document.getElementById) {
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146. for (bubbler=0; bubbler<=shades; bubbler++) {
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154. bubbtxt="#";
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162. for (var i=1; i<6; i+=2) {
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170. var bg=parseInt(bgcolour.substring(i,i+2),16);
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186. }
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194. bubbcol[bubbler+1]=bubbtxt;
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. }
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210. bubbler=document.getElementById("bubble");
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218. bubbtxt=bubbler.firstChild.nodeValue;
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234. for (var i=0; i<bubbtxt.length; i++) {
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242. var bubbi=document.createElement("span");
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250. bubbi.setAttribute("id", "bubb"+i);
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266. bubbler.appendChild(bubbi);
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274. }
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282. bubbler=setInterval ("bubbling()", speed);
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290. }}
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306. function dechex(dec) {
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314. var hex=dec.toString(16);
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322. if (dec<16) return "0"+hex;
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330. else return hex;
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338. }
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354. function bubbling() {
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362. for (var i=0; i<bubbtxt.length; i++) {
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370. var bubbme=document.getElementById("bubb"+i);
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378. if (bubbchr[i]) {
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386. bubbme.style.color=bubbcol[bubbchr[i]];
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402. }
  403.  
  404.  
  405.  
  406.  
  407.  
  408.  
  409.  
  410. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  411.  
  412.  
  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. </script>
  441.  
  442.  
  443.  
  444. <link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here' rel='stylesheet' type='text/css'>
  445.  
  446. <script src="http://code.jquery.com/jquery-latest.js"></script>
  447.  
  448.  
  449.  
  450. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
  451.  
  452.  
  453.  
  454. <script type="text/javascript" src="http://static.tumblr.com/ifqwhnb/GBsm20q7d/jquery.nivo.slider.pack.js"></script>
  455.  
  456. <script type="text/javascript">
  457.  
  458.  
  459.  
  460. var $nv4wp = jQuery.noConflict();
  461.  
  462.  
  463.  
  464. $nv4wp(window).load(function() {
  465.  
  466.  
  467.  
  468. $nv4wp('#slider').nivoSlider({
  469.  
  470.  
  471.  
  472. effect:'random',
  473.  
  474.  
  475.  
  476. slices:15, // For slice animations
  477.  
  478.  
  479.  
  480. boxCols: 4, // For box animations
  481.  
  482.  
  483.  
  484. boxRows: 2, // For box animations
  485.  
  486.  
  487.  
  488. animSpeed:500, // Slide transition speed
  489.  
  490.  
  491.  
  492. pauseTime:3000, // How long each slide will show
  493.  
  494.  
  495.  
  496. startSlide:0, // Set starting Slide (0 index)
  497.  
  498.  
  499.  
  500. directionNav:true, //Next & Prev
  501.  
  502.  
  503.  
  504. directionNavHide:true, //Only show on hover
  505.  
  506.  
  507.  
  508. controlNav:true, // 1,2,3... navigation
  509.  
  510.  
  511.  
  512. controlNavThumbs:false, // Use thumbnails for Control Nav
  513.  
  514.  
  515.  
  516. controlNavThumbsFromRel:false, // Use image rel for thumbs
  517.  
  518.  
  519.  
  520. controlNavThumbsSearch: '.jpg', // Replace this with...
  521.  
  522.  
  523.  
  524. controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
  525.  
  526.  
  527.  
  528. keyboardNav:true, //Use left & right arrows
  529.  
  530.  
  531.  
  532. pauseOnHover:true, //Stop animation while hovering
  533.  
  534.  
  535.  
  536. manualAdvance:false, //Force manual transitions
  537.  
  538.  
  539.  
  540. captionOpacity:0.9, //Universal caption opacity
  541.  
  542.  
  543.  
  544. prevText: 'Prev', // Prev directionNav text
  545.  
  546.  
  547.  
  548. nextText: 'Next', // Next directionNav text
  549.  
  550.  
  551.  
  552. beforeChange: function(){}, // Triggers before a slide transition
  553.  
  554.  
  555.  
  556. afterChange: function(){}, // Triggers after a slide transition
  557.  
  558.  
  559.  
  560. slideshowEnd: function(){}, // Triggers after all slides have been shown
  561.  
  562.  
  563.  
  564. lastSlide: function(){}, // Triggers when last slide is shown
  565.  
  566.  
  567.  
  568. afterLoad: function(){} // Triggers when slider has loaded
  569.  
  570.  
  571.  
  572. });
  573.  
  574.  
  575.  
  576. });
  577.  
  578.  
  579.  
  580. </script>
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588. <script type="text/javascript">
  589.  
  590. function changeNavigation(id) {document.getElementById('entries').innerHTML=document.getElementById(id).innerHTML}
  591.  
  592. </script>
  593.  
  594.  
  595. <script type="text/javascript">
  596.  
  597. //desabilita menu de opcoes ao clicar no botao direito
  598.  
  599. function desabilitaMenu(e)
  600.  
  601. {
  602.  
  603. if (window.Event)
  604.  
  605. {
  606.  
  607. if (e.which == 2 || e.which == 3)
  608.  
  609. return false;
  610.  
  611. }
  612.  
  613. else
  614.  
  615. {
  616.  
  617. event.cancelBubble = true
  618.  
  619. event.returnValue = false;
  620.  
  621. return false;
  622.  
  623. }
  624.  
  625. }
  626.  
  627.  
  628.  
  629. //desabilita botao direito
  630.  
  631. function desabilitaBotaoDireito(e)
  632.  
  633. {
  634.  
  635. if (window.Event)
  636.  
  637. {
  638.  
  639. if (e.which == 2 || e.which == 3)
  640.  
  641. return false;
  642.  
  643. }
  644.  
  645. else
  646.  
  647. if (event.button == 2 || event.button == 3)
  648.  
  649. {
  650.  
  651. event.cancelBubble = true
  652.  
  653. event.returnValue = false;
  654.  
  655. return false;
  656.  
  657. }
  658.  
  659. }
  660.  
  661.  
  662.  
  663. //desabilita botao direito do mouse
  664.  
  665. if ( window.Event )
  666.  
  667. document.captureEvents(Event.MOUSEUP);
  668.  
  669. if ( document.layers )
  670.  
  671. document.captureEvents(Event.MOUSEDOWN);
  672.  
  673.  
  674.  
  675. document.oncontextmenu = desabilitaMenu;
  676.  
  677. document.onmousedown = desabilitaBotaoDireito;
  678.  
  679. document.onmouseup = desabilitaBotaoDireito;
  680.  
  681. </script>
  682.  
  683. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  684.  
  685.  
  686. <script type="text/javascript"
  687. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  688.  
  689. <script>
  690.  
  691.  
  692.  
  693. $(document).ready(function() {
  694.  
  695. //
  696.  
  697.  
  698.  
  699. //When you click on a link with class of poplight and the href starts with a #
  700.  
  701. $('a.poplight[href^=#]').click(function() {
  702.  
  703. var popID = $(this).attr('rel'); //Get Popup Name
  704.  
  705. var popURL = $(this).attr('href'); //Get Popup href to define size
  706.  
  707.  
  708.  
  709. //Pull Query & Variables from href URL
  710.  
  711. var query= popURL.split('?');
  712.  
  713. var dim= query[1].split('&');
  714.  
  715. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  716.  
  717.  
  718.  
  719. //Fade in the Popup and add close button
  720.  
  721. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/2bh9bxo/lqzmc8a3h/ddd.gif" class="btn_close" title="Close Window" alt="Close" /></a>');
  722.  
  723.  
  724. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  725.  
  726. var popMargTop = ($('#' + popID).height() + 80) / 2;
  727.  
  728. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  729.  
  730.  
  731.  
  732. //Apply Margin to Popup
  733.  
  734. $('#' + popID).css({
  735.  
  736. 'margin-top' : -popMargTop,
  737.  
  738. 'margin-left' : -popMargLeft
  739.  
  740. });
  741.  
  742.  
  743.  
  744. //Fade in Background
  745.  
  746. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  747.  
  748. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  749.  
  750.  
  751.  
  752. return false;
  753.  
  754. });
  755.  
  756.  
  757.  
  758. //Close Popups and Fade Layer
  759.  
  760. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  761.  
  762. $('#fade , .popup_block').fadeOut(function() {
  763.  
  764. $('#fade, a.close').remove(); //fade them both out
  765.  
  766. });
  767.  
  768. return false;
  769.  
  770. });
  771.  
  772.  
  773.  
  774.  
  775.  
  776. });
  777.  
  778. </script>
  779.  
  780. <!-- APPERENCE OMDG -->
  781. <meta name="image:fotod" content="http://static.tumblr.com/kbesbrd/Imgmcx8al/tumblr_mcv1laxe3o1r4cmzeo1_500.jpg" />
  782. <meta name="image:background" content="http://static.tumblr.com/2bh9bxo/hhSmcmw52/varios_bg.jpg" />
  783. <meta name="image:fudinho" content="http://static.tumblr.com/2bh9bxo/mpCmcvwaz/daduda1.jpg" />
  784.  
  785. <meta name="color:background" content="#E6E6FA" />
  786. <meta name="color:sidebar" content="#fff" />
  787. <meta name="color:link" content="#8B8682" />
  788. <meta name="color:link hover" content="#FFFFFF" />
  789. <meta name="color:bordaimg" content="#FFFFFF" />
  790. <meta name="color:text" content="#8B8682" />
  791. <meta name="color:tags" content="#FFC0CB" />
  792. <meta name="color:post" content="#FFFFFF" />
  793. <meta name="color:borda" content="#FFFFFF" />
  794. <meta name="color:links" content="#8B8682" />
  795. <meta name="color:bghover" content="#FFC0CB" />
  796. <meta name="color:sombra" content="#FFFFFF" />
  797. <meta name="color:textdesc" content="#8B8682" />
  798. <meta name="color:frase" content="#8B8682" />
  799. <meta name="color:bgask" content="#FFC0CB" />
  800. <meta name="color:borda2" content="#CDC9C9" />
  801. <meta name="color:linha" content="#fff" />
  802. <meta name="color:linha1" content="#FFC0CB" />
  803. <meta name="color:abc" content="#FFC0CB" />
  804.  
  805. <meta name="text:frase" content="Chore Menina"/>
  806. <meta name="text:frase2" content="Vc nao é obrigada a ser forte" />
  807.  
  808. <meta name="text:Link1" content="/" />
  809. <meta name="text:Link1 Title" content="H O M E" />
  810. <meta name="text:Link2" content="/" />
  811. <meta name="text:Link2 Title" content="link" />
  812. <meta name="text:Link3" content="/" />
  813. <meta name="text:Link3 Title" content="link" />
  814. <meta name="text:Link4" content="/" />
  815. <meta name="text:Link4 Title" content="link" />
  816. <meta name="text:Link5" content="/" />
  817. <meta name="text:Link5 Title" content="link" />
  818. <meta name="text:Link6" content="/" />
  819. <meta name="text:Link6 Title" content="link" />
  820. <meta name="text:Link7" content="/" />
  821. <meta name="text:Link7 Title" content="link" />
  822.  
  823.  
  824.  
  825. <title>{Title}</title>
  826. <link rel="shortcut icon" href="{Favicon}">
  827. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  828. {block:Description}
  829. <meta name="description" content="{MetaDescription}" />
  830. {/block:Description}
  831.  
  832.  
  833. <style type="text/css">
  834.  
  835.  
  836.  
  837.  
  838. /* body */
  839.  
  840.  
  841. body {background: {color:background} url('{image:background}') repeat; color:{color:text}; font-family:verdana; font-size:11px; line-height:110%}
  842.  
  843. a { text-decoration:none; color:{color:link};}
  844. a:hover {text-decoration:none; color:{color:link hover};}
  845.  
  846. p {margin: 6px 0 0 0}
  847.  
  848. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px; }
  849. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background};}
  850. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  851. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  852.  
  853. blockquote img{max-width: 430px!important}
  854. blockquote blockquote img{max-width: 430px!important}
  855. blockquote blockquote blockquote img{max-width: 430px!important}
  856. blockquote blockquote blockquote blockquote img{max-width: 400px!important}
  857.  
  858. /* BASE POR DUDA*/
  859. #content {width:850px; margin: 0px auto 20px auto; }
  860.  
  861. #omdg {float:left; margin-left:240px;overflow: hidden; }
  862.  
  863. #baseduh {width:470px;
  864. border: 4px double {color:borda};
  865. background-color:{color:post};
  866. margin-bottom:2px; padding:10px;
  867. text-align:left; position: relative; }
  868.  
  869. h1 {color:{color:text}; font-family:'Raleway Dots', cursive;font-size:14px; line-height:16px; text-align: center; font-weight:normal;}
  870. h1 a {color:{color:link}}
  871. h1 a:hover {color:{color:link hover}}
  872.  
  873. .image {text-align:center; border: 0px}
  874. .image img {max-width: 450px;border: 2px solid {color:borda}; margin-bottom: 2px }
  875.  
  876. .quote {font-family: georgia; text-align: center; font-size: 14px; line-height: 16px; padding: 3px;}
  877. .quotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  878. .quotesource a, a:hover{text-transform: none;}
  879.  
  880. .chat {line-height: 13px; list-style: none }
  881. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  882. .person1 {color: {color:text}; padding: 2px; }
  883. .person1 .label {font-weight: bold; color:{color:text}}
  884. .person2 {color: {color:text}; padding: 2px; }
  885. .person2 .label {font-weight: bold; color:{color:text}}
  886.  
  887. .player {background-color: #000; text-align: left; display:block;}
  888.  
  889.  
  890. .ask {width: 99%; background:{color:bgask}; font-weight:normal; padding:3px; margin-bottom: 1px; color:{color:text}; font-size: 11px; }
  891. .asker {width: 99%;height:18px; background:{color:background}; font-weight:normal; padding:3px; margin-bottom: 1px; color:{color:text}; font-size: 10px;text-align:left;line-height:20px;text-transform:uppercase;font-family: calibri;}
  892. .asker a{background:#; color:{color:text};}
  893. .askborder {width:38px;float: left; display: inline; margin-bottom: 2px;margin-left:-3px;border: 3px solid {color:borda};margin-top:-3px;}
  894. .resposta {background:{color:background}; font-weight:normal; padding:10px; margin-bottom:1px; text-shadow:0 0px 0px {color:sombra};color:{color:text}; font-size: 11px; }
  895.  
  896.  
  897. #date {text-align: right; font-size: 8px;border: 1px solid {color:borda}; background:{color:background};font-family:tinytots; text-transform: lowercase; z-index: 11;}
  898. #date a {font-size: 8px;}
  899.  
  900. .tags {color: {color:text}; font-size: 8px; font-family: tinytots; display: inline; list-style: none; text-transform: lowercase;}
  901. .tags a {font-size: 8px; color:{color:text}; display: inline; list-style: none; text-transform: lowercase;}
  902.  
  903. #cap {width: 500px; margin-top: -2px;}
  904. .source {display: none;}
  905.  
  906. .notes {width: 530px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: right}
  907. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  908. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  909. .notes img{display: none; border:0px}
  910.  
  911.  
  912.  
  913. /*ATENCAO DUDA* || imagemduh*/
  914. .duhimg {float: left; margin-top: 190;
  915. left: 215px;padding: 0px; position: fixed;}
  916.  
  917. .duhimg img {display: inline;
  918. margin-left:97px; width: 140px;
  919. margin-left: 0px; margin-top: 87px;
  920. height: 180px; text-align:center;
  921. margin-bottom: 0px;box-shadow: 0px 0px 9px {color:duda}; border: 4px solid {color:borda};
  922. padding:5px;}
  923.  
  924.  
  925. /*** IMAGEM DA DUDA***/
  926.  
  927.  
  928. #duhimg { margin-top: 110px;
  929. margin-left: 187px;
  930. position: fixed;
  931. overflow: hidden;
  932. border: 6px solid {color:bordaimg};
  933. z-index:9;}
  934. #duhimg img { width: 241px;
  935. height: 220px; padding: 2px; }
  936. #duhimg img:hover {-webkit-filter: grayscale(1); }/*omdg*/
  937.  
  938. #siduh {position: fixed; margin-left: 175px; width: 254px; height: 380px; background-color:{color:sidebar}; margin-top: 90px;-webkit-transform: rotate(0deg); -webkit-transform: rotate(180deg);}/*omdg*/
  939.  
  940. /* ------------------------------------FIM-------------------*/
  941.  
  942.  
  943. /* bordas , linhas etc */
  944. #estela1 {position: fixed; margin-left: 169px; width:285px; height: 390px; background-color:{color:borda}; background-image: url('{image:fudinho}'); margin-top: 45px; -webkit-transform: rotate(0deg); -webkit-transform: rotate(180deg);border: double 5px {color:borda};}
  945.  
  946.  
  947. /***TITULOS E LINKS***/
  948.  
  949. .frase {text-align: center;font-family:folks; font-size: 22px; font-style: none;height: 39px;color: {color:frase};background:{color:sidebar}; margin-left:210px;margin-top:70px; text-transform: none; letter-spacing: 1px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:168px;z-index:8000000000000000;line-height:21px; background-color:; text-shadow: 2px 5px 9px {color:sombra};}
  950.  
  951. .frase:hover{ -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; color:{color:borda2};}
  952.  
  953. .dukah {font-family:tinytots; font-size: 8px; font-style: none;
  954. height: 10px;color: {color:mytitle}; margin-left:210px;margin-top:89px; text-transform: none; letter-spacing: 0px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:174px;z-index:8000000000000000;line-height:17px; text-transform:uppercase;}
  955. @font-face { font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  956.  
  957. /*** FONTES***/
  958. @font-face { font-family: "folks"; src: url('http://static.tumblr.com/zvqacv0/lptm7vt4g/that__s_font_folks_.ttf'); }
  959.  
  960. @font-face { font-family: "craftygirls"; src: url('http://themes.googleusercontent.com/static/fonts/craftygirls/v0/0Sv8UWFFdhQmesHL32H8o3hCUOGz7vYGh680lGh-uXM.woff'); }
  961.  
  962. @font-face {font-family: "dawning";src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');}
  963. @font-face {font-family: "handy00";src: url('http://static.tumblr.com/8ls1oxv/AfJlyd5ev/handy00.ttf');}
  964.  
  965.  
  966. @font-face {font-family: "sweetly";src: url('http://static.tumblr.com/z5o2pr2/vpWm0rjxz/sweetly_broken.ttf');}
  967.  
  968.  
  969.  
  970. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  971.  
  972. @font-face {font-family: "buymore";src: url('http://static.tumblr.com/ygkexbz/mpZm51k9i/buy_more.ttf');}
  973.  
  974.  
  975. @font-face {font-family:basket; src: url('http://static.tumblr.com/ejm8w78/aollviadu/destrukt.ttf');}
  976.  
  977.  
  978. #credito {
  979. background-color:{color:bgdescription};
  980. color: {color:textdescription};
  981. width: 150px;
  982. height: 8px;
  983. padding: 3px 5px 5px 5px;
  984. position: fixed;
  985. float: left;
  986. top: 395px;
  987. left: 215px;
  988. font-family: tinytots;
  989. font-size: 7px;
  990.  
  991. }
  992.  
  993.  
  994. /******LINKS LINKS LINKS****/
  995. #pqpduh {width:55px;height:10px;
  996. float:left;-webkit-transition-duration: 0.4s;
  997. padding:0px;text-align:center; margin-left:381px;
  998. margin-top:73px; z-index:99999999;position:fixed;}
  999. #pqpduh a {float:left;-webkit-transition: all 0.2s ease-out;
  1000. -moz-transition: all .4s ease-out;display:block;
  1001. width:55px; border:3px double {color:borda2};
  1002. line-height:11px; color:{color:link}; /***link by o-mundo-de-uma-garota***/
  1003. background:{color:link hover}; font-family:verdana;
  1004. font-size:9px; text-align:center; text-decoration:none;
  1005. -webkit-transition: all 0.4s ease-out;
  1006. -moz-transition: all 0.4s ease-out;
  1007. transition: all 0.4s ease-out;}
  1008. #pqpduh a:hover{box-shadow: inset 50px 0px {color:bghover};
  1009. color: {color:bghoveR}; /***link by o-mundo-de-uma-garota***/
  1010. text-shadow: -2px 0px {color:sombra}, 2px 0px {color:borda2}; -webkit-box-shadow:inset 0 0 95px 5px {color:sombra}, 0 0 95px 35px {color:sombra};opacity:0.9;}
  1011.  
  1012.  
  1013. #pink{width:578px; height: 40px; float: left; margin-left:205px; margin-top: 398px; padding: 0px; text-align: center; position: fixed; z-index:9999;}
  1014. /***link by o-mundo-de-uma-garota***/
  1015. #pink a {display: inline-block;float: left; margin-left: 1px; font-family: calibri; font-size: 9px;letter-spacing:0px; text-align: center; margin-top: 2px; height: 24px; width: 40px; color:{color:links}; line-height: 22px; text-transform: uppercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color:{color:link hover}; } /***link by o-mundo-de-uma-garota***/
  1016.  
  1017. #pink a:hover{box-shadow: inset 50px 0px {color:bghover}; color: {color:bghoveR}; text-shadow: -2px 0px {color:sombra}, 2px 0px {color:borda2};-webkit-box-shadow:inset 0 0 95px 5px {color:sombra}, 0 0 95px 35px {color:sombra};opacity:0.9;} /***link by o-mundo-de-uma-garota***/
  1018.  
  1019.  
  1020.  
  1021. #sure {width: 100px; float: left; margin-left:183px; height:20px; margin-top: 67px; padding: 3px; text-align: center; position: fixed; background-color: transparent; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index:100 } /***link by o-mundo-de-uma-garota***/
  1022.  
  1023. #sure a {float: left; margin-right: 0px; display: block; width: 10px; letter-spacing: 2px; font-family: calibri; font-size: 9px; text-transform: uppercase; text-align: center; margin-bottom: 1px; border-right:3px double {color:borda2};background-color: {color:link hover}; color: {color:links}; text-decoration: none; height:31px;line-height:8px; padding: 4px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;border-left: 3px double{color:borda2};} /***link by o-mundo-de-uma-garota***/
  1024. #sure a:hover{-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;text-align: center; color:{color:borda2}; box-shadow: inset 0px 100px {color:bghover};}
  1025.  
  1026. /***DESCRIÇÃO ***/
  1027. #notinholaduda {margin-left: 187px; margin-top: 347px; width:247px; font-size: 11px; height: 30px; text-align: center; background-color:{color:sidebar}; transparent; font-family:georgia; color: {color:textdesc}; position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px;
  1028. -moz-transition: 1s ease-in; transition: 1s ease-in; overflow: hidden; opacity: 1; border-top: 3px dotted transparent;}
  1029.  
  1030. #credito a {color: {color:textdescription}; font-weight: bold; opacity: 10;}
  1031.  
  1032. #credito a:hover {opacity: 0.7; border-left: 0px;}
  1033.  
  1034.  
  1035. .seuanonimofofo img { width:220px; height: 250px;left:205px; text-align:center; margin-top: 10px; position: fixed;}
  1036.  
  1037.  
  1038. #page {position: fixed; margin-left:360px; margin-top: 403px; font-size: 25px; font-family: georgia; z-index:100;border-bottom:1px ;text-shadow: 1px 1px 1px {color:sombra};}
  1039. #page a {color:{color:links}}
  1040. #page a:hover {color:{color:borda};}
  1041.  
  1042. #pag {position: fixed; margin-left: 378px; margin-top: 403px; font-size: 25px; font-family: georgia; z-index:90000000000000000000000000000000000000000000000000000000000000000000;border-bottom:1px ;text-shadow: 1px 1px 1px {color:sombra};}
  1043. #pag a {color:{color:links}}
  1044. #pag a:hover {color:{color:borda};}
  1045.  
  1046.  
  1047. ::-webkit-scrollbar {width:19px;height:auto;background:transparent;}
  1048. ::-webkit-scrollbar-corner {background:{color:text};}
  1049. ::-webkit-scrollbar-button:vertical {height:8px; display: block; background:{color:text};}
  1050. ::-webkit-scrollbar-thumb:vertical {background:{color:text};background-image: url('{image:fudinho}'); border-top: 3px double {color:borda}; border-bottom: 3px double {color:borda};}
  1051. ::-webkit-scrollbar-track-piece {background:{color:post}; border-top: 1pt solid {color:borda}; border-bottom: 3px double {color:borda}; width:4pt;}
  1052. -::moz-selection {color:{color:scroll}; background:{color:text};}
  1053. ::selection {color:{color:post}; background:{color:text};}
  1054.  
  1055.  
  1056. /***FAIXAS***/
  1057. #dj2 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 146px; margin-top: 413px; color:{color:sidebar}; font-size: 23px; -webkit-transform: rotate(5deg); z-index: 1000;}/***detalhes by o-mundo-de-uma-garota***/
  1058.  
  1059.  
  1060.  
  1061. #faixa2 {margin-top: 65px; margin-left: 187px; position: fixed; background-color: {color:linha}; height: 4px; width:258px;}/***detalhes by o-mundo-de-uma-garota***/
  1062. #faixa3 {margin-top: 391px; margin-left: 187px; position: fixed; background-color: {color:linha}; height: 4px; width:257px;}/***detalhes by o-mundo-de-uma-garota***/
  1063. #faixa4 {margin-top: 399px; margin-left: 157px; position: fixed; background-color: {color:sidebar}; height: 25px; width:37px;}
  1064. #faixa5 {margin-top: 378px; margin-left: 151px; position: fixed; background-color: {color:sidebar}; height: 4px; width:18px;}/***detalhes by o-mundo-de-uma-garota***/
  1065. #faixa6 {margin-top: 400px; margin-left: 195px; position: fixed; background-color: {color:linha1}; height: 25px; width:1px; }/***detalhes by o-mundo-de-uma-garota***/
  1066. #faixa7 {margin-top: 380px; margin-left: 151px; position: fixed; background-color: {color:sidebar}; height: 45px; width:3px; }
  1067. #faixa8 {margin-top: 400px; margin-left: 199px; position: fixed; background-color: {color:linha}; height: 25px; width:3px; }/***detalhes by o-mundo-de-uma-garota***/
  1068. #faixa9 {margin-top: 422px; margin-left: 151px; position: fixed; background-color: {color:sidebar}; height: 4px; width:9px;}/***detalhes by o-mundo-de-uma-garota***/
  1069.  
  1070.  
  1071.  
  1072. #tilhadinha {float: left; margin-top: 56px; margin-left: 283px; width: 240px; background-color: transparent; color:{color:linha1} ; padding: 3px; font-size: 11px; font-family: consolas; 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; -webkit-transform: rotate(deg)}/***detalhes by o-mundo-de-uma-garota***/
  1073. #tilhadinha a{font-size: 9px; color: {color:linha1} }
  1074.  
  1075.  
  1076. #tilhadinha1 {float: left; margin-top: 383px; margin-left: 103px; width: 240px; background-color: transparent; color:{color:linha1} ; padding: 3px; font-size: 11px; font-family: consolas; 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; -webkit-transform: rotate(deg)}/***detalhes by o-mundo-de-uma-garota***/
  1077. #tilhadinha1 a{font-size: 9px; color: {color:linha1} }
  1078.  
  1079. /***FRASINHA**/
  1080.  
  1081. #amariaduh {margin-top: 70px;
  1082. margin-left: 379px;
  1083. position: fixed;
  1084. background-color: {color:sidebar};
  1085. height: 39px; width:65px;}
  1086.  
  1087. #babysure {margin-top: 70px;
  1088. margin-left: 185px;
  1089. position: fixed;
  1090. height:35px;
  1091. font-family:"folks";
  1092. font-size:22;
  1093. color:{color:frase};
  1094. background:{color:sidebar};
  1095. width: 205px;
  1096. line-height:24px;
  1097. border-bottom:4px double {color:borda};
  1098. opacity:1;text-shadow: 5px 5px 9px {color:sombra};
  1099.  
  1100.  
  1101.  
  1102. #fade {display: none; background: #000;position: fixed; left: 0; top: 0; width: 100%; height: 100%; opacity: .80; z-index: 9999;border: 3px solid {color:borda2};}
  1103. .popup_block{display: none;font-family:"existance";border-bottom: 3px solid {color:borda2};background: {color:sidebar}; padding: 20px; border: 20px double {color:borda2}; float: left; font-size: 1.2em; position: fixed; top: 50%; left: 50%; z-index: 99999;-webkit-box-shadow: 0px 0px 20px {color:sombra}; -moz-box-shadow: 0px 0px 20px {color:sombra}; box-shadow: 0px 0px 20px {color:sombra}; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;}
  1104. img.btn_close {float: right; margin: -55px -55px 0 0;}
  1105. *html #fade {position: absolute;}
  1106. *html .popup_block {position: absolute;}
  1107. @font-face { font-family: "existance"; src: url('http://static.tumblr.com/u37ad6e/OCIm7s3av/existence-unicaselight.otf'); }
  1108.  
  1109.  
  1110. .heart
  1111.  
  1112. {background: #1c1c1c;
  1113.  
  1114. font-family: "craftygirls";
  1115.  
  1116. font-size: 19px;
  1117.  
  1118. margin: 1px;
  1119.  
  1120. color: #D3D3D3;
  1121.  
  1122. display: block;
  1123.  
  1124. -moz-box-shadow: inset 3px 0 0px 0 #ee1133;
  1125.  
  1126. -webkit-box-shadow: inset 3px 0 0px 0 #ee1133;
  1127.  
  1128. box-shadow: inset 3px 0 0px 0 #FF69B4;
  1129.  
  1130. padding: 3px 3px 3px 6px;
  1131.  
  1132. -moz-transition: all 0.4s ease-out;
  1133.  
  1134. -webkit-transition: all 0.8s ease-out;
  1135.  
  1136. -o-transition: all 0.8s ease-out;
  1137.  
  1138. -ms-transition: all 0.8s ease-out;
  1139.  
  1140. transition: all 0.8s ease-out;}
  1141.  
  1142. .heart:hover
  1143.  
  1144. {-moz-box-shadow: inset 550px 0 0px 0 #FF69B4;
  1145.  
  1146. -webkit-box-shadow: inset 550px 0 0px 0 #FF69B4;
  1147.  
  1148. box-shadow: inset 550px 0 0px 0 #000;
  1149.  
  1150. color:#FF69B4 ;}
  1151.  
  1152. .heart
  1153.  
  1154. a{color:#FF69B4;}
  1155.  
  1156. .heart
  1157.  
  1158. b{color: #000;}
  1159.  
  1160.  
  1161.  
  1162. </style>
  1163.  
  1164. </head>
  1165. <body onkeydown="return false">
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172. <style type="text/css"></style>
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178. <meta http-equiv="x-dns-prefetch-control" content="off"/></head>
  1179.  
  1180.  
  1181.  
  1182.  
  1183. <div id="estela1"></div>
  1184.  
  1185.  
  1186. <div id="dj2">◥</div>
  1187.  
  1188. <div id="faixa2"></div>
  1189. <div id="faixa3"></div>
  1190. <div id="faixa4"></div>
  1191. <div id="faixa5"></div>
  1192. <div id="faixa6"></div>
  1193. <div id="faixa7"></div>
  1194.  
  1195. <div id="faixa8"></div>
  1196. <div id="faixa9"></div>
  1197.  
  1198. <div id="tilhadinha"> ============</div>
  1199. <div id="tilhadinha1"> ============</div>
  1200.  
  1201.  
  1202. <div class="treme">
  1203. <div id="duhimg">
  1204. <img src="{image:fotod}">
  1205. </div></div>
  1206. <div id="notinholaduda">{Description}</div>
  1207.  
  1208.  
  1209.  
  1210.  
  1211. <div id="amariaduh"></div>
  1212. <div id="sure">
  1213. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}</a>
  1214. </div>
  1215.  
  1216.  
  1217.  
  1218. <div id="pqpduh">
  1219. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title} </a>{/block:ifLink2}
  1220. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title} </a>{/block:ifLink3}
  1221.  
  1222. </div>
  1223.  
  1224. <div id="pink">
  1225. <a href="{text:Link4}">{text:Link4 Title}</a>
  1226. <a href="{text:Link5}">{text:Link5 Title}</a>
  1227. <a href="{text:Link6}">{text:Link6 Title}</a>
  1228.  
  1229. </div class>
  1230. </div></div>
  1231. </div>
  1232. </div>
  1233. </div>
  1234.  
  1235. <center><div class="frase"><center>{text:frase}</center></div></center>
  1236. <center><div class="dukah"><center>{text:frase2}</center></div></center>
  1237.  
  1238.  
  1239. <!-----------------------------PAG (OMDG)------------->
  1240. <div id="pag">{block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}</div>
  1241.  
  1242. <div id="page">{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}</div></div>
  1243. </div>
  1244. </div>
  1245. <!-------------CRÉDITOS------------------------------>
  1246. <div style="margin-left:42px;-webkit-transform: rotate(-90deg); width:245px;background:; font-family:tahoma;font-size:11px; margin-top: 215px; position:fixed; "><a href="http://o-mundo-de-uma-garota.tumblr.com/"><small>Theme by :o-mundo-de-uma-garota</small></a>
  1247. <font color="{color:tags}">©</font> </a></div>
  1248.  
  1249. <!-------------BASE DUH OMDG------------------->
  1250.  
  1251. <div id="omdg">
  1252.  
  1253.  
  1254. <div id="omdg">
  1255.  
  1256. {block:Posts}
  1257. <div id="baseduh">
  1258. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1259.  
  1260. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  1261.  
  1262. {block:Photoset}{Photoset-500}{/block:Photoset}
  1263.  
  1264. {block:Quote}
  1265. <div class="quote">“{Quote}”</div>
  1266. {block:Source}<div class="quotesource"> — {Source}</div>
  1267. {/block:Source}
  1268. {/block:Quote}
  1269.  
  1270. {block:Link}
  1271. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1272. {block:Description}{Description}{/block:Description}
  1273. {/block:Link}
  1274.  
  1275. {block:Chat}
  1276. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1277. <div class="chat"><ul>{block:Lines}
  1278. <li class="person{UserNumber}">{block:Label}
  1279. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1280. {/block:Chat}
  1281.  
  1282. {block:Audio}
  1283. <div class="player">{AudioPlayerBlack}</div>
  1284. {block:Caption}{Caption}{/block:Caption}
  1285. {/block:Audio}
  1286.  
  1287. {block:Video}{Video-500}{/block:Video}
  1288.  
  1289. {block:Answer}
  1290. <div class="asker"><img src="{AskerPortraitURL-64}"align="left" class="askborder"/>Pergunta feita por: {Asker}
  1291. </div>
  1292. <div class="ask">
  1293. {Question} </div>
  1294. <div class="resposta">{Answer}</div>
  1295. {/block:Answer}
  1296.  
  1297.  
  1298. <div id="cap">
  1299. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1300. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1301. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1302.  
  1303. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1304. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1305. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1306. {/block:ContentSource}</div></div>
  1307. <br>
  1308.  
  1309.  
  1310. <div id="date">
  1311. {block:Date}
  1312. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} <font color="{color:tags}">. </font> <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} <font color="{color:tags}">.</font> <a href="{ReblogUrl}" target="_blank">reblog</a><img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class="" title=""> <font color="{color:tags}">..</font>{/block:IndexPage}
  1313. {block:RebloggedFrom}<br> via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  1314. {/block:RebloggedFrom}{block:RebloggedFrom} Originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}"> {ReblogRootName}</a>{/block:RebloggedFrom}<br><div class="tags">{block:HasTags}{block:Tags}<font color="{color:tags}">#</font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}
  1315. </div>
  1316. </div>
  1317. </div>{/block:Date}
  1318.  
  1319.  
  1320. {/block:Posts}
  1321. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  1322.  
  1323.  
  1324. </div>
  1325. </div>
  1326. </div>
  1327.  
  1328.  
  1329. </body>
  1330. </html>
Advertisement
Add Comment
Please, Sign In to add comment