Eduarda

Theme maricca

Aug 9th, 2013
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.50 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="#000" />
  678. <meta name="color:links" content="#696969" />
  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="#696969" />
  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="#1c1c1c" />
  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/90b532255158557cfed07f90dc9fc439/2bh9bxo/gHnmrae6q/tumblr_static_tumblr_inline_mp80vyimzo1qz4rgp.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: 515px; 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:145px;
  854. margin-top:260px;
  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:85px;background:{color:sidebar};-webkit-border-radius: 50px 0px 50px 50px;}
  863.  
  864. .imsureduh:first-letter {color:{color:borda2};font-family:rochester;font-size:15px;}
  865.  
  866. /**---Imagem da sidebar {OMDG}-----------♥--------**/
  867. #imgduh {width:118px;}
  868. #imgduh img {width: 114px; height:130px; float: left; border: 0px solid {color:bordaimg}; }
  869. #imgduh img:hover {opacity: 0.8;}
  870. #sidebar {width: 114px; float: left; margin-left:84px; margin-top:118px; padding: 5px; background-color: {color:bordaimg}; text-align: center; position: fixed;-webkit-border-radius: 0px 0px 0px 0px;}
  871.  
  872. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  873.  
  874.  
  875.  
  876. .frase {width:193px;
  877. margin-top:310px;
  878. opacity:0.999;
  879. text-align:center;height:4px;
  880. position:fixed;font-family:muli;font-size:15px;
  881. letter-spacing:1px; /**--OMDG---♥---**/
  882. margin-left:35px;-webkit-transform: rotate(0deg);-webkit-transition: all 1s ease;
  883. -moz-transition: all 1s ease;
  884. -o-transition: all 1s ease;transition: all 1s ease;}
  885.  
  886. .frase:hover {color:{color:borda2};height:28px;font-family:muli;font-size:15px;-webkit-transition: all 1s ease;
  887. -moz-transition: all 1s ease;
  888. -o-transition: all 1s ease;transition: all 1s ease;}
  889.  
  890.  
  891. /*—-♥—-Menu Riscado por C4-pacitada pegar credite ao HelpDesigns! [helpdesigns]—-♥—-*/
  892.  
  893. #isinha {z-index:999999999999999;position: fixed; width:300px; margin-left:70px; margin-top:290px; padding: 0px; text-align: center;}
  894.  
  895. #isinha a {float: left; display: block; letter-spacing:2px; font-size:11px; font-family:Calibri; text-align: center; margin-bottom:2px; margin-left:2px; color:{color:links}; text-decoration: none; line-height:16px;-webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; height:20px;width:40px}
  896.  
  897. #isinha a:hover { -webkit-transition: all 0.9s ease-out;opacity:0.8; color:{color:linkshover}; font-weight:calibri;-webkit-transition: all 0.9s ease-out;text-decoration:line-through}
  898.  
  899. /*proibida qualquer copia, ou plagios*//*não remova os créditos*/
  900.  
  901. /******----------------DESCRIÇÃO--------♥--------******/
  902. #notinholaduda {background:transparente;margin-left: 329px; margin-top: 93px; width:138px; font-size: 10px; height:53px; text-align: centro; transparent; font-family:Muli; color: {color:text desc};position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px; /**--OMDG---♥---**/
  903. -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---♥---**/
  904.  
  905. #dj3 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 200px; margin-top: 235px; color:{color:sidebar}; font-size: 25px; -webkit-transform: rotate(33deg); z-index: 1000;}
  906.  
  907. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  908. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  909. #paginal a { margin: 0 1px 0 0; padding: 2px 4px; background:{colorsidebar};color: {color:pag};opacity:1; -webkit-border-radius: 20px 20px 20px 20px;} /**--OMDG---♥---**/
  910. #paginal a:hover {background: {color:borda2}; color: {color:text};}
  911. #paginal span.pagina_atual {background: {color:sidebar}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;-webkit-border-radius: 20px 20px 20px 20px;} /**--OMDG---♥---**/
  912. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 302px; margin-top: 356px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 20px 20px 20px 20px; }
  913.  
  914.  
  915. .wish {margin-left:98px;
  916. height: 20px;
  917. float: left;
  918. margin-top: 181px;
  919. padding: 0px;
  920. text-align: center;
  921. position: fixed;
  922. line-height:14px;
  923. opacity:5;
  924. width:10px;}
  925. .wish a {margin-left: 2px; margin-top: 1px;
  926. float: left;
  927. font-family: Muli;
  928. font-size: 9px;line-height: 11px;
  929. text-align: center;
  930. height: 11px;opacity:0.5;
  931. width: 33px;
  932. color:{color:links};
  933. text-transform: lowercase;
  934. -webkit-transition: all .5s ease-out;
  935. -moz-transition: all .5s ease-out;
  936. background-color:{color:linkshover};
  937. border:1px solid {color:borda};letter-spacing:1px;}
  938. .wish a:hover{width: 40px;
  939. color:{color:linkshover};
  940. padding-left : 10px;
  941. -moz-box-shadow:inset 0px -24px 0px {color:sombra};
  942. -webkit-box-shadow:inset 0px -24px 0px {color:sombra};
  943. box-shadow:inset 0px -24px 0px {color:bghover};
  944. text-shadow: 1px 1px 0px {color:sombra};}
  945.  
  946. #tumblr_controls{position: fixed!important}
  947. #tumblr_controls{position: fixed!important}
  948. #tumblr_controls{position: fixed!important}
  949. #tumblr_controls{position: fixed!important}
  950.  
  951. ::-webkit-scrollbar{width:14px;height:5px;}
  952. ::-webkit-scrollbar-button:start:decrement
  953. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  954. ::-webkit-scrollbar-track-piece{background-color:{color:background};border: 3px solid {color:bordaimg};}
  955. ::-webkit-scrollbar-thumb:vertical{height:30px; background-color: {color:scrollbar}; -webkit-border-radius: 0px 0px 0px 0px;}
  956. ::-webkit-scrollbar-thumb:horizontal{width:30px; background-color:{color:scrollbar}; -webkit-border-radius: 0px 0px 0px 0px;}
  957.  
  958.  
  959.  
  960. </style>
  961. <body ondragstart="return false" onkeydown="return false">
  962.  
  963. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  964. <!--------------------play aqui embaixo---♥------------>
  965. <div id="be-barbie">
  966.  
  967. <div id="dj3">◤</div><div id="faixa2"></div>
  968. <div id="sidebar">
  969. <div id="imgduh"><img src="{image:sidebar}"/></div></div>
  970. <div class="imsureduh">{text:frase}</div>
  971.  
  972.  
  973. <div class="wish">
  974. <a href="{text:Link1}" >{text:Link1 title}</a>
  975. <a href="{text:Link2}" >{text:Link2 title}</a>
  976.  
  977. </div>
  978. <div id="isinha">
  979. <a href="{text:Link3}" >{text:Link3 title}</a>
  980. <a href="{text:Link4}" >{text:Link4 title}</a>
  981. <a href="{text:Link5}" >{text:Link5 title}</a>
  982. <a href="{text:Link6}" >{text:Link6 title}</a>
  983. </div>
  984. </div>
  985.  
  986. <!--------DESCRIBILE----(OMDG)------------->
  987. <div id="notinholaduda">{Description}</div>
  988.  
  989. <!-------------PAGINATION-----------♥---------->
  990.  
  991. <div class="ps"><div id="paginal">
  992. {block:JumpPagination length="4"}
  993. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  994. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  995. {/block:JumpPagination}
  996. </div></div>
  997.  
  998.  
  999. <!-------------CRÉDITOS-----------------♥------------->
  1000. <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 menu by helpdesigns and revolutionhtml not copie"><small>All Themes by OMDG </small></a>
  1001. <font color="{color:tags}">©</font> </a></div>
  1002. <div id="omdg">
  1003.  
  1004. {block:Posts}
  1005. <div class="baseduh">
  1006.  
  1007. <div id="baseduh1">
  1008. <a href="{Permalink}">{TimeAgo} ♡</a> <br>
  1009. {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>
  1010. {block:NoteCount}<a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} <br>
  1011. {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}
  1012. {block:HasTags}{block:Tags}<font color="{color:tags}">#</font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}
  1013. </div>
  1014.  
  1015. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1016.  
  1017. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  1018.  
  1019. {block:Photoset}{Photoset-400}{/block:Photoset}
  1020.  
  1021. {block:Quote}
  1022. <div class="xquote">“{Quote}”</div>
  1023. {block:Source}<div class="xquotesource">
  1024. <font color="{color:tags}">— {Source}</font></div>
  1025. {/block:Source}
  1026. {/block:Quote}
  1027.  
  1028. {block:Link}
  1029. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1030. {block:Description}{Description}{/block:Description}
  1031. {/block:Link}
  1032.  
  1033. {block:Chat}
  1034. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1035. <div class="chat"><ul>{block:Lines}
  1036. <li class="person{UserNumber}">{block:Label}
  1037. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1038. {/block:Chat}
  1039.  
  1040. {block:Audio}
  1041. <div class="player">{AudioPlayerBlack}</div>
  1042. {block:Caption}{Caption}{/block:Caption}
  1043. {/block:Audio}
  1044.  
  1045. {block:Video}{Video-350}{/block:Video}
  1046.  
  1047. {block:Answer}
  1048.  
  1049. <div style="padding: 4px;">
  1050.  
  1051. <div class="asker">{asker} sussurrou: <div align="left"><img src="{AskerPortraitURL-48}" align="left" />{Question}<br/></div></div> <div align="left"> {Answer}</div>
  1052. </div>
  1053.  
  1054. {/block:Answer}
  1055.  
  1056.  
  1057. <div id="cap">
  1058. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1059. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1060. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1061.  
  1062. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1063. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1064. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1065. {/block:ContentSource}</div></div>
  1066.  
  1067. </div>
  1068. {/block:Posts}
  1069. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  1070.  
  1071. </div>
  1072. </div>
  1073. </div>
  1074.  
  1075. </body>
  1076. </html>
Advertisement
Add Comment
Please, Sign In to add comment