Eduarda

pra kah

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