Eduarda

Theme Just

Aug 6th, 2013
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.57 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. - - - - - - - - - - - - - -
  6. - THEME FEITO POR DUDA.R -
  7. - - - - - - - - - - - - - - ---->
  8.  
  9.  
  10. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  11.  
  12. <head>
  13.  
  14. <script>
  15.  
  16. // <![CDATA[
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24. var bgcolour="#FFC5DD"; // background colour
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32. var fgcolour="#999999"; // foreground colour
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40. var speed=120; // speed of bubbling, lower is faster
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48. var shades=5; // number of shades of bubble
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. /****************************
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72. * Bubbling Text Effect *
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80. *(c) 2003-6 mf2fm web-design*
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88. * http://www.mf2fm.com/rv *
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96. * DON'T EDIT BELOW THIS BOX *
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. ****************************/
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112. var bubbcol=new Array();
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120. var bubbler, bubbtxt;
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128. var bubbchr=new Array();
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. window.onload=function() { if (document.getElementById) {
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144. for (bubbler=0; bubbler<=shades; bubbler++) {
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152. bubbtxt="#";
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160. for (var i=1; i<6; i+=2) {
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168. var bg=parseInt(bgcolour.substring(i,i+2),16);
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184. }
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192. bubbcol[bubbler+1]=bubbtxt;
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200. }
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208. bubbler=document.getElementById("bubble");
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216. bubbtxt=bubbler.firstChild.nodeValue;
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232. for (var i=0; i<bubbtxt.length; i++) {
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240. var bubbi=document.createElement("span");
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248. bubbi.setAttribute("id", "bubb"+i);
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264. bubbler.appendChild(bubbi);
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272. }
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280. bubbler=setInterval ("bubbling()", speed);
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288. }}
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304. function dechex(dec) {
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312. var hex=dec.toString(16);
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320. if (dec<16) return "0"+hex;
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328. else return hex;
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336. }
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352. function bubbling() {
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360. for (var i=0; i<bubbtxt.length; i++) {
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368. var bubbme=document.getElementById("bubb"+i);
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376. if (bubbchr[i]) {
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384. bubbme.style.color=bubbcol[bubbchr[i]];
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. }
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  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.  
  437.  
  438. </script>
  439.  
  440.  
  441.  
  442. <link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here' rel='stylesheet' type='text/css'>
  443.  
  444. <script src="http://code.jquery.com/jquery-latest.js"></script>
  445.  
  446.  
  447. <script type="text/javascript">
  448. //desabilita menu de opcoes ao clicar no botao direito
  449. function desabilitaMenu(e)
  450. {
  451. if (window.Event)
  452. {
  453. if (e.which == 2 || e.which == 3)
  454. return false;
  455. }
  456. else
  457. {
  458. event.cancelBubble = true
  459. event.returnValue = false;
  460. return false;
  461. }
  462. }
  463.  
  464. //desabilita botao direito
  465. function desabilitaBotaoDireito(e)
  466. {
  467. if (window.Event)
  468. {
  469. if (e.which == 2 || e.which == 3)
  470. return false;
  471. }
  472. else
  473. if (event.button == 2 || event.button == 3)
  474. {
  475. event.cancelBubble = true
  476. event.returnValue = false;
  477. return false;
  478. }
  479. }
  480.  
  481. //desabilita botao direito do mouse
  482. if ( window.Event )
  483. document.captureEvents(Event.MOUSEUP);
  484. if ( document.layers )
  485. document.captureEvents(Event.MOUSEDOWN);
  486.  
  487. document.oncontextmenu = desabilitaMenu;
  488. document.onmousedown = desabilitaBotaoDireito;
  489. document.onmouseup = desabilitaBotaoDireito;
  490. </script>
  491.  
  492. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501. <script type="text/javascript">
  502.  
  503.  
  504. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  505.  
  506.  
  507.  
  508.  
  509. function tb8_makeArray(n){
  510.  
  511.  
  512. this.length = n;
  513.  
  514.  
  515. return this.length;
  516.  
  517.  
  518. }
  519.  
  520.  
  521.  
  522.  
  523. tb8_messages = new tb8_makeArray(1);
  524.  
  525.  
  526.  
  527.  
  528. tb8_messages[0] = "{Title}";
  529.  
  530.  
  531.  
  532.  
  533. tb8_rptType = 'infinite';
  534.  
  535.  
  536.  
  537.  
  538. tb8_rptNbr = 5;
  539.  
  540.  
  541.  
  542.  
  543. tb8_speed = 100;
  544.  
  545.  
  546.  
  547.  
  548. tb8_delay = 2000;
  549.  
  550.  
  551.  
  552.  
  553. var tb8_counter=1;
  554.  
  555.  
  556.  
  557.  
  558. var tb8_currMsg=0;
  559.  
  560.  
  561.  
  562.  
  563. var tb8_tekst ="";
  564.  
  565.  
  566.  
  567.  
  568. var tb8_i=0;
  569.  
  570.  
  571.  
  572.  
  573. var tb8_TID = null;
  574.  
  575.  
  576.  
  577.  
  578. function tb8_pisi(){
  579.  
  580.  
  581.  
  582.  
  583. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  584.  
  585.  
  586.  
  587.  
  588. document.title = tb8_tekst;
  589.  
  590.  
  591.  
  592.  
  593. tb8_sp=tb8_speed;
  594.  
  595.  
  596.  
  597.  
  598. tb8_i++;
  599.  
  600.  
  601.  
  602.  
  603. if (tb8_i==tb8_messages[tb8_currMsg].length){
  604.  
  605.  
  606.  
  607.  
  608. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  609.  
  610.  
  611.  
  612.  
  613. }
  614.  
  615.  
  616.  
  617.  
  618. if (tb8_currMsg == tb8_messages.length){
  619.  
  620.  
  621.  
  622.  
  623. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  624.  
  625.  
  626.  
  627.  
  628. clearTimeout(tb8_TID);
  629.  
  630.  
  631.  
  632.  
  633. return;
  634.  
  635.  
  636.  
  637.  
  638. }
  639.  
  640.  
  641.  
  642.  
  643. tb8_counter++;
  644.  
  645.  
  646.  
  647.  
  648. tb8_currMsg = 0;
  649.  
  650.  
  651. }
  652.  
  653.  
  654.  
  655.  
  656. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  657.  
  658.  
  659.  
  660.  
  661. }
  662.  
  663.  
  664.  
  665.  
  666. tb8_pisi()
  667.  
  668.  
  669.  
  670.  
  671. </script>
  672.  
  673. <meta name="color:background" content="#fff" />
  674. <meta name="color:link" content="#929191" />
  675. <meta name="color:text" content="#8B8682" />
  676. <meta name="color:bghover" content="#fdf2ce" />
  677. <meta name="color:linkshover" content="#cfcfce" />
  678. <meta name="color:links" content="#7a7a7a" />
  679. <meta name="color:text desc" content="#bdbdbd " />
  680. <meta name="color:borda" content="#d5d3d3" />
  681. <meta name="color:borda2" content="#cfa594" />
  682. <meta name="color:bordaimg" content="#d6b98c" />
  683. <meta name="color:abc" content=" #cfba9e" />
  684. <meta name="color:italico" content="#a8a776" />
  685. <meta name="color:post" content="#fff" />
  686. <meta name="color:sidebar" content="#fdf2ce" />
  687. <meta name="color:scrollbar" content="#fdf2ce" />
  688. <meta name="color:frase" content="#bdbdbd " />
  689. <meta name="color:tags" content="#FDB5CE" />
  690. <meta name="color:sombra" content="#747474" />
  691. <meta name="color:bgask" content="#f5f3f3" />
  692. <meta name="color:pag" content="#f3bcbe" />
  693.  
  694. <meta name="image:background" content="" />
  695. <meta name="image:sidebar" content="http://static.tumblr.com/4f2ebc902f19294b103d74235ab325dc/2bh9bxo/XrKmj3eba/tumblr_static_tumblr_static_tumblr_mhk6mllef21rmo5pro1_500.jpg" />
  696.  
  697. <meta name="text:frase" content="Small Delicate Girl" />
  698.  
  699.  
  700. <meta name="text:Link1" content="" />
  701. <meta name="text:Link1 Title" content="link1" />
  702. <meta name="text:Link2" content="" />
  703. <meta name="text:Link2 Title" content="link2" />
  704. <meta name="text:Link3" content="" />
  705. <meta name="text:Link3 Title" content="link3" />
  706. <meta name="text:Link4" content="" />
  707. <meta name="text:Link4 Title" content="link4" />
  708. <meta name="text:Link5" content="" />
  709. <meta name="text:Link5 Title" content="link5" />
  710. <meta name="text:Link6" content="" />
  711. <meta name="text:Link6 Title" content="link6" />
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718. <!----------------FONTES-------♥-------->
  719. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  720. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  721. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  722.  
  723. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  724.  
  725. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  726. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  727. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  728.  
  729. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  730.  
  731.  
  732. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  733.  
  734. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  735.  
  736. <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'>
  737.  
  738. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  739. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  740. <link href='http://fonts.googleapis.com/css?family=Emilys+Candy|Butterfly+Kids|Federo|Quicksand|Antic+Didone|Josefin+Slab|Raleway+Dots|Cedarville+Cursive|Damion|Dawning+of+a+New+Day|Rancho|Marvel' rel='stylesheet' type='text/css'>
  741.  
  742. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  743. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  744.  
  745.  
  746. <link href='http://fonts.googleapis.com/css?family=Akronim' rel='stylesheet' type='text/css'>
  747.  
  748. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  749. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  750. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  751. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  752.  
  753. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/entrada.css" media="screen"/>
  754.  
  755. <!------------------eita duh--------------------->
  756. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  757.  
  758. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  759. <link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,900' rel='stylesheet' type='text/css'>
  760. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  761. <link href='http://fonts.googleapis.com/css?family=Emilys+Candy|Butterfly+Kids|Federo|Quicksand|Antic+Didone|Josefin+Slab|Raleway+Dots|Cedarville+Cursive|Damion|Dawning+of+a+New+Day|Rancho|Marvel' rel='stylesheet' type='text/css'>
  762. <link href='http://fonts.googleapis.com/css?family=Josefin+Sans:400,300italic|Exo:300,400|Alegreya+SC|Gafata' rel='stylesheet' type='text/css'>
  763. <link href='http://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
  764.  
  765. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  766. <link href='http://fonts.googleapis.com/css?family=Stalemate' rel='stylesheet' type='text/css'>
  767.  
  768.  
  769. <title>{Title}</title>
  770. <link rel="shortcut icon" href="{Favicon}">
  771. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  772. {block:Description}
  773. <meta name="description" content="{MetaDescription}" />
  774. {/block:Description}
  775.  
  776. <style type="text/css">
  777.  
  778.  
  779. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  780.  
  781. a {color: {color:text}; text-decoration: none; text-transform: none;}
  782. a:hover {color: {color:link hover}; background-color: transparent; text-decoration: none;}
  783.  
  784. p {margin: 6px 0 0 0}
  785.  
  786. blockquote{border-left: 0px solid {color:post}; margin:0px 0px 0px 0px; padding-left:0px; border-bottom:0px;}
  787.  
  788. #be-barbie {text-align: center; width: 835px; margin: 20px auto 20px auto; padding: 0px}
  789.  
  790. #omdg {float: left; margin-left: 285px; margin-top:10px; z-index:10}
  791.  
  792. .baseduh {width: 400px; padding: 6px; z-index:10; margin-bottom: 1px; text-align: justify; font-family: calibri; font-size: 11px; position: relative; background-color: {color:post};border: 1px solid {color:borda};-webkit-border-radius: 5px 5px 5px 5px;}
  793. .baseduh:hover #baseduh1 {opacity:1}
  794.  
  795. h1 {font:13px Muli; text-align: center; text-transform: normal; color: {color:text}; font-weight: normal; line-height: 18px;}
  796. h1 a {text-align: center; font-size: 14px; text-transform: normal; color: {color:text}; font-weight: normal; line-height: 18px;text-shadow: 0px 1px 1px {color:sombra};}
  797. h1 a:hover {text-align: center; font-size: 14px; text-transform: normal; color: {color:text}; font-weight: normal; line-height: 18px;}
  798.  
  799. #baseduh1 {font:10px calibri; text-transform: uppercase; margin-left:410px; opacity: 0; position: absolute; margin-top:5px; padding:3px; background-color: transparent; width: 150px; height: auto; border-left: 2px solid {color:post};}
  800. #baseduh1 a {font:9px calibri; text-transform: uppercase;color:{color:links};}
  801.  
  802. .image {text-align: center; border: 0px}
  803. .image img {max-width: 400px; margin-bottom: 2px}
  804.  
  805. .xquote {font-family: georgia; text-align: center; font-size: 12px; line-height: 15px; padding: 3px;}
  806. .xquotesource {text-align:center; font:10px verdana; text-transform: none; margin-bottom: 5px}
  807. .xquotesource a, a:hover{text-transform: none;}
  808.  
  809. .xquote:first-letter {color:{color:borda2};font-family:rochester;font-size:20px;}
  810. /*-------------NEGRITO ITALICO E SUBLINHADO------♥-------*/
  811.  
  812. b {color: {color:abc};text-decoration: none;}
  813.  
  814. i {color:{color:italico};text-decoration: none;}
  815.  
  816. u {color: {color:text}; text-decoration: none; border-bottom: 1px dashed {color:borda2}; DO SUBLINHADO;}
  817.  
  818. /* asker */
  819.  
  820. .asker {background: {color:bgask}; color: {color:text}; padding: 2px; line-weight: 7px; opacity:0.85;-moz-opacity: 0.85; filter: alpha(opacity=85); }
  821. .asker img {width:30px; height:30px; margin:3px; padding: 4px; background: {color:bgask2}; opacity:0.99;-moz-opacity: 0.99; filter: alpha(opacity=99); }
  822. .asker a {color:{color:text};}
  823.  
  824.  
  825. .chat {line-height: 13px; list-style: none }
  826. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  827. .person1 {color: {color:text}; padding: 2px; }
  828. .person1 .label {font-weight: bold; color:{color:text}}
  829. .person2 {background-color:{color:background}; color: {color:text}; padding: 2px; }
  830. .person2 .label {font-weight: bold; color:{color:text};}
  831.  
  832. .player {background-color: #000; text-align: left; display:block;}
  833.  
  834. .question {color: {color:PostFont}; text-align: center; background-color: #ff; margin-bottom: -10px; }
  835.  
  836.  
  837. #cap {width: 400px; margin-top: -2px;}
  838. .source {display: none;}
  839.  
  840. .notes {width: 512px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: left}
  841. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  842. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  843. .notes img{display: none; border:0px}
  844.  
  845. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  846. /***-------------- TITULOS------------------♥--------***/
  847. #duka {margin-left:35px;margin-top: 79px; height:20px; line-height:28px;float:left; position:fixed; width:244px; font-family:Muli font-size:13px; text-align: center;
  848. color:{color:frase} ;letter-spacing:-1px; z-index:11; text-transform: none; -webkit-border-radius: 0px 0px 10px 10px;-webkit-transform: rotate(0deg);border-bottom: 0px dashed {color:borda2};text-shadow: 0px 1px 1px {color:sombra};} /**--OMDG---♥---**/
  849. /**--OMDG---♥---**/
  850. #duka a:hover {color:{color:linha};-webkit-transform: rotate(3deg);}
  851. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  852. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  853. .imsureduh {width:255px;
  854. margin-top:89px;
  855. color:{color:frase};
  856. opacity:0.999;
  857. text-align:center;
  858. position:fixed;
  859. font-family:muli;
  860. font-size:11px;
  861. letter-spacing:1px; /**--OMDG---♥---**/
  862. margin-left:25px;}
  863.  
  864. .imsureduh:first-letter {color:{color:borda2};font-family:rochester;font-size:15px;}
  865.  
  866. /**---Imagem da sidebar {OMDG}-----------♥--------**/
  867. #imgduh {width:158px;}
  868. #imgduh img {width: 194px; height:170px; float: left; border: 2px solid {color:bordaimg}; -webkit-border-radius: 50px 50px 50px 0px;}
  869. #imgduh img:hover {opacity: 0.8;}
  870. #sidebar {width: 200px; float: left; margin-left:44px; margin-top:118px; padding: 5px; background-color: {color:bordaimg}; text-align: center; position: fixed;-webkit-border-radius: 50px 50px 50px 0px;}
  871.  
  872. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  873.  
  874. /***——————— Links por Dianna maridaperfeita,credite —————————***/
  875.  
  876. #diana { width:100px; margin-top: 140px; margin-left: 104px; text-align: center; text-transform: lowercase;text-decoration: none;text-align:inline; font-style: none; position:fixed;z-index:100; font-style:italic;border: solid 0px {color:post};height:150px;}
  877. #diana a {display:inline-block;float: center; color:{color:links};font-family: cambria; font-size: 0px; -webkit-transition-duration: 0.6s; -moz-transition-duration: 0.6s; line-height: 25px; width: 88px;}
  878. #diana a:hover {-webkit-transition-duration: 0.6s; -moz-transition-duration: 0.6s;opacity: 1.0; display:inline-block; font-style:italic;background-color: {color:linkshover}; color:{color:link};font-size:9px; width: 100px;}
  879.  
  880. .frase {width:193px;
  881. margin-top:310px;
  882. opacity:0.999;
  883. text-align:center;height:4px;
  884. position:fixed;font-family:muli;font-size:15px;
  885. letter-spacing:1px; /**--OMDG---♥---**/
  886. margin-left:35px;-webkit-transform: rotate(0deg);-webkit-transition: all 1s ease;
  887. -moz-transition: all 1s ease;
  888. -o-transition: all 1s ease;transition: all 1s ease;}
  889.  
  890. .frase:hover {color:{color:borda2};height:28px;font-family:muli;font-size:15px;-webkit-transition: all 1s ease;
  891. -moz-transition: all 1s ease;
  892. -o-transition: all 1s ease;transition: all 1s ease;}
  893.  
  894.  
  895.  
  896.  
  897. /******----------------DESCRIÇÃO--------♥--------******/
  898. #notinholaduda {background:transparente;margin-left: 34px; margin-top: 326px; width:208px; font-size: 10px; height:53px; text-align: right; transparent; font-family:Muli; color: {color:text desc};position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px; /**--OMDG---♥---**/
  899. -moz-transition: 1s ease-in; transition: 1s ease-in; overflow: hidden; opacity: 1; border-top: 3px dotted transparent;padding: 2px 2px 2px 2px;border-top: 0px solid {color:bordaimg};-webkit-transform: rotate(0deg);} /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  900.  
  901. #dj3 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 179px; margin-top: 280px; color:{color:bordaimg}; font-size: 25px; -webkit-transform: rotate(-2deg); z-index: 1000;}
  902.  
  903. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  904. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  905. #paginal a { margin: 0 1px 0 0; padding: 2px 4px; background:{color:bordaimg};color: {color:pag};opacity:1; -webkit-border-radius: 0px 0px 20px 20px;border: 1px dashed {color:borda};} /**--OMDG---♥---**/
  906. #paginal a:hover {background: {color:borda2}; color: {color:text};}
  907. #paginal span.pagina_atual {background: {color:bordaimg}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;-webkit-border-radius: 0px 0px 20px 20px;} /**--OMDG---♥---**/
  908. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 32px; margin-top: 456px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 0px 0px 20px 20px; }
  909.  
  910. #tumblr_controls{position: fixed!important}
  911. #tumblr_controls{position: fixed!important}
  912. #tumblr_controls{position: fixed!important}
  913. #tumblr_controls{position: fixed!important}
  914.  
  915. ::-webkit-scrollbar{width:14px;height:5px;}
  916. ::-webkit-scrollbar-button:start:decrement
  917. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  918. ::-webkit-scrollbar-track-piece{background-color:{color:background};border: 3px solid {color:bordaimg};}
  919. ::-webkit-scrollbar-thumb:vertical{height:30px; background-color: {color:scrollbar}; -webkit-border-radius: 0px 0px 0px 0px;}
  920. ::-webkit-scrollbar-thumb:horizontal{width:30px; background-color:{color:scrollbar}; -webkit-border-radius: 0px 0px 0px 0px;}
  921.  
  922.  
  923.  
  924. </style>
  925. <body ondragstart="return false" onkeydown="return false">
  926.  
  927. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  928. <!--------------------play aqui embaixo---♥------------>
  929. <div id="be-barbie">
  930.  
  931. <div id="dj3">◤</div><div id="faixa2"></div>
  932. <div id="sidebar">
  933. <div id="imgduh"><img src="{image:sidebar}"/></div></div>
  934. <div class="imsureduh">{text:frase}</div>
  935.  
  936. <div class="frase">hey baby</div>
  937.  
  938. <div id="diana">
  939. <a href="{text:Link1}">{text:Link1 Title}</a>
  940. <a href="{text:Link2}">{text:Link2 Title}</a>
  941. <a href="{text:Link3}">{text:Link3 Title}</a>
  942. <a href="{text:Link4}">{text:Link4 Title}</a>
  943. <a href="{text:Link5}">{text:Link5 Title}</a>
  944. </div>
  945.  
  946. <!--------DESCRIBILE----(OMDG)------------->
  947. <div id="notinholaduda">{Description}</div>
  948.  
  949. <!-------------PAGINATION-----------♥---------->
  950.  
  951. <div class="ps"><div id="paginal">
  952. {block:JumpPagination length="4"}
  953. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  954. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  955. {/block:JumpPagination}
  956. </div></div>
  957.  
  958.  
  959. <!-------------CRÉDITOS-----------------♥------------->
  960. <div style="margin-left:52px;-webkit-border-radius: 5px 5px 5px 5px;-webkit-transform: rotate(0deg); width:120px;background:{color:sidebar};font-family:tahoma;font-size:11px; margin-top: -5px; height:18px;position:fixed; "><a href="http://o-mundo-de-uma-garota.tumblr.com/"title="Theme by: o-mundo-de-uma-garota not copie"><small>All Themes by OMDG </small></a>
  961. <font color="{color:tags}">©</font> </a></div>
  962. <div id="omdg">
  963.  
  964. {block:Posts}
  965. <div class="baseduh">
  966.  
  967. <div id="baseduh1">
  968. <a href="{Permalink}">{TimeAgo} ♡</a> <br>
  969. {block:IndexPage}<a href="{ReblogUrl}" target="_blank"><b>reblog</b> <img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class="" title=""></a>{/block:IndexPage}<br>
  970. {block:NoteCount}<a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} <br>
  971. {block:RebloggedFrom} (<a href="{ReblogParentURL}" title="{ReblogParentTitle}">via</a> <font color="{color:tags}"><b>/</b></font> <a href="{ReblogRootURL}" title="{ReblogRootTitle}">source</a>){/block:RebloggedFrom}
  972. {block:HasTags}{block:Tags}<font color="{color:tags}">#</font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}
  973. </div>
  974.  
  975. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  976.  
  977. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  978.  
  979. {block:Photoset}{Photoset-400}{/block:Photoset}
  980.  
  981. {block:Quote}
  982. <div class="xquote">“{Quote}”</div>
  983. {block:Source}<div class="xquotesource">
  984. <font color="{color:tags}">— {Source}</font></div>
  985. {/block:Source}
  986. {/block:Quote}
  987.  
  988. {block:Link}
  989. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  990. {block:Description}{Description}{/block:Description}
  991. {/block:Link}
  992.  
  993. {block:Chat}
  994. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  995. <div class="chat"><ul>{block:Lines}
  996. <li class="person{UserNumber}">{block:Label}
  997. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  998. {/block:Chat}
  999.  
  1000. {block:Audio}
  1001. <div class="player">{AudioPlayerBlack}</div>
  1002. {block:Caption}{Caption}{/block:Caption}
  1003. {/block:Audio}
  1004.  
  1005. {block:Video}{Video-350}{/block:Video}
  1006.  
  1007. {block:Answer}
  1008.  
  1009. <div style="padding: 4px;">
  1010.  
  1011. <div class="asker">{asker} sussurrou: <div align="left"><img src="{AskerPortraitURL-48}" align="left" />{Question}<br/></div></div> <div align="left"> {Answer}</div>
  1012. </div>
  1013.  
  1014. {/block:Answer}
  1015.  
  1016.  
  1017. <div id="cap">
  1018. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1019. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1020. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1021.  
  1022. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1023. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1024. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1025. {/block:ContentSource}</div></div>
  1026.  
  1027. </div>
  1028. {/block:Posts}
  1029. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  1030.  
  1031. </div>
  1032. </div>
  1033. </div>
  1034.  
  1035. </body>
  1036. </html>
Advertisement
Add Comment
Please, Sign In to add comment