Eduarda

theme 61

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