Eduarda

theme 65

Oct 14th, 2012
1,606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.03 KB | None | 0 0
  1. <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. <head>
  11.  
  12. <script>
  13.  
  14. // <![CDATA[
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. var bgcolour="#FFC5DD"; // background colour
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. var fgcolour="#999999"; // foreground colour
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38. var speed=120; // speed of bubbling, lower is faster
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46. var shades=5; // number of shades of bubble
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62. /****************************
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. * Bubbling Text Effect *
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78. *(c) 2003-6 mf2fm web-design*
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86. * http://www.mf2fm.com/rv *
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94. * DON'T EDIT BELOW THIS BOX *
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102. ****************************/
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110. var bubbcol=new Array();
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118. var bubbler, bubbtxt;
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126. var bubbchr=new Array();
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134. window.onload=function() { if (document.getElementById) {
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142. for (bubbler=0; bubbler<=shades; bubbler++) {
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150. bubbtxt="#";
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158. for (var i=1; i<6; i+=2) {
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166. var bg=parseInt(bgcolour.substring(i,i+2),16);
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182. }
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190. bubbcol[bubbler+1]=bubbtxt;
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198. }
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206. bubbler=document.getElementById("bubble");
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214. bubbtxt=bubbler.firstChild.nodeValue;
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230. for (var i=0; i<bubbtxt.length; i++) {
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238. var bubbi=document.createElement("span");
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246. bubbi.setAttribute("id", "bubb"+i);
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262. bubbler.appendChild(bubbi);
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270. }
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278. bubbler=setInterval ("bubbling()", speed);
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286. }}
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302. function dechex(dec) {
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310. var hex=dec.toString(16);
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318. if (dec<16) return "0"+hex;
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326. else return hex;
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. }
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350. function bubbling() {
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358. for (var i=0; i<bubbtxt.length; i++) {
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366. var bubbme=document.getElementById("bubb"+i);
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374. if (bubbchr[i]) {
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382. bubbme.style.color=bubbcol[bubbchr[i]];
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398. }
  399.  
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  407.  
  408.  
  409.  
  410.  
  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. </script>
  437.  
  438.  
  439.  
  440. <link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here' rel='stylesheet' type='text/css'>
  441.  
  442. <script src="http://code.jquery.com/jquery-latest.js"></script>
  443.  
  444.  
  445. <script type="text/javascript">
  446. //desabilita menu de opcoes ao clicar no botao direito
  447. function desabilitaMenu(e)
  448. {
  449. if (window.Event)
  450. {
  451. if (e.which == 2 || e.which == 3)
  452. return false;
  453. }
  454. else
  455. {
  456. event.cancelBubble = true
  457. event.returnValue = false;
  458. return false;
  459. }
  460. }
  461.  
  462. //desabilita botao direito
  463. function desabilitaBotaoDireito(e)
  464. {
  465. if (window.Event)
  466. {
  467. if (e.which == 2 || e.which == 3)
  468. return false;
  469. }
  470. else
  471. if (event.button == 2 || event.button == 3)
  472. {
  473. event.cancelBubble = true
  474. event.returnValue = false;
  475. return false;
  476. }
  477. }
  478.  
  479. //desabilita botao direito do mouse
  480. if ( window.Event )
  481. document.captureEvents(Event.MOUSEUP);
  482. if ( document.layers )
  483. document.captureEvents(Event.MOUSEDOWN);
  484.  
  485. document.oncontextmenu = desabilitaMenu;
  486. document.onmousedown = desabilitaBotaoDireito;
  487. document.onmouseup = desabilitaBotaoDireito;
  488. </script>
  489.  
  490. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499. <script type="text/javascript">
  500.  
  501.  
  502. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  503.  
  504.  
  505.  
  506.  
  507. function tb8_makeArray(n){
  508.  
  509.  
  510. this.length = n;
  511.  
  512.  
  513. return this.length;
  514.  
  515.  
  516. }
  517.  
  518.  
  519.  
  520.  
  521. tb8_messages = new tb8_makeArray(1);
  522.  
  523.  
  524.  
  525.  
  526. tb8_messages[0] = "{Title}";
  527.  
  528.  
  529.  
  530.  
  531. tb8_rptType = 'infinite';
  532.  
  533.  
  534.  
  535.  
  536. tb8_rptNbr = 5;
  537.  
  538.  
  539.  
  540.  
  541. tb8_speed = 100;
  542.  
  543.  
  544.  
  545.  
  546. tb8_delay = 2000;
  547.  
  548.  
  549.  
  550.  
  551. var tb8_counter=1;
  552.  
  553.  
  554.  
  555.  
  556. var tb8_currMsg=0;
  557.  
  558.  
  559.  
  560.  
  561. var tb8_tekst ="";
  562.  
  563.  
  564.  
  565.  
  566. var tb8_i=0;
  567.  
  568.  
  569.  
  570.  
  571. var tb8_TID = null;
  572.  
  573.  
  574.  
  575.  
  576. function tb8_pisi(){
  577.  
  578.  
  579.  
  580.  
  581. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  582.  
  583.  
  584.  
  585.  
  586. document.title = tb8_tekst;
  587.  
  588.  
  589.  
  590.  
  591. tb8_sp=tb8_speed;
  592.  
  593.  
  594.  
  595.  
  596. tb8_i++;
  597.  
  598.  
  599.  
  600.  
  601. if (tb8_i==tb8_messages[tb8_currMsg].length){
  602.  
  603.  
  604.  
  605.  
  606. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  607.  
  608.  
  609.  
  610.  
  611. }
  612.  
  613.  
  614.  
  615.  
  616. if (tb8_currMsg == tb8_messages.length){
  617.  
  618.  
  619.  
  620.  
  621. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  622.  
  623.  
  624.  
  625.  
  626. clearTimeout(tb8_TID);
  627.  
  628.  
  629.  
  630.  
  631. return;
  632.  
  633.  
  634.  
  635.  
  636. }
  637.  
  638.  
  639.  
  640.  
  641. tb8_counter++;
  642.  
  643.  
  644.  
  645.  
  646. tb8_currMsg = 0;
  647.  
  648.  
  649. }
  650.  
  651.  
  652.  
  653.  
  654. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  655.  
  656.  
  657.  
  658.  
  659. }
  660.  
  661.  
  662.  
  663.  
  664. tb8_pisi()
  665.  
  666.  
  667.  
  668.  
  669. </script>
  670.  
  671. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  672.  
  673. <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'>
  674.  
  675. <link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here' rel='stylesheet' type='text/css'>
  676.  
  677. <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'>
  678.  
  679. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  680.  
  681. <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz' rel='stylesheet' type='text/css'>
  682. <link href='http://fonts.googleapis.com/css?family=yanone+kaffeesatz' rel='stylesheet' type='text/css'>
  683.  
  684. <script src="http://static.tumblr.com/de00tfu/sb0mbfpax/jquery-1.4.2.min.js" type="text/javascript"></script><link href='http://fonts.googleapis.com/css?family=play' rel='stylesheet' type='text/css'><script src="http://static.tumblr.com/de00tfu/4xrmbfpab/zoominfo.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { $('.galleryimage').hover( function() { $(this).find('img').animate( { width:100, margintop:10, marginleft:10 }, 500); }, function() { $(this).find('img').animate( {width:325, margintop:0, marginleft:0 },300); }); }); </script>
  685.  
  686. <!-- DEFAULT VARIABLES -->
  687.  
  688. <meta name="color:background" content="#1C1C1C" />
  689. <meta name="color:link" content="#CDCDC1" />
  690. <meta name="color:link hover" content="#000" />
  691. <meta name="color:text" content="#CDCDC1" />
  692. <meta name="color:post" content="#000" />
  693. <meta name="color:frase" content="#CDCDC1" />
  694. <meta name="color:tags" content="#FF69B4" />
  695. <meta name="color:sidebar" content="#000" />
  696. <meta name="color:bordefoto" content="#4F4F4F" />
  697. <meta name="color:textdesc" content="#CDCDC1" />
  698. <meta name="color:linha" content="#000" />
  699. <meta name="color:borda2" content="#FF69B4" />
  700. <meta name="color:linkd" content="#CDCDC1" />
  701. <meta name="color:borda1" content="#4F4F4F" />
  702. <meta name="color:bgask" content="#CDCDC1" />
  703. <meta name="color:textask" content="#000" />
  704.  
  705. <meta name="text:titulo" content="<i>Baby Stay Strong</i>" />
  706. <meta name="text:frase" content=" eu te quero pra sempre" />
  707. <meta name="text:Link1" content="/" />
  708. <meta name="text:Link1 Title" content="link1" />
  709. <meta name="text:Link2" content="/" />
  710. <meta name="text:Link2 Title" content="link2" />
  711. <meta name="text:Link3" content="/" />
  712. <meta name="text:Link3 Title" content="link3" />
  713. <meta name="text:Link4" content="/" />
  714. <meta name="text:Link4 Title" content="link4" />
  715. <meta name="text:Link5" content="/" />
  716. <meta name="text:Link5 Title" content="link5" />
  717. <meta name="text:Link6" content="/" />
  718. <meta name="text:Link6 Title" content="link6" />
  719. <meta name="text:Link7" content="/" />
  720. <meta name="text:Link7 Title" content="link7" />
  721. <meta name="text:Link8" content="/" />
  722. <meta name="text:Link8 Title" content="link8" />
  723.  
  724. <meta name="image:sidebar" content="http://static.tumblr.com/2bh9bxo/TNambswc8/tumblr_m8237inqkj1r4hurso1_1280.jpg" />
  725. <meta name="image:background" content="" />
  726.  
  727. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  728. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  729.  
  730. <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
  731.  
  732. <link href='http://fonts.googleapis.com/css?family=Tulpen+One' rel='stylesheet' type='text/css'>
  733.  
  734.  
  735.  
  736. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  737. <script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script>
  738. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  739. <link href='http://fonts.googleapis.com/css?family=Tulpen+One' rel='stylesheet' type='text/css'>
  740.  
  741. <link href='http://fonts.googleapis.com/css?family=Ruthie|Ubuntu+Mono|Economica' rel='stylesheet' type='text/css'>
  742.  
  743. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  744. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  745. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  746.  
  747. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  748.  
  749. <script src="http://masonry.desandro.com/js/jquery-1.7.1.min.js"></script>
  750. <script src="http://masonry.desandro.com/jquery.masonry.min.js"></script>
  751.  
  752.  
  753. <title>{Title}</title>
  754. <link rel="shortcut icon" href="{Favicon}">
  755. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  756. {block:Description}
  757. <meta name="description" content="{MetaDescription}" />
  758. {/block:Description}
  759.  
  760. <style type="text/css">
  761. body {background-color:{color:background}; font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;color:{color:text}; text-align:center; font-size:09px; background-image:url('{image:background}'); background-attachment:fixed; }
  762.  
  763. iframe#tumblr_controls {right:3px !important;
  764. position: fixed !important;
  765. -webkit-transition: opacity 0.7s linear;
  766. opacity: 0.2;
  767. -webkit-transition: all 0.8s ease-out;
  768. -moz-transition: all 0.8s ease-out;
  769. transition: all 0.8s ease-out;}
  770. iframe#tumblr_controls:hover{
  771. -webkit-transition: opacity 0.7s linear;
  772. opacity: 1;
  773. -webkit-transition: all 0.4s ease-out;
  774. -moz-transition: all 0.4s ease-out;
  775. transition: all 0.4s ease-out;}
  776.  
  777.  
  778. a {color: {color:link}; text-decoration: none; text-transform: none;}
  779. a:hover {color: {color:link hover}; background-color: transparent; text-decoration: none;}
  780.  
  781. p {margin: 6px 0 0 0}
  782.  
  783. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px; }
  784. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background};}
  785. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  786. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  787. blockquote img{max-width: 400px!important}
  788. blockquote blockquote img{max-width: 400px!important}
  789. blockquote blockquote blockquote img{max-width: 400px!important}
  790. blockquote blockquote blockquote blockquote img{max-width: 400px!important}
  791. /* base por duda o-mundo-de-uma-garota |base por duda o-mundo-de-uma-garota |base por duda o-mundo-de-uma-garota |*/
  792. #creditosaduda {text-align:center;width:400px;margin: 20px auto 20px auto;z-index:1;}
  793.  
  794. /*BOX,ENTRY,FONTES ,NOTES,CHAT E TAGS*/
  795. .omdg {width:450px; background-color:{color:post};
  796. padding:5px; text-align:justify;
  797. font-family:font-family: 'Source Sans Pro', sans-serif;
  798. font-size:11px;margin-bottom:1px;}
  799.  
  800. .omdg:hover{opacity:1}
  801.  
  802.  
  803. h1 {font-family:font-family: Tulpen One; text-align:center; font-size:14px;color: {color:text};font-weight:normal;line-height:14px;}
  804. h1 a {text-align: center; font-size: 14px;color:{color:text};font-weight: normal; line-height: 14px;}
  805. h1 a:hover {text-align:center;font-size: 14px; color:{color:text};font-weight:normal; line-height:14px;}
  806.  
  807. #omdg1{float:left; width:460px; margin-left:430px; margin-top:
  808. 5px; z-index:-9; padding:3px;border: 5px solid {color:linha};}
  809.  
  810. .image {text-align:center; border:0px; opacity:0.8;}
  811. .image img {max-width:460px;margin-bottom:-1px; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; }
  812. /*base duh base duh base duh base da Duda.R*/
  813. .baseduda {text-align:justify;cambria;font-size:11px; line-height:15px; padding:3px;margin-left:02px; border-bottom:1px solid {color:background};margin-bottom:3px; margin-top:-66px;}
  814. .baseduda1 {text-align: center; text-transform: none; margin-bottom:5px; font-size: 09px; font-weight: bold}
  815. .baseduda1 a, a:hover{text-transform: none;}
  816. #quote {position:relative;top:-22px;left:-3px;font-size:60px;opacity:0.3;}
  817.  
  818. .chat {line-height: 13px; list-style: none }
  819. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  820. .person1 {color: {color:text}; padding: 2px; }
  821. .person1 .label {font-weight: bold; color:{color:text}}
  822. .person2 {color: {color:text}; padding: 2px; }
  823. .person2 .label {font-weight: bold; color:{color:text}}
  824.  
  825. .player {background-color:#000000;text-align:left;display:block;}
  826.  
  827.  
  828. #oidata {text-align:left;border-right: 2px solid {color:borda2};border-left: 2px solid {color:borda2}; font-size:09px; font-family:calibri; text-transform: uppercase; z-index:11; padding:2px; color:{color:text};background:{color:background};}
  829. #oidata a {font-size:10px; color:{color:text}; text-transform: uppercase;}
  830.  
  831.  
  832. #cap {width:400px; margin-top:-2px;}
  833. .source {display: none;}
  834.  
  835. .bubble { background: {color:post}; color: #;margin-top: 2px;padding: 12px; margin-left: 40px; -webkit-border-top-right-radius: 11px;
  836. -webkit-border-bottom-right-radius: 11px; -moz-border-radius-topright: 11px; -moz-border-radius-bottomright: 11px; border-top-right-radius: 11px; border-bottom-right-radius: 11px;}
  837.  
  838. .caixa aa {background: {color:post}; height: 16px; font-style: normal; font-size: 10px; color: {color:text}; padding-top: 4px; text-align:justy; letter-spacing:1px; padding:3px; text-shadow:0 1px 1px {color:sidebar}; margin-top: 8px; text-transform:none; line-height: 14px; margin-top: 10px; -webkit-border-top-right-radius: 11px; -webkit-border-bottom-right-radius: 11px; -moz-border-radius-topright: 11px; -moz-border-radius-bottomright: 11px; border-top-right-radius: 11px; border-bottom-right-radius: 11px;}
  839.  
  840. .borda { float: left; padding: 0px; margin-top: -1px; -webkit-border-top-left-radius: 11px; -webkit-border-bottom-left-radius: 11px; -moz-border-radius-topleft: 11px; -moz-border-radius-bottomleft: 11px; border-top-left-radius: 11px; border-bottom-left-radius: 11px; }
  841. #info {background-color:{color:post}; padding:3px; text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; border-left: 1 solid #ddd; -webkit-transition:1s;}
  842.  
  843.  
  844. /*CREDITE*/
  845. .themedudar {width: 420px;
  846. padding: 0px;
  847. margin-lemargin-top: 5px;
  848. margin-bottom: 10px;
  849. font-size: 9px;
  850. text-align: left;
  851. margin-left:0px;}
  852. ol.themedudar {list-style: none;
  853. margin: 0 20px 0 0px;
  854. padding: 0px; z-index: 11;}
  855. ol.themedudar li {background-color:{color:post};
  856. margin-bottom: 1px; padding: 5px; }
  857. .themedudar img{display: none; border:0px}
  858.  
  859. #tumblr_controls{position: fixed!important}
  860. #tumblr_controls{position: fixed!important}
  861. #tumblr_controls{position: fixed!important}
  862. #tumblr_controls{position: fixed!important}
  863.  
  864. /*IMAGEM DA DUDA*/
  865. .duhimag {position: absolute; width:220px;
  866. height:282px; margin-left:155px; margin-top: 75px;
  867. position:fixed;border:10px solid {color:bordefoto};-webkit-border-radius: 0px 0px 0px 0px; }
  868.  
  869. .duhimag img {position:fixed;
  870. -webkit-transition: all 1s ease-in-out;
  871. -webkit-border-radius: 0px 0px 0px 0px;
  872. -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; display: block; height:280px; width: 218px;
  873. background-color: {color:none}; padding:0px;
  874. border:1px solid {color:bordefoto};margin-left:0px;
  875. margin-top:1px;}
  876.  
  877. .duhimag:hover #pqpduds #ya {margin-top:-50px; opacity:0.0;
  878. -webkit-transition: 0.9s ease-in;
  879. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; }
  880.  
  881. .duhimag img.top { opacity:1;}
  882. .duhimag:hover img.top, .cf4.hover_effect img.top {opacity:0;}
  883.  
  884. .duhimag:hover img.bottom, .cf4.hover_effect img.bottom {filter:gray}
  885.  
  886.  
  887. #estela1 {position: fixed;
  888. margin-left: 333px;
  889. width: 40px; height: 200px;
  890. background-color:{color:borda1};
  891. margin-top: 60px;-webkit-transform: rotate(0deg);
  892. -webkit-transform: rotate(180deg);opacity:0.8;}
  893.  
  894. #barra {position: fixed;
  895. margin-left: 133px; width: 280px;
  896. height: 518px; background-color:{color:sidebar};
  897. margin-top: 45px;-webkit-transform: rotate(0deg);
  898. -webkit-transform: rotate(180deg);
  899. -webkit-border-radius: 0px 20px 0px 20px;
  900. border: 4px double {color:borda1};
  901. box-shadow: 5px 5px 9px #000;}
  902.  
  903. #dj3 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 353px; margin-top: 45px; color:{color:borda1}; font-size: 25px; -webkit-transform: rotate(-80deg); z-index: 1000;opacity:0.8;}
  904.  
  905. /*LINKS LINKS LINKS*/
  906. #chick {width: 300px; float: left; margin-left:152px; height:15px; margin-top: 375px; padding: 3px; text-align: center; position: fixed; background-color: transparent; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  907.  
  908. #chick a {float: left; margin-right: 0px; display: block; width: 33px; letter-spacing: 0px; font-family: calibri; font-size: 9px; text-transform: uppercase; text-align: center; margin-bottom: 1px; background-color: {color:sidebar}; color: {color:linkd}; text-decoration: none; height:33;line-height:30px; padding: 4px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;border: 1px solid {color:borda1};}
  909. #chick a:hover{-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;text-align: center; color:{color:linkd}; background-color: {color:bordefoto}; line-height:50px;}
  910.  
  911.  
  912. /*TITULOS BY DUDA.R */
  913. .dukah {font-family:tinytots;
  914. font-size: 8px;
  915. font-style: none;
  916. height: 11px;color: {color:frase};
  917. background:{color:sidebar};
  918. border: 1px solid {color:borda1};
  919. margin-left:155px;margin-top:61px;
  920. text-transform: none;
  921. letter-spacing: 0px;position:fixed;
  922. -webkit-transition: all 0.4s ease-out;
  923. -moz-transition: all 0.4s ease-out;width:175px;
  924. z-index:8000000000000000;line-height:14px;
  925. text-transform:uppercase;}
  926.  
  927. @font-face { font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  928.  
  929. #pagina{ margin-top: 498px; margin-left: 318px; width: 88px; float: right; background-color: transparent; position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:830 }
  930.  
  931. #paginacaoml {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; line-height: 24px;}
  932. #paginacaoml a {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: #fff; margin: 0 1px 0 0; padding: 2px 2px; color: {color:link}; text-decoration: none;}
  933. #paginacaoml a:hover {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: #fff; border: none;}
  934. #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;}
  935.  
  936. #dudss {font-family: tinytots; background-color:; {color:link}; font-size: 8px; padding: 3px 5px 5px 5px; width: 180px; margin-top: 537px; margin-left: 185px; z-index: 9; position: fixed; text-align: center; height: 20px; border:0px solid ; text-transform: none; }
  937. #dudss a{font-family: tinytots; font-size: 8px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; }
  938.  
  939.  
  940. #notinholaduda{z-index: 1;position:fixed;width:230px;line-height:13px;height:35px;font-size:12px; font-family:tahoma; text-align:center; color:{color:textdesc};padding: 5px; margin-top:422px; margin-left:155px;background-color:;-webkit-border-radius: 0px 0px 0px 0px;opacity:0.6;}
  941.  
  942. #badgirl {width: 52px; float: left; margin-left:333px; margin-top: 124px; padding: 1px; text-align: center; position: fixed; -moz-transition: opacity .9s ease-in-out; -o-transition: opacity .9s ease-in-out; transition: opacity .9s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in;
  943. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; background-color: transparent; height:120px; }
  944.  
  945. #badgirl a {float: left; padding: 0px; margin-top:1px; display: block; letter-spacing: 0px; font-family: verdana; font-size: 8px; text-align: center; width: 32px; background-color: {color:link hover}; color:{color:link}; text-decoration: none; text-transform: uppercase; height: 17px; overflow: hidden; border:0px solid {color:background}; margin-left: 3px; line-height: 17px; }
  946.  
  947. #badgirl a:hover{text-align: center; background-color: {color:borda2}; color: {color:linkd};transparent; width:57px;}
  948.  
  949. .frase {text-align: center;font-family:'DinerFattRegular'; font-size: 21px; font-style: none;height: 39px;color: {color:frase};background:{color:sidebar}; margin-left:279px;margin-top:378px; letter-spacing: 1px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:112px;z-index:8000000000000000;line-height:29px; background-color:; border:2px solid {color:borda1};text-shadow: 1px 1px 1px #000;}
  950.  
  951. .frase:hover{ -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; color:{color:borda2};}
  952.  
  953. @font-face {
  954. font-family: 'DinerObeseRegular';
  955. src: url('http://static.tumblr.com/7w3ddo1/5icm8t82u/diner-obese-webfont.eot');
  956. src: url('http://static.tumblr.com/7w3ddo1/5icm8t82u/diner-obese-webfont.eot?#iefix') format('embedded-opentype'),
  957. url('http://static.tumblr.com/7w3ddo1/Gnum8t85r/diner-obese-webfont.woff') format('woff'),
  958. url('http://static.tumblr.com/7w3ddo1/X5Am8t85f/diner-obese-webfont.ttf') format('truetype'),
  959. url('http://static.tumblr.com/7w3ddo1/AWMm8t83t/diner-obese-webfont.svg#DinerObeseRegular') format('svg');
  960. font-weight: normal;
  961. font-style: normal;
  962. }
  963.  
  964. @font-face {
  965. font-family: 'DinerFattRegular';
  966. src: url('http://static.tumblr.com/7w3ddo1/S4Qm8t80r/diner-fatt-webfont.eot');
  967. src: url('http://static.tumblr.com/7w3ddo1/S4Qm8t80r/diner-fatt-webfont.eot?#iefix') format('embedded-opentype'),
  968. url('http://static.tumblr.com/7w3ddo1/pb2m8t82d/diner-fatt-webfont.woff') format('woff'),
  969. url('http://static.tumblr.com/7w3ddo1/gA2m8t821/diner-fatt-webfont.ttf') format('truetype'),
  970. url('http://static.tumblr.com/7w3ddo1/IbMm8t81m/diner-fatt-webfont.svg#DinerFattRegular') format('svg');
  971. font-weight: normal;
  972. font-style: normal;
  973. }
  974.  
  975.  
  976.  
  977.  
  978. ::-webkit-scrollbar {width:10px;height:auto;background:transparent;}
  979. ::-webkit-scrollbar-corner {background:{color:text};}
  980. ::-webkit-scrollbar-button:vertical {height:4px; display: block; background:{color:text};}
  981. ::-webkit-scrollbar-thumb:vertical {background:{color:text}; border-top: 1px solid #fffcfc; border-bottom: 1px solid #fffcfc;}
  982. ::-webkit-scrollbar-track-piece {background:{color:background}; border-top: 1pt solid {color:borda}; border-bottom: 1pt solid {color:borda}; width:4pt;}
  983. -::moz-selection {color:{color:link hover}; background:{color:text};}
  984. ::selection {color:{color:link hover}; background:{color:text};}
  985.  
  986. </style>
  987.  
  988. <script type='text/javascript' src='http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js'></script>
  989.  
  990. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  991. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  992. <script type="text/javascript">
  993. $(window).load(function () {
  994. $('#entries').masonry(),
  995. $('.masonryWrap').infinitescroll({
  996. navSelector : ".entry",
  997. nextSelector : "#page a#p",
  998. itemSelector : ".entry",
  999. bufferPx : 10000,
  1000. extraScrollPx: 10000,
  1001. loadingImg : "",
  1002. loadingText : "",
  1003. },
  1004. function() { $('#entries').masonry({ appendedContent: $(this) }); }
  1005. );
  1006. });
  1007. </script>
  1008.  
  1009. <script src="http://tumbletricks.webs.com/maquina.js"></script>
  1010.  
  1011. <!-------------INICIO DO <BODY>-------------->
  1012. <body ondragstart="return false" onkeydown="return false">
  1013.  
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020. <div id="barra"></div>
  1021.  
  1022. <div class="duhimag" class="hover" >
  1023. <img class="bottom shadow" src="{image:sidebar}"alt="" title="baby im sure"style="-webkit-filter: grayscale(100%);" >
  1024. <img class="top shadow" src="{image:sidebar}"alt="" title="baby im sure duh" /></div>
  1025.  
  1026. <div id="estela1"></div>
  1027.  
  1028. <div id="dj3">◤</div>
  1029.  
  1030.  
  1031. <div class="frase"><center>{text:titulo}</center></div></div>
  1032.  
  1033. <div id="notinholaduda">{Description}</div></div>
  1034.  
  1035.  
  1036. <div id="badgirl">
  1037.  
  1038.  
  1039.  
  1040.  
  1041. <a href="{text:Link1}" title="link1" style="opacity:0.8;">{text:Link1 Title}</a>
  1042. <a href="{text:Link2}" title="link2" style="opacity:0.7;">{text:Link2 Title}</a>
  1043. <a href="{text:Link3}" title="link3" style="opacity:0.5;">{text:Link3 Title}</a>
  1044. <a href="{text:Link4}" title="link4" style="opacity:0.3;">{text:Link4 Title}</a>
  1045. <a href="{text:Link5}" title="link5" style="opacity:0.7;">{text:Link5 Title}</a></div>
  1046.  
  1047.  
  1048.  
  1049. <div id="chick">
  1050. <a href="{text:Link6}">{text:Link6 Title}</a>
  1051. <a href="{text:Link7}">{text:Link7 Title}</a>
  1052. <a href="{text:Link8}">{text:Link8 Title}</a></div>
  1053.  
  1054. </div>
  1055. <center><div class="dukah"><center>{text:frase}</center></div></center>
  1056.  
  1057. <div id="dudss" title="not copie"><a href="http://o-mundo-de-uma-garota.tumblr.com/" target="_blank">Theme by :o-mundo-de-uma-garota</a><font color=#e66baa> + </font>Tuto:TTHY Not copie</a>
  1058.  
  1059.  
  1060. </div>
  1061.  
  1062.  
  1063. <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><font color="{color:source}">«</font></a>{/block:PreviousPage}{/block:Pagination}
  1064. Page <b>{CurrentPage}</b> <font color=#e66baa> of </font><b>{TotalPages}</b>
  1065. {block:JumpPagination length="0"}
  1066. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  1067. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  1068. {/block:JumpPagination}
  1069. {block:Pagination}{block:NextPage}<a href="{NextPage}"><font color="{color:source}">»</font></a>{/block:NextPage}{/block:Pagination}</div></div>
  1070. </div></div>
  1071.  
  1072.  
  1073. <!-------NÃO MUDE NADA AQUIÊH (OMDG)-------------->
  1074.  
  1075.  
  1076. <div id="omdg1">
  1077. {block:Posts}
  1078. <div class="omdg">
  1079.  
  1080. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1081.  
  1082. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-400}"></div>{LinkCloseTag}{/block:Photo}
  1083.  
  1084. {block:Photoset}{Photoset-400}{/block:Photoset}
  1085.  
  1086. <!-------------BASE DUDA 1 E 2 ---------------->
  1087.  
  1088. {block:Quote}
  1089. <div id="quote">&#10077;</div><div class="baseduda">{Quote}</div>
  1090. {block:Source}<div class="baseduda1"> — {Source}</div>
  1091. {/block:Source}
  1092. {/block:Quote}
  1093.  
  1094. {block:Link}
  1095. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1096. {block:Description}{Description}{/block:Description}
  1097. {/block:Link}
  1098.  
  1099. {block:Chat}
  1100. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1101. <div class="chat"><ul>{block:Lines}
  1102. <li class="person{UserNumber}">{block:Label}
  1103. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1104. {/block:Chat}
  1105.  
  1106. {block:Audio}
  1107. <div class="player">{AudioPlayerBlack}</div>
  1108. {block:Caption}{Caption}{/block:Caption}
  1109. {/block:Audio}
  1110.  
  1111. {block:Video}{Video-400}{/block:Video}
  1112.  
  1113. {block:Answer}
  1114. <div class="caixa">
  1115. <aa>
  1116. ask por: <b>{Asker}</b> em <a href="{Permalink}" target="_blank">{DayOfMonth}/{ShortMonth}/{Year}</a></aa>
  1117. <img src="{AskerPortraitURL-40}" class="borda">
  1118. <div class="bubble">
  1119. {Question}</div>
  1120. <div class="clear"></div>
  1121. {Answer}
  1122. <div class="clear"></div>
  1123. </div>
  1124. {/block:Answer}
  1125.  
  1126. <div id="cap">
  1127. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1128. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1129. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1130.  
  1131. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1132. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1133. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1134. {/block:ContentSource}</div></div>
  1135. <br>
  1136.  
  1137.  
  1138. <div id="oidata">
  1139. {block:Date}
  1140. <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 baby</a><img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class="" title="">{/block:IndexPage}
  1141. {block:RebloggedFrom} <font color="{color:tags}"> . </font>(<a href="{ReblogParentURL}" title="{ReblogParentTitle}">via</a> <font color="{color:tags}"> | </font> <a href="{ReblogRootURL}" title="{ReblogRootTitle}">source</a>){/block:RebloggedFrom}
  1142. </div>
  1143. </div>{/block:Date}
  1144.  
  1145.  
  1146. {/block:Posts}
  1147. {block:PostNotes}<div class="themedudar">{PostNotes}</div>{/block:PostNotes}
  1148.  
  1149. </div>
  1150. </div>
  1151. </div>
  1152. </div>
  1153. </div>
  1154.  
  1155. <!---------------FIM .. PROIBIDA A COPIA PARCIAL DESTE THEME-------->
  1156.  
  1157. </html>
Advertisement
Add Comment
Please, Sign In to add comment