Eduarda

Theme 64

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