ubc-themes

theme 10

Sep 19th, 2012
689
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 23.54 KB | None | 0 0
  1. <! THEME UMABONECACIUMENTA DONT COPY !>
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <head>
  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] = "Good girls like bad boys";
  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.    <!-- DEFAULT VARIABLES -->
  667. <meta name="color:background" content="#f8f8f8" />
  668. <meta name="color:link" content="#000000" />
  669. <meta name="color:text" content="#666666" />
  670. <meta name="color:post" content="#ffffff" />
  671. <meta name="color:sidebar" content="#ffffff" />
  672. <meta name="color:borda" content="#fff" />
  673. <meta name="color:scrollbar" content="#aaaaaa" />
  674. <meta name="color:listra" content="#fff" />
  675.  <meta name="text:titulo" content="i really love you.
  676. " />
  677.  <meta name="color:descr" content="#000" />
  678. <meta name="color:link1" content="#aaaaaa" />
  679. <meta name="color:link2" content="#7a7a7a" />
  680. <meta name="color:link3" content="#ffffff" />
  681. <meta name="color:links" content="#ffffff" />
  682. <meta name="color:bglinks" content="#1c1c1c" />
  683.  
  684. <meta name="image:background" content="" />
  685. <meta name="image:sidebar" content="http://24.media.tumblr.com/tumblr_m6mey56Fo61rzb6xvo2_250.jpg" />
  686.  
  687. <meta name="if:Show tags" content="1"/>
  688.  
  689.  
  690.  
  691. <meta name="text:Link1" content="" />
  692. <meta name="text:Link1 Title" content="um" />
  693. <meta name="text:Link2" content="" />
  694. <meta name="text:Link2 Title" content="dois" />
  695. <meta name="text:Link3" content="" />
  696. <meta name="text:Link3 Title" content="tres" />
  697. <meta name="text:Link4" content="" />
  698. <meta name="text:Link4 Title" content="quatro" />
  699. <meta name="text:Link5" content="" />
  700. <meta name="text:Link5 Title" content="cinco" />
  701. <meta name="text:Link6" content="" />
  702. <meta name="text:Link6 Title" content="seis" />
  703. <meta name="text:Link7" content="" />
  704. <meta name="text:Link7 Title" content="sete" />
  705. <meta name="text:Link8" content="" />
  706. <meta name="text:Link8 Title" content="sete" />
  707.  
  708.  
  709.                       <title>{Title}</title>
  710.         <link rel="shortcut icon" href="{Favicon}">
  711.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  712.         {block:Description}
  713.   <meta name="description" content="{MetaDescription}" />
  714.         {/block:Description}
  715.  
  716.  
  717. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  718.  
  719. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  720.  
  721.  
  722.     <style type="text/css">
  723.  
  724.  
  725.  
  726.  
  727. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  728.  
  729. a {color: {color:link}; text-decoration: none; text-transform: none;}
  730. a:hover {color: {color:lhover}; background-color: transparent; text-decoration: none;}
  731.  
  732. p {margin: 6px 0 0 0}
  733.  
  734. blockquote {margin: 5px 5px 5px 5px; border-left: 6px solid {color:background}; padding-left: 5px; }
  735. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  736. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  737. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  738.  
  739. blockquote img{max-width: 470px!important}
  740. blockquote blockquote img{max-width: 450px!important}
  741. blockquote blockquote blockquote img{max-width: 430px!important}
  742. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  743.  
  744.  
  745. #container {text-align: center; width: 935px; margin: 20px auto 20px auto; padding: 0px; z-index: 1}
  746.  
  747. #entry {float: left; margin-left: 406px;}
  748.  
  749. .posts {width: 500px; background-color: {color:post}; padding: 10px; margin-bottom: 2px; text-align: justify; font-family: verdana; font-size: 11px; position: relative;}
  750.  
  751. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  752. h1 a {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  753. h1 a:hover {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  754.  
  755. .image {text-align: center; border: 0px}
  756. .image img {max-width: 500px; margin-bottom: 2px }
  757.  
  758. .pquote {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  759. .pquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  760. .pquotesource a, a:hover{text-transform: none;}
  761.  
  762. .chat {line-height: 13px; list-style: none }
  763. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  764. .person1 {color: {color:text}; padding: 2px; }
  765. .person1 .label {font-weight: bold;  color:{color:text}}
  766. .person2 {color: {color:text}; padding: 2px;  }
  767. .person2 .label {font-weight: bold;  color:{color:text}}
  768.  
  769. .player {background-color: #000; text-align: left; display:block;}
  770.  
  771. .credito {opacity: 0.2; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  772. .credito:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  773.  
  774. #info {text-align: left; margin-top:-4px; font-size: 10px; font-family: calibri; text-transform: uppercase; z-index: 11;}
  775. #info a {font-size: 10px; text-transform: uppercase;}
  776.  
  777. #tags {color: {color:text}; font-size: 10px; font-family: calibri;  display: inline; list-style: none; text-transform: uppercase;;}
  778. #tags a {font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  779.  
  780. #cap {width: 500px; margin-top: -2px;}
  781. .source {display: none;}
  782.  
  783. .notes {width: 520px; 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: 2px; padding: 5px; }
  786. .notes img{display: none; border:0px}
  787.  
  788. /* asker */
  789.  
  790. .asker {width: 480px; background-color: {color:background}; color:{color:text}; padding: 10px}
  791. .asker img{float: left; margin: 0px 4px 2px 0; }
  792. .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; }
  793. .asker a:hover{font-size: 11px; color:{color:linkhover}; text-transform: none; line-height:27px; padding: 0; margin: 0; font-family:verdana;}
  794. .answer {padding: 4px}
  795.  
  796. .answer img {max-width: 470px;}
  797.  
  798.  
  799.  
  800.  
  801.  
  802.  
  803. .arrow {padding-top:11px; color:{color:question background}; font-size:30px;}
  804.  
  805.  
  806. .answer {color:{color:answer};}
  807.  
  808. .credito {opacity: 0.2; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  809. .credito:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  810.  
  811. #info {text-align: left; margin-top:-4px; font-size: 10px; font-family: calibri; text-transform: uppercase; z-index: 11;}
  812. #info a {font-size: 10px; text-transform: uppercase;}
  813.  
  814. #tags {color: {color:text}; font-size: 10px; font-family: calibri;  display: inline; list-style: none; text-transform: uppercase;;}
  815. #tags a {font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  816.  
  817. #cap {width: 500px; margin-top: -2px;}
  818. .source {display: none;}
  819.  
  820. .notes {width: 520px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  821. ol.notes {list-style: none;  margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  822. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  823. .notes img{display: none; border:0px}
  824.  
  825. #damon {position: fixed; margin: 0px 0px 0px -287px;}
  826.  
  827.  
  828. #desc {z-index: 1;background-color:transparent;position:fixed;width:88px; height:45px; font-size:8px; font-family:tahoma; text-align:center; color:{color:text}; padding: 5px; margin-top:89px; margin-left:109px; overflow:hidden; text-transform:uppercase;}
  829.  
  830.  
  831.  
  832.  
  833. #pgs {text-align: center; font-family: verdana; font-size: 8px; line-height: 15px; -moz-border-bottom-left-radius: 10px; border-top-left-radius: 10px; z-index: 1}
  834. #pgs a {background: #000; margin: 30 0px 0 0; padding: 2px 4px; color: {color:background}; text-decoration: none;}
  835. #a:hover {background: {color:sidebar}; color: {color:link hover}; border: none;}
  836. #pgs span.pagina_atual {background: {color:border};  padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  837. .pg { position:fixed !important; clear: both; float: left; margin-top: 120px; margin-left: 100px; width: 207px; height: 15; font-size: 9px; padding: 2px;  background-color: {color:sidebar}; -moz-border-bottom-left-radius: 10px; border-bottom-left-radius: 10px; -moz-border-bottom-right-radius: 10px; border-bottom-right-radius: 10px; z-index: 1;}
  838.  
  839. #pagina{ margin-top: 368px; margin-left: 325px; width: 100px; float: right; background-color: transparent; position: fixed;  height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:1000000 }
  840.  
  841. /*** Paginação by madlyluv.com ***/
  842. #paginacaoml {font-size: 20px; font-family: tahoma; line-height: 24px;}
  843. #paginacaoml a {font-size: 20px; font-family: tahoma; background: transparent; margin: 0 1px 0 0; padding: 2px 2px; color: {color:tags}; text-decoration: none;}
  844. #paginacaoml a:hover {font-size: 20px; font-family: tahoma; background: transparent; border: none;}
  845. #paginacaoml span.pagina_atual {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none; font-weight: bold;}#paginacaoml span.info {background: {color:link}; margin: 0 1px 0 0; padding: 1px 2px; color: #cor da fonte; text-decoration: none;}
  846.  
  847.  
  848. #pagination {width:240px; font-family:georgia; text-align:right; font-size:15px; padding:4px; font-style:italic}
  849.  
  850. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  851.  
  852.  
  853. #photoxz{text-align: justify; font-size: 9px; font-family: verdana; position: relative; margin-left: 475px; width: 204px; height:330px; background-color: transparent; color: {color:text}; padding: 6px; margin-top: 0px; background-attachment: fixed;}
  854.  
  855.  
  856.  
  857. #imagesm5 {width:235px;height:220px; margin-top: 104px; margin-left:-30px;position:relative;display: inline-block; }
  858. #imagesm5 img {position:absolute; width:235px;height:220px;-webkit-transition-duration: .99s;}
  859. #imagesm5:hover img{  -webkit-transform:scale(0.0); -moz-transform:scale(0.0); -o-transform:scale(0.0);-webkit-transition-duration: .99s;} .imageside5 {float:centerwidth:250px;height:250px; border:2px solid #777; overflow:hidden; } #texto5 { width:230px;height:220px; background: {color:descr};margin-left:0px;opacity:1;margin-top:-12px;padding:4px;color:#fff;padding: 15px 2px 10px  2px ; }
  860.  
  861.  
  862.  
  863.  
  864.  
  865.  
  866.  
  867.  
  868.  /* links */
  869.  
  870. #thai1 {width:240px; height: 24px; float: left; margin-left:165px; margin-top: 339px; padding: 0px; text-align: center; position: fixed; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; border-bottom: 0px solid #000000; border-right: 0px solid {color:bglinks}; border-top: 1px solid #fff; border-bottom: 1px solid #fff;}
  871. #thai1 a {float: left; margin-left: 1px; font-family: georgia; font-size: 9px; text-align: center; margin-top: 3px; height: 18px; width: 59px; color:{color:text}; line-height: 19px; letter-spacing: 0px; text-transform: lowercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color: {color:bglinks}; text-transform: lowercase}
  872. #thai1  a:hover{text-align: center; color:{color:bglinks}; background-color: transparent; letter-spacing: -1px; -webkit-transform: rotate(360deg); text-shadow:0px 0px 7px #000;}
  873.  
  874.  
  875.  
  876.  
  877.  
  878.  
  879.  
  880. #bru1 {width:240px; height: 24px; float: left; margin-left:165px; margin-top: 81px; padding: 0px; text-align: center; position: fixed; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; border-bottom: 0px solid #000000; border-right: 0px solid #fff; border-top: 1px solid #fff; border-bottom: 1px solid #fff;}
  881. #bru1 a {float: left; margin-left: 1px; font-family: georgia; font-size: 9px; text-align: center; margin-top: 3px; height: 18px; width: 43px; color:{color:text}; line-height: 18px; letter-spacing: 0px; text-transform: lowercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color: {color:bglinks}; text-transform: lowercase}
  882. #bru1  a:hover{text-align: center; color:#ffffff; background-color: transparent; letter-spacing: -1px; -webkit-transform: rotate(360deg); text-shadow:0px 0px 7px #000;}
  883.  
  884.  
  885. #koala {width: 111px; text-align: center; margin-left:127px; font-family: georgia; font-size: 17px; color: {color:text}; letter-spacing: 0px; text-transform: none;}
  886.  
  887. #koala2 {width: 111px; text-align: center; margin-left:27px; margin-top:10px; font-family: verdana; font-size: 9px; color: {color:text}; letter-spacing: 0px; text-transform: none;}
  888.  
  889.  
  890.  
  891.  
  892.  
  893. #title {width: 215px; height: 10px; position:fixed;  margin-left: 245px; margin-top: 131px; rotate(-0deg);}
  894. .optitle{font-family:"luv"; font-size: 15px; font-style: none;
  895. line-height: 14px; font-weight: none; color: ; margin-top: -52px; margin-left: -5px;   text-transform: none; letter-spacing: 0px; -webkit-transform: rotate(-0deg); background-color: transp; padding:4px;}
  896.  
  897.  
  898.  
  899.  @font-face { font-family: "luv"; src: url('http://static.tumblr.com/jdjsstr/jAKm8lv4d/djb_jacked_up_kinda_luv_1_.ttf'); }
  900.  
  901.  
  902.  
  903. #senten {width:105px; margin-left:0px; margin-top:0px; margin-bottom:0px; margin-right:0px; font-family: georgia; font-size:18px; width:auto; text-align: center;}
  904.  
  905. ::-webkit-scrollbar{width:7px;height:0px;}
  906. ::-webkit-scrollbar-button:start:decrement
  907. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  908. ::-webkit-scrollbar-track-piece{background-color: {color:post}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  909. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  910. ::-webkit-scrollbar-thumb:horizontal{width:0px; background-color: {color:sidebar};-webkit-border-radius:px;}
  911.  
  912. #tumblr_controls{position: fixed!important}
  913. #tumblr_controls{position: fixed!important}
  914. #tumblr_controls{position: fixed!important}
  915. #tumblr_controls{position: fixed!important}
  916.  
  917.  
  918.  
  919.  
  920. </style>
  921.   <script language='JavaScript'>
  922. //Bloqueador de Tecla CTRL - iceBreaker http://www.icebreaker.com.br/
  923. function checartecla (evt)
  924. {if (evt.keyCode == &#39;17&#39;)
  925. {alert(&quot;Comando Desativado&quot;)
  926. return false}
  927. return true}
  928. </script>
  929.  
  930. <body>
  931.  
  932.  
  933. <script type="text/javascript" src="http://scmplayer.net/script.js" ></script>
  934. <script type="text/javascript">
  935. </script>
  936. <!--End of SCM Music Player script-->
  937.  
  938.  
  939. <div id="title">
  940. <center><div class="optitle">{text:titulo}</div></div>
  941.  
  942. <div id="thai1">
  943. <a href="{text:Link4}">{text:Link4 Title}</a>
  944. <a href="{text:Link5}">{text:Link5 Title}</a>
  945. <a href="{text:Link6}">{text:Link6 Title}</a>
  946. <a href="{text:Link7}">{text:Link7 Title}</a>
  947. </div>
  948.  
  949.  
  950.  
  951.  
  952.  
  953. <a style="font-size: 8px; font-family:tinytots;position:fixed;bottom:10px;left:175px; top:390px" href="http://umabonecaciumenta.tumblr.com/" title="umabonecaciumenta (c) dtlhs hugm-e and hyliar"> THEME BY UMABONECACIUMENTA ©</a>
  954.  
  955. <div id="ninhagatinha"></div>
  956.  <div id="sidbar"></div>
  957. </div>  
  958. <div id="container"></div></div>
  959. <div id="damon">
  960. <div id="photoxz">
  961. <div class="imagem" class="hover">
  962. <div id="imagesm5" class="imageside5"><img src="{image:sidebar}"class="image5">
  963. <div id="texto5">{Description}</div></div>
  964.  
  965. </div>
  966.  
  967.  
  968.  
  969.  
  970.  
  971. </div>
  972.  
  973.  
  974. </div></div>
  975.   </div>
  976. </div>
  977.  
  978. <div id="bru1">
  979. <a href="{text:Link1}">{text:Link1 Title}</a>
  980. <a href="{text:Link2}">{text:Link2 Title}</a>
  981. <a href="{text:Link3}">{text:Link3 Title}</a>
  982.  
  983. </div>
  984. </div></div>
  985.  
  986. <font color="{color:tags}">
  987. <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"alt="" title="previous page baby"></a>{/block:PreviousPage}{/block:Pagination}
  988.  
  989. {block:JumpPagination length="0"} {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage} {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}{block:Pagination}{block:NextPage}<a href="{NextPage}"alt="" title="next page baby"></a>{/block:NextPage}{/block:Pagination}</div></div>
  990.  
  991. <div id="entry">
  992.  
  993.  {block:Posts}
  994. <div class="posts">
  995.  
  996. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  997.  
  998. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  999.  
  1000. {block:Photoset}{Photoset-500}{/block:Photoset}
  1001.  
  1002. {block:Quote}
  1003. <div class="pquote">“{Quote}”</div>
  1004. {block:Source}<div class="pquotesource"> — {Source}</div>
  1005. {/block:Source}
  1006. {/block:Quote}
  1007.  
  1008. {block:Link}
  1009. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1010. {block:Description}{Description}{/block:Description}
  1011. {/block:Link}
  1012.  
  1013. {block:Chat}
  1014. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1015. <div class="chat"><ul>{block:Lines}
  1016. <li class="person{UserNumber}">{block:Label}
  1017. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1018. {/block:Chat}
  1019.  
  1020. {block:Audio}
  1021. <div class="player">{AudioPlayerBlack}</div>
  1022. {block:Caption}{Caption}{/block:Caption}
  1023. {/block:Audio}
  1024.  
  1025. {block:Video}{Video-500}{/block:Video}
  1026.  
  1027.  
  1028. {block:Answer}
  1029. <div class="asker"><img src="{AskerPortraitURL-30}" class="barbie"><b>{Asker}</b> me chupou gostoso e disse:<br><i>{Question}</i></div>
  1030. <div class="answer"><br>{Answer}</div>
  1031. {/block:Answer}
  1032.  
  1033.  
  1034. <div id="cap">
  1035. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1036. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1037. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1038.  
  1039. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1040.       <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1041.         {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1042. {/block:ContentSource}</div></div>
  1043. <br>
  1044.  
  1045. <div class="credito">
  1046. {block:Date}<div id="info">
  1047. <center> <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} · <a href="{Permalink}" {block:NoteCount}{/block:NoteCount}</a>{NoteCountWithLabel}</a>{block:RebloggedFrom} · <a href="{ReblogParentURL}"><a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom} {block:ContentSource} · <a href="{SourceURL}">source</a>{/block:ContentSource} {block:IndexPage}· <a href="{ReblogUrl}" target="_blank">reblog</a>{/block:IndexPage}</center> </div>{block:IfShowTags}<center><div id="tags">{block:HasTags}{block:Tags} #<a href="{TagUrl}">{Tag}</a>{/block:Tags}{/block:HasTags}
  1048. </div></center>{/block:IfShowTags}{/block:Date}</div>
  1049. </div>
  1050.  
  1051.  
  1052.  {/block:Posts}
  1053. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  1054.  
  1055.  
  1056.  
  1057. </div></div>
  1058.  
  1059. </body>
  1060. </html>
Advertisement
Add Comment
Please, Sign In to add comment