Don't like ads? PRO users don't see any ads ;-)
Guest

theme 16

By: a guest on Aug 22nd, 2012  |  syntax: None  |  size: 25.89 KB  |  hits: 93  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5.  
  6. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  7.  
  8. <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'>
  9.  
  10.  
  11. <head>
  12.  
  13. <script>
  14.  
  15. // <![CDATA[
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. var bgcolour="#FFC5DD"; // background colour
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31. var fgcolour="#999999"; // foreground colour
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. var speed=120; // speed of bubbling, lower is faster
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. var shades=5; // number of shades of bubble
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. /****************************
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71. * Bubbling Text Effect *
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79. *(c) 2003-6 mf2fm web-design*
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. * http://www.mf2fm.com/rv *
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95. * DON'T EDIT BELOW THIS BOX *
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103. ****************************/
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111. var bubbcol=new Array();
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119. var bubbler, bubbtxt;
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127. var bubbchr=new Array();
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135. window.onload=function() { if (document.getElementById) {
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143. for (bubbler=0; bubbler<=shades; bubbler++) {
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151. bubbtxt="#";
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159. for (var i=1; i<6; i+=2) {
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167. var bg=parseInt(bgcolour.substring(i,i+2),16);
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183. }
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191. bubbcol[bubbler+1]=bubbtxt;
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199. }
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207. bubbler=document.getElementById("bubble");
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215. bubbtxt=bubbler.firstChild.nodeValue;
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231. for (var i=0; i<bubbtxt.length; i++) {
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239. var bubbi=document.createElement("span");
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247. bubbi.setAttribute("id", "bubb"+i);
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263. bubbler.appendChild(bubbi);
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271. }
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279. bubbler=setInterval ("bubbling()", speed);
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287. }}
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303. function dechex(dec) {
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311. var hex=dec.toString(16);
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319. if (dec<16) return "0"+hex;
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327. else return hex;
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335. }
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351. function bubbling() {
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359. for (var i=0; i<bubbtxt.length; i++) {
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367. var bubbme=document.getElementById("bubb"+i);
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375. if (bubbchr[i]) {
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383. bubbme.style.color=bubbcol[bubbchr[i]];
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399. }
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415. }
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423. }
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431. // ]]>
  432.  
  433.  
  434.  
  435.  
  436.  
  437. </script>
  438.  
  439.  
  440.  
  441. <link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here' rel='stylesheet' type='text/css'>
  442.  
  443. <script src="http://code.jquery.com/jquery-latest.js"></script>
  444.  
  445.  
  446. <script type="text/javascript">
  447. //desabilita menu de opcoes ao clicar no botao direito
  448. function desabilitaMenu(e)
  449. {
  450. if (window.Event)
  451. {
  452. if (e.which == 2 || e.which == 3)
  453. return false;
  454. }
  455. else
  456. {
  457. event.cancelBubble = true
  458. event.returnValue = false;
  459. return false;
  460. }
  461. }
  462.  
  463. //desabilita botao direito
  464. function desabilitaBotaoDireito(e)
  465. {
  466. if (window.Event)
  467. {
  468. if (e.which == 2 || e.which == 3)
  469. return false;
  470. }
  471. else
  472. if (event.button == 2 || event.button == 3)
  473. {
  474. event.cancelBubble = true
  475. event.returnValue = false;
  476. return false;
  477. }
  478. }
  479.  
  480. //desabilita botao direito do mouse
  481. if ( window.Event )
  482. document.captureEvents(Event.MOUSEUP);
  483. if ( document.layers )
  484. document.captureEvents(Event.MOUSEDOWN);
  485.  
  486. document.oncontextmenu = desabilitaMenu;
  487. document.onmousedown = desabilitaBotaoDireito;
  488. document.onmouseup = desabilitaBotaoDireito;
  489. </script>
  490.  
  491. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500. <script type="text/javascript">
  501.  
  502.  
  503. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  504.  
  505.  
  506.  
  507.  
  508. function tb8_makeArray(n){
  509.  
  510.  
  511. this.length = n;
  512.  
  513.  
  514. return this.length;
  515.  
  516.  
  517. }
  518.  
  519.  
  520.  
  521.  
  522. tb8_messages = new tb8_makeArray(1);
  523.  
  524.  
  525.  
  526.  
  527. tb8_messages[0] = "{Title}";
  528.  
  529.  
  530.  
  531.  
  532. tb8_rptType = 'infinite';
  533.  
  534.  
  535.  
  536.  
  537. tb8_rptNbr = 5;
  538.  
  539.  
  540.  
  541.  
  542. tb8_speed = 100;
  543.  
  544.  
  545.  
  546.  
  547. tb8_delay = 2000;
  548.  
  549.  
  550.  
  551.  
  552. var tb8_counter=1;
  553.  
  554.  
  555.  
  556.  
  557. var tb8_currMsg=0;
  558.  
  559.  
  560.  
  561.  
  562. var tb8_tekst ="";
  563.  
  564.  
  565.  
  566.  
  567. var tb8_i=0;
  568.  
  569.  
  570.  
  571.  
  572. var tb8_TID = null;
  573.  
  574.  
  575.  
  576.  
  577. function tb8_pisi(){
  578.  
  579.  
  580.  
  581.  
  582. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  583.  
  584.  
  585.  
  586.  
  587. document.title = tb8_tekst;
  588.  
  589.  
  590.  
  591.  
  592. tb8_sp=tb8_speed;
  593.  
  594.  
  595.  
  596.  
  597. tb8_i++;
  598.  
  599.  
  600.  
  601.  
  602. if (tb8_i==tb8_messages[tb8_currMsg].length){
  603.  
  604.  
  605.  
  606.  
  607. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  608.  
  609.  
  610.  
  611.  
  612. }
  613.  
  614.  
  615.  
  616.  
  617. if (tb8_currMsg == tb8_messages.length){
  618.  
  619.  
  620.  
  621.  
  622. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  623.  
  624.  
  625.  
  626.  
  627. clearTimeout(tb8_TID);
  628.  
  629.  
  630.  
  631.  
  632. return;
  633.  
  634.  
  635.  
  636.  
  637. }
  638.  
  639.  
  640.  
  641.  
  642. tb8_counter++;
  643.  
  644.  
  645.  
  646.  
  647. tb8_currMsg = 0;
  648.  
  649.  
  650. }
  651.  
  652.  
  653.  
  654.  
  655. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  656.  
  657.  
  658.  
  659.  
  660. }
  661.  
  662.  
  663.  
  664.  
  665. tb8_pisi()
  666.  
  667.  
  668.  
  669.  
  670. </script>
  671.  
  672. <meta name="color:background" content="#f5f5f5" />
  673. <meta name="color:link" content="#999999" />
  674. <meta name="color:linkhover" content="#e4e4e4" />
  675. <meta name="color:text" content="#999999" />
  676. <meta name="color:sidebar" content="#ffffff" />
  677. <meta name="color:entry" content="#ffffff" />
  678. <meta name="color:bgscrollbar" content="#ffffff"/>
  679. <meta name="color:scrollbar" content="#e4e4e4"/>
  680. <meta name="color:source" content="#FF85B8"/>
  681. <meta name="color:tags" content="#FF85B8"/>
  682. <meta name="color:borda" content="#FF85B8"/>
  683.  
  684. <meta name="image:sidebar" content=""/>
  685. <meta name="image:background" content=""/>
  686.  
  687. <meta name="text:palavra" content="Believe" />
  688.  
  689. <meta name="text:Link1" content="" />
  690. <meta name="text:Link1 Title" content="" />
  691. <meta name="text:Link2" content="" />
  692. <meta name="text:Link2 Title" content="" />
  693. <meta name="text:Link3" content="" />
  694. <meta name="text:Link3 Title" content="" />
  695. <meta name="text:Link4" content="" />
  696. <meta name="text:Link4 Title" content="" />
  697. <meta name="text:Link5" content="" />
  698. <meta name="text:Link5 Title" content="" />
  699. <meta name="text:Link6" content="" />
  700. <meta name="text:Link6 Title" content="" />
  701. <meta name="text:Link7" content="" />
  702. <meta name="text:Link7 Title" content="" />
  703. <meta name="text:Link8" content="" />
  704. <meta name="text:Link8 Title" content="" />
  705.  
  706.  
  707.  
  708.  
  709.  
  710.         <title>{Title}</title>
  711.         <link rel="shortcut icon" href="{Favicon}">
  712.         <link rel="alternate" type="application/rss+xml" href="{RSS}">
  713.         {block:Description}
  714.             <meta name="description" content="{MetaDescription}" />
  715.         {/block:Description}
  716.  
  717.  
  718.  
  719.    
  720.     <style type="text/css">
  721.  
  722. body {background-color: {color:background} ; color:{color:background};
  723.  font-family: verdana; font-size:11px; line-height:110%;
  724.   margin:0 auto 0 auto; text-align:center;
  725.  background-image:url('{image:background}') ;
  726. background-attachment: fixed; }
  727.  
  728. a {color: {color:link}; text-decoration: none; font-size: 10px; text-transform: none}
  729. a:hover {color: {color:linkhover}; -webkit-transition-duration: 0.6s; -moz-transition-duration: 0.6s; }
  730. p{margin-top: 1px}
  731. blockquote{margin-left:3px; margin-right: 0px; border-left: 3px solid #e4e4e4; padding-left:3px;
  732.  
  733. margin-top: 4px;}
  734.  
  735.  
  736. #xp {text-align: center; width: 870px; margin: 20px auto 10px auto; padding: 0px; z-index: 1}
  737.  
  738. #sid{position: fixed; margin-left:-35px; margin-top:133px; width: 300px; height: 70px; background-color: {color:sidebar}; padding: 10px; background-attachment: fixed; -webkit-transform: rotate(-90deg); line-height:15px;}
  739.  
  740. .sid2{float: right; width: 316px; height: 40;  background-color: {color:sidebar}; padding: 2px; margin-bottom: 5px; color: {color:sidebar};}
  741.  
  742.  
  743. /* base by kah */
  744.  
  745. #navigation{position: fixed; z-index: -2; width: 100%; top: 45%; left: 0px; background-color:transparent; height: 100px;
  746.  
  747. text-align: center; font-size: 85px;}
  748. .left{float:left; margin-left: 10px; width: 40px}
  749. .left a{text-decoration: none; font-size: 75px; line-height: 75px}
  750. .left a:hover{background-color: transparent; opacity: 0.4; filter:alpha (opacity=40)}
  751. .right{float:right; margin-right: 10px; width: 40px}
  752. .right a{text-decoration: none; font-size: 75px; line-height: 75px}
  753. .right a:hover{background-color: transparent; opacity: 0.4; filter:alpha (opacity=40)}
  754.  
  755. #content{width: 800px; text-align: center; margin:10px auto 0 auto; padding-bottom: 150px; background-color:
  756. transparent; color:{color:text}; position: absolute; }
  757.  
  758. .sidebarpic img{max-width: 200px; text-align:center; margin-top: 1px}
  759.  
  760.  
  761. #entries{float: right; background-color: transparent; text-align: center}
  762.  
  763.  
  764.  
  765. .post{ width: 503px; margin: 4px 0 4px 200px; padding: 12px; text-align: justify; background-color:{color:entry};   margin-right: -83px; margin-top: 10px; margin-bottom:-8px; padding-bottom:9px; padding-top:25px; padding-left:9px; padding-right:-20px; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; }
  766. .post img{margin: 1px 0 1px 0; -webkit-border-radius: 0px 0px 0px 0px; max-width: 500px;}
  767.  
  768. h1{font-family: Georgia; font-style: none; font-size: 14px; font-weight:normal; letter-spacing: 0px;text-transform: uppercase; line-height: 22px; text-align:center}
  769.  
  770. h1 a{font-size: 14px; font-weight:normal; font-style: none; letter-spacing: 0px;text-transform: uppercase; line-height: 22px; text-align:center}
  771.  
  772.  
  773. h3{font-family: Rochester; font-size:17px; letter-spacing:0px; font-weight:normal; font-style:normal; text-transform: none; line-height: 14px; margin-bottom:-15px; text-align:center}
  774.  
  775.  
  776. h3 a{ font-family: Rochester; font-size:17px; letter-spacing:0px; font-weight:normal; font-style:normal; text-transform: none; line-height: 14px;  text-align:center;}
  777.  
  778.  
  779. .image{text-align: center; height: auto; margin-bottom: 3px; border: 0px;
  780. margin: 1px;
  781. border: none;
  782. filter: alpha(opacity=100);
  783. moz-opacity:1.0;
  784. opacity:1.0;}
  785. .image:hover{
  786. filter: alpha(opacity=75);
  787. moz-opacity:.80;
  788. opacity:.80 ;
  789. -webkit-transition-duration: .50s}
  790.  
  791.          
  792. .qqmarks{font-size: 80px; font-family: verdana; font-weight: normal; line-height: 80px; color:{color:linkbackground}}
  793. h2{font-size: 10px; display: block; width: 250px; color:{color:text}; background-color: {color:linkbackground}; text-align: center; margin: 0px 0px 3px 0px; padding: 3px 0 3px 0; text-transform: uppercase; text-decoration: none; font-weight: normal}
  794.  
  795. .aspas{ position:relative; top: 15px; font-size: 80px; opacity:0.1; filter: alpha(opacity = 10); color: {color:text};}
  796. .qquote{font-family: Georgia; font-size: 13px; letter-spacing: 0px; line-height: 18px; text-transform: none; text-align: center;}
  797.  
  798. .qsource{margin-top: 5px; margin-right: 15px;text-align: right; height:20px;}
  799. .chat{line-height: 12px; list-style: none }
  800. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height: 20px;}
  801. .person1 {color: {color:text} }
  802. .person1 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text}  }
  803. .person2 {color: {color:text} }
  804. .person2 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text}  }
  805. .iaudio{text-align: center; margin-bottom: 2px; width: 100%; background-color: {color:linkbackground}}
  806. .iaudio img{max-width: 180px; height: auto; padding: 20px 0 20px 0}
  807. .icap{margin-top: 1px}
  808. .source{display:none}
  809.  
  810. .source {display:none}
  811. div#source {text-align: right; font-size: 10px}
  812.  
  813. .source {display:none}
  814. div#source {text-align: right; font-size: 9px}
  815.  
  816. /* post */
  817.  
  818. info {font-family:verdana; font-size: 10px; text-align:center; text-transform: uppercase}
  819. .info a:hover{text-transform: uppercase; letter-spacing: 1px}
  820.  
  821. .basedakah {margin-top: 5px; border-left: -1px solid {color:entry}; padding: 2px;  background-color: {color:background}; text-align: left; font-size: 8px; font-family: verdana; letter-spacing: 0px}
  822.  
  823. .basedakah a {font-size: 8px; text-transform: uppercase; letter-spacing: 0px}
  824. .basedakah a:hover{text-transform: uppercase; letter-spacing: 0px}
  825.  
  826. .kahzinha {float:right; margin-center: 0px; margin-top: -5px; text-align: center; font-size: 0px; color: {color:infotext}; text-transform: uppercase}
  827.  
  828. .kahzinha a{font-size: 0px; text-align: center; color: {color:infotext}; text-transform: uppercase}
  829.  
  830. .tags{font-size:8px; display: inline; text-transform: uppercase}
  831.  
  832.  
  833.  
  834. .line1{font-size:10px; text-transform: lowercase; margin-top: 7px}
  835. .line2{font-size:10px; text-transform:lowercase; clear: both}
  836. .line3{font-size:10px; text-transform:lowercase; clear: both}
  837. .ileft{float: left}
  838. .iright{float: right}
  839. .postclear{clear: both; width: 100%; visibility: hidden; height: 1px}
  840.  
  841. .post:hover #information {opacity:1;}
  842.  
  843. #information{position:absolute; font: 9px calibri; text-transform:none; color:{color:link}; margin-left:515px; opacity:0; height:auto; width: 120px; margin-bottom:0px; background-color: #fcfcfc; margin-top:-100px;  background-color:#trans; display:block; text-align:left; padding:0px 0px 0px 7px; -moz-transition: all .7s ease-in-out; -o-transition: all .7s ease-in-out; transition: all .7s ease-in-out; -webkit-transition: all .7s ease-in-out; border-left:3px solid #eee; font-family: verdana; padding: 5px; -webkit-border-radius: 0px 0px 0px 0px;}
  844. #information a{text-transform:lowercase; color:#999; font-style:none; }
  845. #information a:hover {color: #999;  }
  846.  
  847. .notes a{ font:11px Georgia!important; color:{color:permalink}!important; letter-spacing:0px; text-transform:none!important; font-style:normal!important; -moz-transition: all .7s ease-in-out; -o-transition: all .7s ease-in-out; transition: all .7s ease-in-out; -webkit-transition: all .7s ease-in-out; font-weight:300!important; }
  848. .notes a:hover {color: #999!important; }
  849.  
  850. .date {font:9px calibri; text-transform:uppercase; color:#999;}
  851.  
  852.  
  853.  
  854. .search{margin-top: 3px}
  855. .searcha {background-color: {color:background}; opacity: 0.8; filter:alpha (opacity=80); margin-left: 15px; margin-top:10px; padding: 2px 20px 2px 2px; width: 130px; font-family: georgia; border: 0px; font-size: 11px; background-image: url('http://static.tumblr.com/wmub1ou/U8elgx98n/search.png'); background-repeat: no-repeat; background-position: 98% 50%}
  856.  
  857. .search_result{font-size: 12px; text-align: center}
  858.  
  859.  /* asker */
  860.  
  861. .asker {width: 480px; background-color: {color:background}; color:{color:text}; padding: 10px}
  862. .asker img{float: left; margin: 0px 4px 2px 0; }
  863. .asker a{font-size: 11px; color:{color:link}; text-transform: none; line-height: 27px; padding: 0; margin: 0; font-family: verdana;  -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; }
  864. .asker a:hover{font-size: 11px; color:{color:linkhover}; text-transform: none; line-height:27px; padding: 0; margin: 0; font-family:verdana;}
  865. .answer {padding: 4px}
  866. .answer img {max-width: 470px;}
  867.  
  868. /*sidebar da kah*/
  869.  
  870. #side{
  871. width:150px;
  872. position: fixed;
  873. height: 80;
  874. background-color: transparent;
  875. padding:6px;
  876. margin-top: 200px;
  877. margin-left: 190px;
  878. }
  879. #permapage{
  880. font-family: verdana;
  881. font-size: 9px;
  882. text-align: left;
  883. margin-bottom: 8px;
  884. }
  885.  
  886. #slideshow {
  887.     position:fixed;
  888.     height:130px;
  889.     width:170px;
  890.     margin-top:80px;
  891.     background-color: {color:sidebar};
  892.     padding: 5px;
  893.     margin-left: -20px;
  894.     z-index:830; -webkit-transition: all 0.9s ease-out;
  895. -moz-transition: all 0.9s ease-out;
  896. }
  897.  
  898. #slideshow img {
  899.     position:absolute;
  900.     top:0;
  901.     left:0;
  902.     z-index:830;
  903.     height: 130px;
  904.     width:170px;
  905.     padding: 5px;
  906. }
  907.  
  908. #slideshow img.active {
  909.     z-index:10;
  910. }
  911.  
  912. #slideshow img.last-active {
  913.     z-index:9;
  914. }
  915.  
  916. #slideshow:hover {opacity:0.6;}
  917.  
  918. #blabla {position: fixed; float: left; margin-top:220px; margin-left:-20px; z-index: 999999999999999999999999999999999999999999999999999999;}
  919.  
  920. #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:text}; color: #ffffff; height: 12px; width: 180px; opacity: 1.0;}
  921.  
  922. #blabla a:hover{background-color: #fff; color: {color:text}; -webkit-transition-duration: 1.5s; -moz-transition-duration:1.5s;opacity: 1.0;}
  923.  
  924. #profile{ float: left; margin-top: 310px; margin-left: 5px; height: 49px; width:49px; position: fixed; padding: 0px; overflow: hidden;  z-index:43; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; background-color: transparent;}
  925.  
  926. #profile img {margin-top: 0px; margin-left: 0px;}
  927.  
  928.  
  929.  
  930. #sidebardakah2 {margin-top:-7px; margin-left:-20px; position: fixed; color: #d5d5d5; width: 180px; height: 110px; background-color:{color:sidebar};}
  931.  
  932. #sidotitulo {width:174px; margin-left:-18px; height: 90px; margin-top: 0px; float:left; text-align: center; background-color: transparent; font-size: 9px; position:fixed;  color: #999; font-family: verdana; overflow: hidden;  -moz-transition: all .8s ease-in-out; -o-transition: all .8s ease-in-out; transition: all .8s ease-in-out; -webkit-transition: all .8s ease-in-out; letter-spacing: 0px; padding-left:7px; padding-top:10px; padding-right:5px; z-index:9; }
  933.  
  934.  
  935. #titulo {width:120px; margin-left: 10px; height: 60px; margin-top: -15px; float:left; text-align: center; background-color: transparent ; font-size: 20px; position:fixed;  color: #999; font-family: Just Me Again Down Here, sans-serif; overflow: hidden;  -moz-transition: all .8s ease-in-out; -o-transition: all .8s ease-in-out; transition: all .8s ease-in-out; -webkit-transition: all .8s ease-in-out; letter-spacing: 0px; padding-left:7px; padding-top:10px; padding-right:5px;  z-index:9;opacity: 0.9;}
  936.  
  937.  
  938. #botaodelike {width: 170px; height: 40px; position: fixed; background-color:{color:transparent}; margin-left: 75px; margin-top: 5px; z-index:2}
  939.  
  940. #frasesinha2 {font-family: Just Me Again Down Here, sans-serif; background-color: transparent; color: {color:text}; font-size: 20px;  width: 115px; margin-top: 10px; margin-left: 0px; z-index: 830; position: fixed; text-align: center; height: 47px; line-height:9px; border:0px solid ; text-transform: none; }
  941.  
  942. #credit {font-family: verdana; background-color: {color:entry}; color: {color:text}; font-size: 8px; padding: 5px 5px 5px 5px; width: 250px; margin-top: 0px; margin-left: 330px; z-index: 1; position: relative; text-align: center; height: 8px; border:0px solid ; text-transform: uppercase;}
  943. #credit a{font-family: verdana; font-size: 8px; text-transform: uppercase; font-weight: none; padding-left:1px; margin-left:-3px;  }
  944.  
  945. #title {width: 222px; height: 30px; position:fixed;  margin-left: 60px; margin-top: 293px; rotate(-500deg); color: {color:text}}
  946.  
  947. .optitle{font-family:"discoverbeauty"; font-size: 12px; font-style: none;
  948. line-height: 10px; font-weight: none; color: ; margin-top: 10px; margin-left: -5px;   text-transform: none; letter-spacing: 0px; -webkit-transform: rotate(-90deg); background-color: {color:sidebar}; padding:4px; color: {color:text};}
  949.  
  950.  @font-face {font-family: "discoverbeauty";src: url('http://static.tumblr.com/nf5qb3y/3ptm2vwot/discoverbeauty.ttf') format("truetype");}
  951.  
  952. #hehe {font-family: georgia; background-color: transparent; color: {color:text}; font-size: 10px; padding: 5px 5px 5px 5px; width: 170px; margin-top: -33px; margin-left: -20px; z-index: 1; position: relative; text-align: center; height: 16px; position: fixed;  border-bottom: 3px solid {color:sidebar}; }
  953.  
  954.  
  955.  
  956. 3iframe#tumblr_controls { right:3px !important; position: fixed !important; -webkit-transition: opacity 0.8s linear; opacity: 0.2; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; transition: all 0.6s ease-out;}
  957. iframe#tumblr_controls:hover{ -webkit-transition: opacity 0.8s linear; opacity: 1; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
  958. #tumblr_controls{position: fixed!important;z-index:10;}
  959.  
  960. ::-webkit-scrollbar{width:8px;height:5px;}
  961. ::-webkit-scrollbar-button:start:decrement
  962. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  963. ::-webkit-scrollbar-track-piece{background-color:{color:bgscrollbar};-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  964. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color:{color:scrollbar};-webkit-border-radius:px;}
  965. ::-webkit-scrollbar-thumb:horizontal{width:40px; background-color:{color:scrollbar};-webkit-border-radius:px;}
  966.  
  967.     </style>
  968.  <script language='JavaScript'>
  969. //Bloqueador de Tecla CTRL - iceBreaker http://www.icebreaker.com.br/
  970. function checartecla (evt)
  971. {if (evt.keyCode == &#39;17&#39;)
  972. {alert(&quot;Comando Desativado&quot;)
  973. return false}
  974. return true}
  975. </script>
  976.  
  977.  
  978.  
  979.     </head>
  980.  
  981. <body ondragstart="return false" onkeydown="return false">
  982.  
  983.  
  984. <div id="title">
  985. <center><div class="optitle">{title}</div></div>
  986.  
  987.  
  988.  
  989.  
  990. <div id="side" alt="" title="barbie">
  991. <div id="titulo"><center>{text:palavra}</center></div>
  992.  
  993. <div id="sidotitulo">{block:Description}{Description}{/block:Description}
  994. <br><br>
  995. {block:PreviousPage}<a href="{PreviousPage}"  title="previous"><big><big><big><font color="{color:tags}">«</font></big></big></big></a>{/block:PreviousPage}
  996.  
  997. {block:NextPage}<a href="{NextPage}" title="next"><big><big><big><font color="{color:tags}">»</font></big></big></big></a>{/block:NextPage}
  998. </div>
  999.  
  1000. <div id="sidebardakah2"></div>
  1001.  
  1002. <div id="blabla">
  1003. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  1004. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  1005. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  1006. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}
  1007. </div>
  1008.  
  1009. <div id="hehe">
  1010. <i>
  1011. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1} .
  1012. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2} .
  1013. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  1014. </i>
  1015. </div>
  1016.  
  1017.  
  1018. <div id="slideshow">
  1019. <img class="active" src="{image:sidebar}" alt="" title="barbie" />
  1020.  
  1021. </div>
  1022. </div>
  1023.  
  1024. <div id="content">
  1025.  
  1026. <div id="entries">  
  1027. {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
  1028. <script type="text/javascript"
  1029.  
  1030. src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
  1031.  
  1032.  
  1033.  {block:SearchPage}<div class="search_result">{SearchResultCount} results</div>{/block:SearchPage}
  1034.  
  1035.  {block:Posts}
  1036.  
  1037.  
  1038.  
  1039. <div class="post">
  1040.  
  1041.  
  1042. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1043.  
  1044. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  1045.  
  1046. {block:Photoset}{Photoset-500}{/block:Photoset}
  1047.  
  1048. {block:Quote}
  1049. <div class="qquote">"{Quote}"</div>
  1050. {block:Source}<div class="qsource"><font color="{color:source}">~ {Source}</font></div>{/block:Source}
  1051. {/block:Quote}
  1052.  
  1053. {block:Link}
  1054. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1055. {block:Description}{Description}{/block:Description}
  1056. {/block:Link}
  1057.  
  1058. {block:Chat}
  1059. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1060. <div class="chat"><ul>{block:Lines}
  1061. <li class="person{UserNumber}">{block:Label}
  1062. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1063. {/block:Chat}
  1064.  
  1065. {block:Audio}
  1066. <div class="iaudio">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  1067. {AudioPlayerGrey}
  1068. <div class="icap">{block:Caption}{Caption}{/block:Caption}</div>
  1069. {/block:Audio}
  1070.  
  1071. {block:Video}{Video-500}{/block:Video}
  1072.  
  1073. {block:Answer}
  1074. <div class="asker"><img src="{AskerPortraitURL-30}" class="barbie"><b>{Asker}</b> sussurou:<br>{Question}</div>
  1075. <div class="answer"><br>{Answer}</div>
  1076. {/block:Answer}
  1077.  
  1078.  
  1079.  
  1080. <div class="cap">
  1081. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1082. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1083. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1084.  
  1085. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1086.       <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1087.         {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1088. {/block:ContentSource}</div></div>
  1089.  
  1090.  
  1091. <div class="info">
  1092.  
  1093. <div class="kahzinha">{block:RebloggedFrom}via&nbsp;&nbsp;<a href="{ReblogParentURL}"
  1094.  
  1095. title="{ReblogParentTitle}">{ReblogParentName}</a>&nbsp;&nbsp;(originally&nbsp;&nbsp;<a href="{ReblogRootURL}"
  1096.  
  1097. title="{ReblogRootTitle}">{ReblogRootName}</a>){/block:RebloggedFrom}</div></div>
  1098.  
  1099. <div style="color:{color:hashtag}"><div class="basedakah"><div class="ddb"><div class="tags">{block:HasTags}{block:Tags}<font color="{color:tags}">#</font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div></div>
  1100.  
  1101. <font color="{color:link}">{DayOfMonth}.{MonthNumber}.{Year}{/block:Date}/</font><a href="{Permalink}">{TimeAgo} ♡</a> {block:NoteCount}  • <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} • <a href="{ReblogUrl}" target="_blank">reblog <img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class="" title=""></a>{/block:IndexPage}
  1102.  
  1103. {block:RebloggedFrom}<br><font color="{color:source}">originally</font> <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} • <font color="{color:source}">via</font> <a href="{ReblogParentURL}">{ReblogParentName}</a>
  1104.  
  1105. {/block:RebloggedFrom}
  1106.  
  1107. </div></div></div>
  1108.  
  1109. {/block:Posts}
  1110. <div id="credit">adpt. <a href="http://bipolar-girll.tumblr.com/">bipolar-girll</a> <font color="{color:tags}">+</font> base <a href="http://amor-compulsivo.tumblr.com/">amor-compulsivo</a></div>
  1111. {block:IfEnableEndlessScrolling}</div>{/block:IfEnableEndlessScrolling}
  1112. {block:PostNotes}
  1113. {/block:PostNotes}
  1114.  
  1115.  
  1116.  
  1117. </div>
  1118.  
  1119.  
  1120.  
  1121. </body>
  1122.  
  1123.  
  1124.  
  1125.  
  1126. </html>