Eduarda

Theme 58

Sep 27th, 2012
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.01 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3.  
  4. <!----
  5. 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.
  6.  
  7. - - - - - - - - - - - - - -
  8. - THEME FEITO POR DUDA.R -
  9. - - - - - - - - - - - - - - ---->
  10.  
  11.  
  12.  
  13.  
  14. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
  15.  
  16.  
  17. <script>
  18.  
  19. // <![CDATA[
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. var bgcolour="#FFC5DD"; // background colour
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. var fgcolour="#999999"; // foreground colour
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43. var speed=120; // speed of bubbling, lower is faster
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. var shades=5; // number of shades of bubble
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67. /****************************
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75. * Bubbling Text Effect *
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83. *(c) 2003-6 mf2fm web-design*
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91. * http://www.mf2fm.com/rv *
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99. * DON'T EDIT BELOW THIS BOX *
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107. ****************************/
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115. var bubbcol=new Array();
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123. var bubbler, bubbtxt;
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131. var bubbchr=new Array();
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139. window.onload=function() { if (document.getElementById) {
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147. for (bubbler=0; bubbler<=shades; bubbler++) {
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155. bubbtxt="#";
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163. for (var i=1; i<6; i+=2) {
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171. var bg=parseInt(bgcolour.substring(i,i+2),16);
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187. }
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195. bubbcol[bubbler+1]=bubbtxt;
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203. }
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211. bubbler=document.getElementById("bubble");
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219. bubbtxt=bubbler.firstChild.nodeValue;
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235. for (var i=0; i<bubbtxt.length; i++) {
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243. var bubbi=document.createElement("span");
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251. bubbi.setAttribute("id", "bubb"+i);
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267. bubbler.appendChild(bubbi);
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275. }
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283. bubbler=setInterval ("bubbling()", speed);
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291. }}
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307. function dechex(dec) {
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315. var hex=dec.toString(16);
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323. if (dec<16) return "0"+hex;
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331. else return hex;
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339. }
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355. function bubbling() {
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363. for (var i=0; i<bubbtxt.length; i++) {
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371. var bubbme=document.getElementById("bubb"+i);
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379. if (bubbchr[i]) {
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387. bubbme.style.color=bubbcol[bubbchr[i]];
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403. }
  404.  
  405.  
  406.  
  407.  
  408.  
  409.  
  410.  
  411. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  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.  
  441. </script>
  442.  
  443.  
  444.  
  445. <link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here' rel='stylesheet' type='text/css'>
  446.  
  447. <script src="http://code.jquery.com/jquery-latest.js"></script>
  448.  
  449.  
  450.  
  451. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
  452.  
  453.  
  454.  
  455. <script type="text/javascript" src="http://static.tumblr.com/ifqwhnb/GBsm20q7d/jquery.nivo.slider.pack.js"></script>
  456.  
  457. <script type="text/javascript">
  458.  
  459.  
  460.  
  461. var $nv4wp = jQuery.noConflict();
  462.  
  463.  
  464.  
  465. $nv4wp(window).load(function() {
  466.  
  467.  
  468.  
  469. $nv4wp('#slider').nivoSlider({
  470.  
  471.  
  472.  
  473. effect:'random',
  474.  
  475.  
  476.  
  477. slices:15, // For slice animations
  478.  
  479.  
  480.  
  481. boxCols: 4, // For box animations
  482.  
  483.  
  484.  
  485. boxRows: 2, // For box animations
  486.  
  487.  
  488.  
  489. animSpeed:500, // Slide transition speed
  490.  
  491.  
  492.  
  493. pauseTime:3000, // How long each slide will show
  494.  
  495.  
  496.  
  497. startSlide:0, // Set starting Slide (0 index)
  498.  
  499.  
  500.  
  501. directionNav:true, //Next & Prev
  502.  
  503.  
  504.  
  505. directionNavHide:true, //Only show on hover
  506.  
  507.  
  508.  
  509. controlNav:true, // 1,2,3... navigation
  510.  
  511.  
  512.  
  513. controlNavThumbs:false, // Use thumbnails for Control Nav
  514.  
  515.  
  516.  
  517. controlNavThumbsFromRel:false, // Use image rel for thumbs
  518.  
  519.  
  520.  
  521. controlNavThumbsSearch: '.jpg', // Replace this with...
  522.  
  523.  
  524.  
  525. controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
  526.  
  527.  
  528.  
  529. keyboardNav:true, //Use left & right arrows
  530.  
  531.  
  532.  
  533. pauseOnHover:true, //Stop animation while hovering
  534.  
  535.  
  536.  
  537. manualAdvance:false, //Force manual transitions
  538.  
  539.  
  540.  
  541. captionOpacity:0.9, //Universal caption opacity
  542.  
  543.  
  544.  
  545. prevText: 'Prev', // Prev directionNav text
  546.  
  547.  
  548.  
  549. nextText: 'Next', // Next directionNav text
  550.  
  551.  
  552.  
  553. beforeChange: function(){}, // Triggers before a slide transition
  554.  
  555.  
  556.  
  557. afterChange: function(){}, // Triggers after a slide transition
  558.  
  559.  
  560.  
  561. slideshowEnd: function(){}, // Triggers after all slides have been shown
  562.  
  563.  
  564.  
  565. lastSlide: function(){}, // Triggers when last slide is shown
  566.  
  567.  
  568.  
  569. afterLoad: function(){} // Triggers when slider has loaded
  570.  
  571.  
  572.  
  573. });
  574.  
  575.  
  576.  
  577. });
  578.  
  579.  
  580.  
  581. </script>
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589. <script type="text/javascript">
  590.  
  591. function changeNavigation(id) {document.getElementById('entries').innerHTML=document.getElementById(id).innerHTML}
  592.  
  593. </script>
  594.  
  595.  
  596. <script type="text/javascript">
  597.  
  598. //desabilita menu de opcoes ao clicar no botao direito
  599.  
  600. function desabilitaMenu(e)
  601.  
  602. {
  603.  
  604. if (window.Event)
  605.  
  606. {
  607.  
  608. if (e.which == 2 || e.which == 3)
  609.  
  610. return false;
  611.  
  612. }
  613.  
  614. else
  615.  
  616. {
  617.  
  618. event.cancelBubble = true
  619.  
  620. event.returnValue = false;
  621.  
  622. return false;
  623.  
  624. }
  625.  
  626. }
  627.  
  628.  
  629.  
  630. //desabilita botao direito
  631.  
  632. function desabilitaBotaoDireito(e)
  633.  
  634. {
  635.  
  636. if (window.Event)
  637.  
  638. {
  639.  
  640. if (e.which == 2 || e.which == 3)
  641.  
  642. return false;
  643.  
  644. }
  645.  
  646. else
  647.  
  648. if (event.button == 2 || event.button == 3)
  649.  
  650. {
  651.  
  652. event.cancelBubble = true
  653.  
  654. event.returnValue = false;
  655.  
  656. return false;
  657.  
  658. }
  659.  
  660. }
  661.  
  662.  
  663.  
  664. //desabilita botao direito do mouse
  665.  
  666. if ( window.Event )
  667.  
  668. document.captureEvents(Event.MOUSEUP);
  669.  
  670. if ( document.layers )
  671.  
  672. document.captureEvents(Event.MOUSEDOWN);
  673.  
  674.  
  675.  
  676. document.oncontextmenu = desabilitaMenu;
  677.  
  678. document.onmousedown = desabilitaBotaoDireito;
  679.  
  680. document.onmouseup = desabilitaBotaoDireito;
  681.  
  682. </script>
  683.  
  684. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  685.  
  686.  
  687. <!-- DEFAULT VARIABLES -->
  688.  
  689.  
  690. <meta name="color:background" content="#DCDCDC" />
  691. <meta name="color:text" content="#8B8989" />
  692. <meta name="color:link" content="#8B8989" />
  693. <meta name="color:post" content="#fff" />
  694. <meta name="color:bg link" content="#fff" />
  695. <meta name="color:linklink" content="#8B8989" />
  696. <meta name="color:textdescription" content="#8B8989" />
  697. <meta name="color:borda2" content="#FF69B4" />
  698. <meta name="color:frase" content="#8B8989" />
  699. <meta name="color:duda" content="#000" />
  700. <meta name="color:borda" content="#CDC5BF" />
  701. <meta name="color:rll" content="#8B8989" />
  702. <meta name="color:tags" content="#FF69B4" />
  703. <meta name="color:sidebar" content="#fff" />
  704.  
  705. <meta name="text:frase1" content="Eu você e a nossa casinha"/>
  706. <meta name="text:frase2" content="eai topa?"/>
  707. <meta name="image:background" content="http://static.tumblr.com/2bh9bxo/P8rmazqgb/tumblr_m7tv6kcaui1rc52dzo2_400.jpg">
  708. <meta name="image:fudinho" content="http://static.tumblr.com/2bh9bxo/mwNmazsx7/bgclarinho.png" />
  709. <meta name="image:sidebar" content="http://static.tumblr.com/2bh9bxo/PPxmazqx7/tumblr_m6n3majzrf1rxmod8o1_500.jpg" />
  710.  
  711.  
  712. <meta name="text:Link1" content="/" />
  713. <meta name="text:Link1 Title" content="link" />
  714. <meta name="text:Link2" content="/" />
  715. <meta name="text:Link2 Title" content="link" />
  716. <meta name="text:Link3" content="/" />
  717. <meta name="text:Link3 Title" content="link" />
  718. <meta name="text:Link4" content="/" />
  719. <meta name="text:Link4 Title" content="link" />
  720. <meta name="text:Link5" content="/" />
  721. <meta name="text:Link5 Title" content="link" />
  722. <meta name="text:Link6" content="/" />
  723. <meta name="text:Link6 Title" content="link" />
  724.  
  725.  
  726.  
  727. <title>{Title}</title>
  728. <link rel="shortcut icon" href="{Favicon}">
  729. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  730. {block:Description}
  731. <meta name="description" content="{MetaDescription}" />
  732. {/block:Description}
  733.  
  734.  
  735. <style type="text/css">
  736.  
  737.  
  738.  
  739.  
  740. /* body */
  741.  
  742.  
  743. body {background: {color:background} url('{image:background}') repeat; color:{color:text}; font-family:verdana; font-size:11px; line-height:110%}
  744.  
  745. a { text-decoration:none; color:{color:link};}
  746. a:hover {text-decoration:none; color:{color:link hover};}
  747.  
  748. p {margin: 6px 0 0 0}
  749.  
  750. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px; }
  751. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background};}
  752. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  753. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  754.  
  755. blockquote img{max-width: 470px!important}
  756. blockquote blockquote img{max-width: 450px!important}
  757. blockquote blockquote blockquote img{max-width: 430px!important}
  758. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  759.  
  760. /* BASE POR DUDA*/
  761. #content {width:850px; margin: 0px auto 20px auto; }
  762.  
  763. #omdg {float:left; margin-left:200px; }
  764.  
  765. #baseduh {width:500px;
  766. border: 4px double {color:borda};
  767. background-color:{color:post};
  768. margin-bottom:2px; padding:10px;
  769. text-align:justify; position: relative; }
  770.  
  771. h1 {color:{color:text}; font-family:'Raleway Dots', cursive;font-size:14px; line-height:16px; text-align: center; font-weight:normal;}
  772. h1 a {color:{color:link}}
  773. h1 a:hover {color:{color:link hover}}
  774.  
  775. .image {text-align:center; border: 0px}
  776. .image img {max-width: 450px;border: 2px solid {color:borda}; margin-bottom: 2px }
  777.  
  778. .quote {font-family: georgia; text-align: center; font-size: 14px; line-height: 16px; padding: 3px;}
  779. .quotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  780. .quotesource a, a:hover{text-transform: none;}
  781.  
  782. .chat {line-height: 13px; list-style: none }
  783. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  784. .person1 {color: {color:text}; padding: 2px; }
  785. .person1 .label {font-weight: bold; color:{color:text}}
  786. .person2 {color: {color:text}; padding: 2px; }
  787. .person2 .label {font-weight: bold; color:{color:text}}
  788.  
  789. .player {background-color: #000; text-align: left; display:block;}
  790.  
  791.  
  792. /* asker by o-mundo-de-uma-garota */
  793.  
  794. .asker {width: 480px; background-color: {color:background}; color:{color:text}; padding: 10px}
  795. .asker img{float: left;border: 2px double {color:borda2}; margin: 0px 24px 12px 0; }
  796. .asker a{font-size: 11px; color:{color:text}; text-transform: none; line-height: 17px; padding: 0; margin: 0; font-family: verdana; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; }
  797. .asker a:hover{font-size: 11px; color:{color:text}; text-transform: none; line-height:27px; padding: 0; margin: 0; font-family:verdana;}
  798. .answer {padding: 4px}
  799. .answer img {max-width: 470px;}
  800.  
  801. #date {text-align: right; font-size: 8px;border: 1px solid {color:borda}; background:{color:background};font-family:tinytots; text-transform: lowercase; z-index: 11;}
  802. #date a {font-size: 8px;}
  803.  
  804. .tags {color: {color:text}; font-size: 8px; font-family: tinytots; display: inline; list-style: none; text-transform: lowercase;}
  805. .tags a {font-size: 8px; color:{color:text}; display: inline; list-style: none; text-transform: lowercase;}
  806.  
  807. #cap {width: 500px; margin-top: -2px;}
  808. .source {display: none;}
  809.  
  810. .notes {width: 530px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: right}
  811. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  812. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  813. .notes img{display: none; border:0px}
  814.  
  815.  
  816.  
  817. /*ATENCAO DUDA* || imagemduh*/
  818. .duhimg {float: left; margin-top: 125;
  819. left: 215px;padding: 0px; position: fixed;}
  820.  
  821. .duhimg img {display: inline;
  822. margin-left:97px; width: 140px;
  823. margin-left: 0px; margin-top: 87px;
  824. height: 180px; text-align:center;
  825. margin-bottom: 0px;box-shadow: 0px 0px 9px {color:duda}; border: 4px solid {color:borda};
  826. padding:5px;}
  827.  
  828.  
  829. /* ------------------------------------FIM-------------------*/
  830.  
  831. /*titulos*/
  832.  
  833. #imsureduh1{
  834. background-color:transparent;
  835. padding: 0px;
  836. height:18px;
  837. line-height:16px;
  838. float:left;
  839. position:fixed;
  840. margin-left:204px;
  841. margin-top: 50px;
  842. width:196px;
  843. font-family: 'LavanderiaRegular';
  844. font-size:17px;
  845. letter-spacing:0px;
  846. text-align: left;
  847. color:{color:frase}; letter-spacing:-1px;
  848. z-index:9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000; text-transform: none;
  849. }
  850.  
  851. #imsureduh2{
  852. background-color:transparent;
  853. padding: 0px;
  854. height:18px;
  855. line-height:16px;
  856. float:left;
  857. position:fixed;
  858. margin-left:284px;
  859. margin-top: 66px;
  860. width:196px;
  861. font-family:'LavanderiaRegular' ;
  862. font-size:16px;
  863. letter-spacing:0px;
  864. text-align: left;
  865. color: {color:frase}; letter-spacing:-1px;
  866. z-index:9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000; text-transform: none;
  867. }
  868.  
  869. /*FONTES AQUI */
  870. @font-face {
  871.  
  872. font-family: 'LavanderiaRegular';
  873.  
  874. src: url('http://static.tumblr.com/2lqtwbf/G1Dlyrsst/lavanderia_regular-webfont.eot');
  875.  
  876.  
  877. src: url('http://static.tumblr.com/2lqtwbf/G1Dlyrsst/lavanderia_regular-webfont.eot?#iefix') format('embedded-opentype'),
  878.  
  879.  
  880. url('http://static.tumblr.com/2lqtwbf/RAPlyrset/lavanderia_regular-webfont.ttf') format('truetype'),
  881.  
  882.  
  883. url('http://static.tumblr.com/2lqtwbf/kb1lyrsq2/lavanderia_regular-webfont.svg#LavanderiaRegular') format('svg');
  884.  
  885.  
  886. font-weight: normal;
  887.  
  888.  
  889. font-style: normal;}
  890.  
  891. @font-face { font-family: "luv"; src: url('http://static.tumblr.com/jdjsstr/jAKm8lv4d/djb_jacked_up_kinda_luv_1_.ttf'); }
  892.  
  893. @font-face {font-family:basket; src: url('http://static.tumblr.com/ejm8w78/aollviadu/destrukt.ttf');}
  894.  
  895.  
  896. @font-face {font-family: "Edo"; src: url('http://static.tumblr.com/lj4xzrj/an4m39jkw/edo.ttf');}
  897.  
  898. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  899. @font-face { font-family: "swagger"; src: url('http://static.tumblr.com/zvqacv0/gjTm74ni6/swagger.ttf'); }
  900.  
  901. /* ============================FIM==========================*/
  902.  
  903. /* links by Duda.R*/
  904.  
  905. #duh1 {width:129px; height: 23px; float: left; margin-left:205px; margin-top: 338px; padding: 0px; text-align: center; position: fixed; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; border-bottom: 0px solid {color:borda2}; border-right: 0px solid {color:borda2}; border-left: 0px solid {color:borda2}; background-color: transparent}
  906. #duh1 a {float: left; margin-left: 0px; font-family: verdana; font-size: 9px; text-align: center; margin-top: 3px; height: 18px; width: 43px; color:{color:links}; line-height: 15px; letter-spacing: -1px; text-transform: lowercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color: {color:bg link}; text-transform: lowercase; box-shadow: 0px 0px 9px {color:duda}};border-top: 0px solid {color:borda}; border-bottom: 0px solid {color:borda2};}/*theme by o-mundo-de-uma-garota*/
  907. #duh1 a:hover{text-align: center; color:{color:linkshover}; font-style: bold; background-color: {color:bglinkshover}; letter-spacing: -1px;}
  908.  
  909.  
  910. #duh2 {width:129px; height: 23px; float: left; margin-left:239px; margin-top: 358px; padding: 0px; text-align: center; position: fixed; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; border-bottom: 0px solid {color:borda2}; border-right: 0px solid {color:borda2}; border-left: 0px solid {color:borda}; background-color: transparent}
  911. #duh2 a {float: left; margin-left: 0px; font-family: verdana; font-size: 9px; text-align: center; margin-top: 3px; height: 18px; width: 43px; color:{color:links}; line-height: 15px; letter-spacing: -1px; text-transform: lowercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color: {color:bg link}; text-transform: lowercase;box-shadow: 0px 0px 9px {color:duda}};border-top: 1px solid {color:borda2}; border-bottom: 0px solid {color:borda2};}/* OMDG*/
  912. #duh2 a:hover{text-align: center; color:{color:linkshover}; font-style: bold; background-color: {color:bglinkshover}; letter-spacing: -1px;}
  913.  
  914.  
  915. #notinhola{position: fixed; margin-top: 285px;
  916. margin-left: 205px; width: 160px;
  917. height: 60px; background-color: z-index:2;
  918. font-family: swagger;}
  919. .notinholaduh{color: {color:textdescription};
  920. clear: both; font-size:12px; height: 83px;
  921. text-align: center; background-color:transparent;
  922. padding: 8px; margin-top: -3px; font-family: swagger;}
  923. .notinholaduh a{font-size:12px}
  924. #notinhola a:hover{position: fixed;
  925. margin-top: -3px; margin-left: 50px;
  926. height: 22px; z-index:2; text-transform: arial}
  927.  
  928.  
  929. /* bordas , linhas etc */
  930. #estela1 {position: fixed; margin-left: 198px; width:170px; height: 450px; background-color:{color:borda}; background-image: url('{image:fudinho}'); margin-top: -13px; -webkit-transform: rotate(0deg);-webkit-border-radius: 20px 20px 0px 0px; -webkit-transform: rotate(180deg);border: 4px double {color:borda};}
  931.  
  932.  
  933. #tilhadinha {float: left; margin-top: 23px; margin-left: 163px; width: 240px; background-color: transparent; color:{color:borda2} ; 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)}
  934. #tilhadinha a{font-size: 9px; color: {color:borda2} }
  935.  
  936. #tilhadinha1 {float: left; margin-top: 400px; margin-left:163px; width: 240px; background-color: transparent; color: {color:borda2}; 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(0deg)}
  937. #tilhadinha1 a{font-size: 9px; color:{color:borda2}}
  938.  
  939. /* paginação by Duda.r (omdg) */
  940. #pagination {position:fixed; margin-top:425px; margin-left:265px;}
  941. #pagination a{width: 55px; height: 10px; line-height: 8px; padding: 5px; font-size:29px; font-family:georgia; text-align:center; color:{color:link}; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  942.  
  943. #credito {
  944. background-color:{color:bgdescription};
  945. color: {color:textdescription};
  946. width: 150px;
  947. height: 8px;
  948. padding: 3px 5px 5px 5px;
  949. position: fixed;
  950. float: left;
  951. top: 395px;
  952. left: 215px;
  953. font-family: tinytots;
  954. font-size: 7px;
  955.  
  956. }
  957.  
  958.  
  959.  
  960. #credito a {color: {color:textdescription}; font-weight: bold; opacity: 10;}
  961.  
  962. #credito a:hover {opacity: 0.7; border-left: 0px;}
  963.  
  964.  
  965. .seuanonimofofo img { width:220px; height: 250px;left:205px; text-align:center; margin-top: 10px; position: fixed;}
  966.  
  967.  
  968. ::-webkit-scrollbar{width:14px;height:4px;}
  969.  
  970. ::-webkit-scrollbar-button:start:decrement
  971.  
  972. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  973.  
  974. ::-webkit-scrollbar-track-piece{background-color:#f4f4f4;-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  975.  
  976. ::-webkit-scrollbar-thumb:vertical{height:50px;border: 2px solid {color:borda2}; background-color:{color:rll};-webkit-border-radius:px;}
  977.  
  978. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:{color:rll};-webkit-border-radius:px;}
  979.  
  980.  
  981.  
  982.  
  983.  
  984. </style>
  985.  
  986. </head>
  987. <body onkeydown="return false">
  988.  
  989.  
  990.  
  991.  
  992. <style type="text/css"></style>
  993.  
  994.  
  995.  
  996.  
  997.  
  998. <meta http-equiv="x-dns-prefetch-control" content="off"/></head>
  999.  
  1000.  
  1001.  
  1002.  
  1003. <div id="estela1"></div>
  1004.  
  1005. <div id="tilhadinha"> ........................</div>
  1006.  
  1007. <div id="tilhadinha1">...........................</div>
  1008.  
  1009. <div class="duhimg"><img src="{image:sidebar}"alt="" title="baby im sure"/>
  1010.  
  1011. </div>
  1012.  
  1013.  
  1014.  
  1015. </div></div></div>
  1016. <div id="imsureduh2">{text:frase2} </div>
  1017. </div>
  1018.  
  1019. <div id="imsureduh1">{text:frase1}</div>
  1020. </div>
  1021.  
  1022. <div id="notinhola">
  1023. <div class="notinholaduh">{block:Description}{Description}{/block:Description}</div>
  1024.  
  1025.  
  1026. </div>
  1027.  
  1028.  
  1029. <div id="duh1">
  1030. <a href="{text:Link1}">{text:Link1 Title}</a>
  1031. <a href="{text:Link2}">{text:Link2 Title}</a>
  1032. <a href="{text:Link3}">{text:Link3 Title}</a>
  1033. </div>
  1034.  
  1035. </div>
  1036.  
  1037. <div id="duh2">
  1038. <a href="{text:Link4}">{text:Link4 Title}</a>
  1039. <a href="{text:Link5}">{text:Link5 Title}</a>
  1040. <a href="{text:Link6}">{text:Link6 Title}</a>
  1041. </div>
  1042.  
  1043. </div>
  1044.  
  1045. <div id="pagination">
  1046. {block:PreviousPage}<a href="{PreviousPage}">«</a> {/block:PreviousPage}
  1047. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}
  1048. </div></div>
  1049.  
  1050. <div id="credito">THEME BY <a href="http://o-mundo-de-uma-garota.tumblr.com/">o-mundo-de-uma-garota</font></a></a></div>
  1051.  
  1052.  
  1053. <div id="omdg">
  1054.  
  1055.  
  1056. <div id="omdg">
  1057.  
  1058. {block:Posts}
  1059. <div id="baseduh">
  1060. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1061.  
  1062. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  1063.  
  1064. {block:Photoset}{Photoset-500}{/block:Photoset}
  1065.  
  1066. {block:Quote}
  1067. <div class="quote">“{Quote}”</div>
  1068. {block:Source}<div class="quotesource"> — {Source}</div>
  1069. {/block:Source}
  1070. {/block:Quote}
  1071.  
  1072. {block:Link}
  1073. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1074. {block:Description}{Description}{/block:Description}
  1075. {/block:Link}
  1076.  
  1077. {block:Chat}
  1078. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1079. <div class="chat"><ul>{block:Lines}
  1080. <li class="person{UserNumber}">{block:Label}
  1081. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1082. {/block:Chat}
  1083.  
  1084. {block:Audio}
  1085. <div class="player">{AudioPlayerBlack}</div>
  1086. {block:Caption}{Caption}{/block:Caption}
  1087. {/block:Audio}
  1088.  
  1089. {block:Video}{Video-500}{/block:Video}
  1090.  
  1091.  
  1092.  
  1093. {block:Answer}
  1094. <div class="asker"><img src="{AskerPortraitURL-30}" class="baby im sure duh"><b>{Asker}</b> sussurou:<br>{Question}</div>
  1095. <div class="answer"><br>{Answer}</div>
  1096. {/block:Answer}
  1097.  
  1098.  
  1099.  
  1100. <div id="cap">
  1101. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1102. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1103. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1104.  
  1105. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1106. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1107. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1108. {/block:ContentSource}</div></div>
  1109. <br>
  1110.  
  1111.  
  1112. <div id="date">
  1113. {block:Date}
  1114. <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}
  1115. {block:RebloggedFrom}<br> via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  1116. {/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}
  1117. </div>
  1118. </div>
  1119. </div>{/block:Date}
  1120.  
  1121.  
  1122. {/block:Posts}
  1123. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  1124.  
  1125.  
  1126. </div>
  1127. </div>
  1128. </div>
  1129.  
  1130.  
  1131.  
  1132. </body>
  1133. </html>
  1134.  
  1135.  
  1136. </html>
Advertisement
Add Comment
Please, Sign In to add comment