Advertisement
Guest User

i'm so sexy

a guest
Jul 5th, 2012
1,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.81 KB | None | 0 0
  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. <! theme by i-ngenuidade !>
  6.  
  7. <head>
  8.  
  9. <script type="text/javascript">
  10. //desabilita menu de opcoes ao clicar no botao direito
  11. function desabilitaMenu(e)
  12. {
  13. if (window.Event)
  14. {
  15. if (e.which == 2 || e.which == 3)
  16. return false;
  17. }
  18. else
  19. {
  20. event.cancelBubble = true
  21. event.returnValue = false;
  22. return false;
  23. }
  24. }
  25.  
  26. //desabilita botao direito
  27. function desabilitaBotaoDireito(e)
  28. {
  29. if (window.Event)
  30. {
  31. if (e.which == 2 || e.which == 3)
  32. return false;
  33. }
  34. else
  35. if (event.button == 2 || event.button == 3)
  36. {
  37. event.cancelBubble = true
  38. event.returnValue = false;
  39. return false;
  40. }
  41. }
  42.  
  43. //desabilita botao direito do mouse
  44. if ( window.Event )
  45. document.captureEvents(Event.MOUSEUP);
  46. if ( document.layers )
  47. document.captureEvents(Event.MOUSEDOWN);
  48.  
  49. document.oncontextmenu = desabilitaMenu;
  50. document.onmousedown = desabilitaBotaoDireito;
  51. document.onmouseup = desabilitaBotaoDireito;
  52. </script>
  53.  
  54. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  55.  
  56. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  57.  
  58. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  59. <script type="text/javascript">
  60. function slideSwitch() {
  61. var $active = $('#slideshow2 img.active');
  62.  
  63. $active.addClass('last-active');
  64.  
  65. // verifica se existe um próximo objeto na div #slideshow2, caso ele nao exista, retorna para o primeiro
  66. var $next = $active.next().length ? $active.next() : $('#slideshow2 img:first');
  67.  
  68. $next.css({opacity: 0.0})
  69. .addClass('active')
  70. .animate({opacity: 1.0}, 1000, function() {
  71. $active.removeClass('active last-active');
  72. });
  73. }
  74.  
  75. $(function() {
  76. //Executa a função a cada 2 segundos
  77. setInterval( "slideSwitch()", 2500 );
  78. });
  79. </script>
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. <script type="text/javascript">
  88.  
  89.  
  90. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  91.  
  92.  
  93.  
  94.  
  95. function tb8_makeArray(n){
  96.  
  97.  
  98. this.length = n;
  99.  
  100.  
  101. return this.length;
  102.  
  103.  
  104. }
  105.  
  106.  
  107.  
  108.  
  109. tb8_messages = new tb8_makeArray(1);
  110.  
  111.  
  112.  
  113.  
  114. tb8_messages[0] = "{Title}";
  115.  
  116.  
  117.  
  118.  
  119. tb8_rptType = 'infinite';
  120.  
  121.  
  122.  
  123.  
  124. tb8_rptNbr = 5;
  125.  
  126.  
  127.  
  128.  
  129. tb8_speed = 100;
  130.  
  131.  
  132.  
  133.  
  134. tb8_delay = 2000;
  135.  
  136.  
  137.  
  138.  
  139. var tb8_counter=1;
  140.  
  141.  
  142.  
  143.  
  144. var tb8_currMsg=0;
  145.  
  146.  
  147.  
  148.  
  149. var tb8_tekst ="";
  150.  
  151.  
  152.  
  153.  
  154. var tb8_i=0;
  155.  
  156.  
  157.  
  158.  
  159. var tb8_TID = null;
  160.  
  161.  
  162.  
  163.  
  164. function tb8_pisi(){
  165.  
  166.  
  167.  
  168.  
  169. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  170.  
  171.  
  172.  
  173.  
  174. document.title = tb8_tekst;
  175.  
  176.  
  177.  
  178.  
  179. tb8_sp=tb8_speed;
  180.  
  181.  
  182.  
  183.  
  184. tb8_i++;
  185.  
  186.  
  187.  
  188.  
  189. if (tb8_i==tb8_messages[tb8_currMsg].length){
  190.  
  191.  
  192.  
  193.  
  194. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  195.  
  196.  
  197.  
  198.  
  199. }
  200.  
  201.  
  202.  
  203.  
  204. if (tb8_currMsg == tb8_messages.length){
  205.  
  206.  
  207.  
  208.  
  209. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  210.  
  211.  
  212.  
  213.  
  214. clearTimeout(tb8_TID);
  215.  
  216.  
  217.  
  218.  
  219. return;
  220.  
  221.  
  222.  
  223.  
  224. }
  225.  
  226.  
  227.  
  228.  
  229. tb8_counter++;
  230.  
  231.  
  232.  
  233.  
  234. tb8_currMsg = 0;
  235.  
  236.  
  237. }
  238.  
  239.  
  240.  
  241.  
  242. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  243.  
  244.  
  245.  
  246.  
  247. }
  248.  
  249.  
  250.  
  251.  
  252. tb8_pisi()
  253.  
  254.  
  255.  
  256.  
  257. </script>
  258.  
  259.  
  260.  
  261. <!-- DEFAULT VARIABLES -->
  262. <meta name="color:background" content="#f8f8f8" />
  263. <meta name="color:link" content="#000000" />
  264. <meta name="color:bgfrase" content="#000000" />
  265. <meta name="color:text" content="#000000" />
  266. <meta name="color:post" content="#ffffff" />
  267. <meta name="color:border" content="#000000" />
  268. <meta name="color:frase" content="#ffffff" />
  269. <meta name="color:scroll" content="#000000" />
  270. <meta name="color:ask" content="#ebebeb" />
  271. <meta name="color:bgdescription" content="#ebebeb" />
  272. <meta name="color:textdescription" content="#000" />
  273. <meta name="color:links" content="#000" />
  274. <meta name="color:tags" content="#000" />
  275. <meta name="color:linkbg" content="#ffffff" />
  276. <meta name="color:linktext" content="#000" />
  277. <meta name="color:linktext1" content="#000" />
  278. <meta name="color:linkbghover" content="#000" />
  279. <meta name="color:linktexthover" content="#fff" />
  280. <meta name="color:bgpage" content="#EEEEEE" />
  281. <meta name="color:xizinhodoslinks" content="#FF1493" />
  282. <meta name="color:link1" content="#ffffff" />
  283. <meta name="color:link2" content="#ffffff" />
  284.  
  285. <meta name="color:maislinkhover" content="#ffffff" />
  286. <meta name="color:fundo" content="#ffffff" />
  287.  
  288.  
  289.  
  290. <meta name="image:background" content="" />
  291. <meta name="image:fotinha" content="http://24.media.tumblr.com/tumblr_m506qgl9Oi1rojnc3o2_250.jpg"/>
  292.  
  293. <meta name="font:text" content="verdana" />
  294. <meta name="font:title" content="georgia" />
  295.  
  296. <meta name="text:titulo" content="um frase linda feat fofa aqui " />
  297.  
  298. <meta name="text:link1" content="/" />
  299. <meta name="text:Link1 Title" content="link" />
  300. <meta name="text:Link2" content="/" />
  301. <meta name="text:Link2 Title" content="link" />
  302. <meta name="text:Link3" content="/" />
  303. <meta name="text:Link3 Title" content="link" />
  304. <meta name="text:Link4" content="/" />
  305. <meta name="text:Link4 Title" content="link" />
  306. <meta name="text:Link5" content="/" />
  307. <meta name="text:Link5 Title" content="link" />
  308. <meta name="text:Link6" content="/" />
  309. <meta name="text:Link6 Title" content="link" />
  310. <meta name="text:Link7" content="/" />
  311. <meta name="text:Link7 Title" content="link" />
  312.  
  313.  
  314.  
  315.  
  316.  
  317. <title>{Title}</title>
  318. <link rel="shortcut icon" href="{Favicon}">
  319. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  320. {block:Description}
  321. <meta name="description" content="{MetaDescription}" />
  322. {/block:Description}
  323.  
  324.  
  325. <style type="text/css">
  326.  
  327.  
  328. body {background-color: {color:background}; font-family: georgia; color: {color:text}; text-align: center; font-size: 9px; background-image:url('{image:background}'); background-attachment: fixed; }
  329.  
  330. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  331.  
  332. p {margin: 6px 0 0 0}
  333.  
  334. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  335. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  336. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  337. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  338.  
  339. blockquote img{max-width: 470px!important}
  340. blockquote blockquote img{max-width: 450px!important}
  341. blockquote blockquote blockquote img{max-width: 430px!important}
  342. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  343. .qquote{font-family: Georgia; font-size: 15px; letter-spacing: 0px; line-height: 18px; text-transform: none; text-align: center;
  344.  
  345. }
  346. .qsource{margin-top: 5px; margin-right: 15px;text-align: right}
  347.  
  348. #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width: 935px; position:fixed; }
  349.  
  350. #entries{float: left; margin-left:320px; margin-top: 20px; position: relative; border-left: 0px solid {color:background}; z-index:1000; }
  351.  
  352. #msd {width: 350px; height: 350px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar};}
  353.  
  354.  
  355.  
  356. .danpost {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: tahoma; font-size: 11px;}
  357.  
  358. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  359. h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link}; font-weight: normal; line-height: 18px;}
  360. h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  361.  
  362. .image {text-align: center; border: 0px}
  363. .image img {max-width: 500px; margin-bottom: 2px }
  364.  
  365. .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  366. .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  367. .oiqqtts a, a:hover{text-transform: none;}
  368.  
  369. .chat {line-height: 13px; list-style: none }
  370. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  371. .person1 {color: {color:text}; padding: 2px; }
  372. .person1 .label {font-weight: bold; color:{color:text}}
  373. .person2 {color: {color:text}; padding: 2px; }
  374. .person2 .label {font-weight: bold; color:{color:text}}
  375.  
  376. .player {background-color: #000; text-align: left; display:block;}
  377.  
  378. /* asker */
  379.  
  380. .asker {width: 480px; background-color: transparent; color:#969696; padding: 5px;}
  381. .asker img{float: left; padding: 0px 5px 0px 0px}
  382. .asker a{font-size: 11px; font-weight: bold; color:#969696; text-transform: lowercase; line-height: 11px; padding: 0; margin: 0}
  383. .asker a:hover{font-size: 11px; font-weight: bold; color:#969696; background-color: transparent; text-transform: uppercase; line-height:11px; padding: 0; margin: 0}
  384. .question {font-size: 10px;}
  385. .answer {padding: 4px}
  386. .answer img {max-width: 470px;}
  387.  
  388. .bg {width: 480px; background-color: {color:entrie}; color:{color:text}; margin-top: 5px; padding-right: 10px; padding-left: 5px; padding-top: 2px; padding-bottom: 3px; border-radius:8px;}
  389.  
  390. #info{margin-top: 15px; }
  391. #info a{color: {color:link} !important}
  392. #info a:hover{color:{color:linkhover}!important}
  393. .tags{font-size: 10px; display: inline; text-align: left;text-transform: lowercase;}
  394.  
  395. .source{display:none}
  396.  
  397. #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  398. #oidata a {font-size: 9px;}
  399.  
  400. #oidata2 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-24px;}
  401. #oidata2 a {font-size: 9px;}
  402.  
  403. #oidata3 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-14px; }
  404. #oidata3 a {font-size: 9px;}
  405.  
  406. .tags {color: {color:text}; font-size: 9px; font-family: {font:text}; display: inline; list-style: none; text-transform: lowercase;}
  407. .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  408.  
  409. #cap {width: 500px; margin-top: -2px;}
  410. .source {display: none;}
  411.  
  412. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  413. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  414. ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  415. .notes img{display: none; border:0px}
  416.  
  417. .question {
  418. color: {color:text};
  419. font-size: 9px;
  420. font-weight: normal;
  421. font-family: {font:body};
  422. line-height:95%;
  423. background: {color:ask};
  424. margin: 0 0 10px 0;
  425. padding: 10px 15px;
  426. position: relative;}
  427.  
  428. .questionarrow {
  429. width: 13px;
  430. height: 7px;
  431. font-size:30px;
  432. font-family: verdana;
  433. position: absolute;
  434. color: {color:ask};
  435. bottom: -3.5px;
  436. left: 240px;}
  437.  
  438.  
  439.  
  440.  
  441.  
  442. .fj {font-size: 130px; font-family: arial; line-height: 95px; margin-left: 5px; color: {color: titulos posts}; opacity:0.15; -moz-opacity: 0.15; filter: alpha(opacity=15);}
  443. .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  444.  
  445. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  446.  
  447. #barra2 {width:136px; height:12px; margin-top:88px; margin-left: 120px; position:fixed; padding:4px; font-size: 12px; font-family: georgia; text-transform: lowercase; color: {color:frase}; text-align: center; z-index:10000000}
  448.  
  449. #chocolate {width:110px; height:3px; margin-top:93px; margin-left: 190px; background-color: transparent; position:fixed; font-size: 15px; pacity:0.9; z-index:100000; }
  450.  
  451. #chuchu {width:10px; height:130px; margin-top:145px; margin-left: 175px; background-color: {color:text}; position:fixed; font-size: 15px; pacity:0.9; z-index:100000; }
  452.  
  453. #chuchus {width:90px; height:8px; margin-top:195px; margin-left: 137px; background-color: {color:text}; position:fixed; font-size: 15px; pacity:0.9; z-index:100000; }
  454.  
  455.  
  456. #heey {width:200px; height:340px; margin-top:80px; margin-left: 83px; background-color: {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  457.  
  458.  
  459. #safadinha {position: fixed; width:300px; margin-left:230px; margin-top:352px; z-index:100}
  460.  
  461. .baunilha {width:80px; height:12px; background-color: {color:background}; position:fixed; color: {color:text}; font-size: 18px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index: 1000; -webkit-transition: all 0.6s ease; z-index:0 }
  462. .baunilha:hover {text-align: center; background-color: {color:background}; color:{color:frase}; letter-spacing:0px; z-index:900}
  463.  
  464. .baunilha:hover #bumbum {margin-top:-25px;height:auto; margin-left:-10px;}
  465.  
  466. #bumbum { float:left; display:block; width:190px; height: auto; margin-left: 140px; color:{color:text sidebar}; font-family:verdana; font-size:9px; text-align:justify; padding:1px; margin-top:-25px; opacity:0.9; overflow:hidden; -webkit-transition: all 0.6s ease;
  467. text-align: justify; }
  468. #bumbum a {text-align: center; margin-top:1px; margin-bottom: -2px; font-family: tahoma; font-size: 10px; color: {color:text}; letter-spacing: 0px; text-transform: none; -webkit-transition: 0.4s ease-in;-moz-transition: 0.4s ease-in; transition: 0.4s ease-in; }
  469. #bumbum a:hover{background-color:transparent; color:{color:maislinkhover}; font-weight: bold;}
  470.  
  471.  
  472.  
  473.  
  474.  
  475. #tchetche {width:80px; height:12px; margin-top:413px; margin-left: 81px; background-color: transparent; position:fixed; color: {color:text}; font-size: 13px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index:1000 }
  476. #tchetche2 {width:80px; height:12px; margin-top:70px; margin-left: 81px; background-color: transparent; position:fixed; color: {color:text}; font-size: 13px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index:1000 }
  477.  
  478. #chupa {width:1px; height:102px; margin-top:70px; margin-left: 80px; background-color: transparent; position:fixed; color: {color:text}; font-size: 13px; font-family: give you glory; text-transform: lowercase; text-align: center; z-index:1000 }
  479.  
  480.  
  481.  
  482. #barra3 {width:10px; height:12px; margin-top:88px; margin-left: 145px; background-color: transparent; position:fixed; padding:4px; font-size: 40px; font-family: Give You Glory; text-transform: lowercase; color: {color:text}; text-align: right; -moz-transform: rotate(-25deg);-webkit-transform: rotate(-25deg);-o-transform: rotate(-25deg);-ms-transform: rotate(-15deg);transform: rotate(-10deg);}
  483.  
  484.  
  485. #sideimg {display: block; margin-left: 202px; float: right; margin-top: 19px; width: auto; height: auto; background-color: transparent; position: fixed; z-index:30;}
  486. .simg1 img {width: 135px; height: 160px; margin-bottom: 2px; border: 4px solid {color:fundinho};}
  487.  
  488. #pag {width: 15px; padding:1px; background-color: {color:bgpage}; position:fixed; text-align: center; margin-top: 100px; margin-left: 119px;}
  489.  
  490. #cruz {position: fixed; margin: 200px 0px 0px 60px; }
  491.  
  492. #acruz {width: 39px; position: absolute; margin-left: -92px; margin-top: -365px; color: {color:cruz}; font-size: 60px; -webkit-transform: rotate(-20deg);}
  493. #acruz:hover { -webkit-transform: rotate(0deg);}
  494.  
  495. #home {width: 24px; position: fixed; float: left; font-size: 9px; font-family: tahoma; color: {color:cruz}; padding: 5px; height: 24px; margin-left: 110px; rotation: 10px; margin-top: 280px; margin-top: 185px; -moz-border-bottom-left-radius: 0px; border-bottom-left-radius: 0px; z-index: 20;}
  496.  
  497.  
  498. #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}
  499. #pgs a {background: #000; margin: 30 0px 0 0; padding: 2px 4px; color: {color:background}; text-decoration: none;}
  500. #a:hover {background: {color:sidebar}; color: {color:link hover}; border: none;}
  501. #pgs span.pagina_atual {background: {color:border}; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  502. .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;}
  503.  
  504. #pagina{ margin-top: 412px; margin-left: 130px; width: 100px; float: right; background-color: transparent; position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:1000000 }
  505.  
  506. /*** Paginação by madlyluv.com ***/
  507. #paginacaoml {font-size: 20px; font-family: tahoma; line-height: 24px;}
  508. #paginacaoml a {font-size: 20px; font-family: tahoma; background: transparent; margin: 0 1px 0 0; padding: 2px 2px; color: {color:tags}; text-decoration: none;}
  509. #paginacaoml a:hover {font-size: 20px; font-family: tahoma; background: transparent; border: none;}
  510. #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;}
  511.  
  512.  
  513. #pagination {width:240px; font-family:georgia; text-align:right; font-size:15px; padding:4px; font-style:italic}
  514.  
  515.  
  516. #side {position: fixed; width:210px; margin-left:100px; margin-top:80px; z-index:100}
  517.  
  518. .photo {position:absolute; width:160px; padding:0px; background-color:{color:sidebar}; overflow: hidden;-webkit-transition: all 0.6s ease; margin-top:50px; border: 2px solid {color:border}; }
  519. .photo:hover {opacity:0.7;-webkit-transition: all 0.6s ease;}
  520. .photo img {display: block;width:160px; height:200px; }
  521.  
  522. .photo:hover #upupup {margin-top:11px;height:auto; margin-left:25px;}
  523.  
  524. #upupup {position:absolute;float:left; display:block; width:120px; height: auto; margin-left: 140px; color:{color:text sidebar}; font-family:verdana; font-size:9px; text-align:center; padding:1px; margin-top:11px; opacity:0.9; overflow:hidden; -webkit-transition: all 0.6s ease;}
  525. #upupup a { display:block; width:100px; line-height:9px; padding:5px;background-color:{color:linkbg}; color:{color:linktext}; margin-bottom: 1px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  526. #upupup a:hover{background-color:transparent; color:{color:linktexthover}; font-weight: bold;}
  527.  
  528.  
  529.  
  530.  
  531.  
  532. .li {opacity: 1}
  533. .li2 {opacity: 0.8}
  534. .li3 {opacity: 0.6}
  535. .li4 {opacity: 0.8}
  536. .li5 {opacity: 1}
  537.  
  538. #kitty {width: 160px; text-align: center; margin-top:137px; margin-bottom: -2px; font-family: verdana; font-size: 9px; color: {color:text}; letter-spacing: 0px; text-transform: none; -webkit-transition: 0.4s ease-in;-moz-transition: 0.4s ease-in; transition: 0.4s ease-in; margin-left: 15px;}
  539.  
  540. #kitty a:hover{ opacity: 0.8; }
  541.  
  542.  
  543. #faixa {margin-top: 50px; margin-left: -10px; position: fixed; background-color: {color:bobsponja}; height: 140px; width:354px; }
  544.  
  545. #faixa2 {margin-top: -50px; margin-left: 50px; position: fixed; background-color: {color:bobsponja}; height: 2000px; width:30px; }
  546.  
  547. @font-face {
  548. font-family: 'Give You Glory';
  549. font-style: normal;
  550. font-weight: norAmal;
  551. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  552. }
  553.  
  554.  
  555. #title {width: 215px; height: 55px; position: fixed; background-color:transparent; margin-left: 120px; margin-top: 55px; }
  556. .optitle{font-family: Give You Glory; font-size: 15px; font-style: none;
  557. line-height: 15px; font-weight: none; color: #777777; margin-top: 10px; margin-left: -5px; text-transform: none; letter-spacing: 0px}
  558.  
  559.  
  560. #links {width: 10px; float: left; margin-left: 99px; margin-top: -121px; padding: 0px; text-align: center; position: fixed; padding: 0px; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out; z-index:10000}
  561.  
  562. #links a {float: left; margin-left: 1px; display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; width: 22px; background-color: {color:link1}; color:{color:linktext}; text-decoration: none; line-height: 18px; height: 18px; overflow: hidden; margin-top: 220px; margin-bottom: 1px; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out;}
  563.  
  564. #links a:hover{text-align: center; background-color: {color:barrinha}; color:{color:letradabarrinha}; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out;}
  565.  
  566. #textv {width:150px; height: 50px; margin-left:100px; margin-top:350px; position:fixed; overflow:hidden; color: {color:textdescription}; z-index: 10000; font-family: tahoma; font-size:10px;text-transform: lowercase; border-left:0px solid; border-right:0px solid; padding:3px; width: 158px; height:60px; border: 0px solid {color:border};}
  567.  
  568. #masoq{text-align: justify; font-size: 9px; font-family: verdana; position: fixed; margin-left: 68px; width: 20px; height: 134px; background-color: {linkbg}; color: #838383; padding: 6px; margin-top: 59px; background-attachment: fixed;}
  569.  
  570. #emcima {z-index: 90; margin-top: 900px; background-color:{color:background}; width: 1320px; height: 50px; padding: 0px; position: fixed; margin-left: 100px;}
  571. #emcima2 { width: 696px; -webkit-border-radius: 0px 0px 0px 0px; margin-left: 261px; height: 1px; margin-top: 0px; float:left; text-align: right; background-color: {color:sidebar}; font-size: 9px; position:fixed; padding: 5px; color: {color:text}; font-family: {font:text}}
  572.  
  573. #oie {position: fixed; margin-left: 0px; margin-top: 100px; display: none;}
  574.  
  575. #bebezinha {position: absolute; width: 200px; margin-left: -10px; margin-top: -176px; padding: 0px; text-align: center; z-index:3;}
  576. #bebezinha a {float: left; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-right: 0px; margin-bottom: 0px;margin-top: 247px; width: 46px; background-color: {color:bglink}; color: {color:linktext}; text-decoration: none; text-transform: uppercase; height: 18px; line-height: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  577. #bebezinha a:hover{text-align: center; background-color: {color:linkbghover}; color: {color:linksshover};text-shadow:6px 5px 9px #000;}
  578.  
  579.  
  580. #bebezinha2 {position: absolute; margin-left: -88px; margin-top: 450px; padding: 0px; text-align: center; z-index:3;}
  581. #bebezinha2 a {float: left; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-right: 0px; margin-bottom: 1px;margin-top: 217px; width: 48px; background-color: {color:linkbg}; color: {color:linktext}; text-decoration: none; text-transform: uppercase; height: 20px; line-height: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  582. #bebezinha2 a:hover{text-align: center; background-color: {color:linkbghover}; color: {color:linktexthover};text-shadow:6px 5px 9px #000; }
  583.  
  584.  
  585.  
  586.  
  587. .links1 {position: absolute; width: 20px; margin-left:26px; margin-top:270px; padding: 0px; text-align: center; z-index:3;}
  588. .links1 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 40px; background-color: {color:link1}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase; line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  589. .links1 a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  590.  
  591. .links2 {position: absolute; width: 20px; margin-left:67px; margin-top:270px; padding: 0px; text-align: center; z-index:3;}
  592. .links2 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 40px; background-color: {color:link2}; color: {color:linktext}; text-decoration: none; text-transform:uppercase; line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  593. .links2 a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  594.  
  595. .links3 {position: absolute; width: 20px; margin-left:108px; margin-top:270px; padding: 0px; text-align: center; z-index:3;}
  596. .links3 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 40px; background-color: {color:link1}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase; line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  597. .links3 a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  598.  
  599. .links4 {position: absolute; width: 20px; margin-left:149px; margin-top:270px; padding: 0px; text-align: center; z-index:3;}
  600. .links4 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 40px; background-color: {color:link2}; color: {color:linktext}; text-decoration: none; text-transform:uppercase; line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  601. .links4 a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  602.  
  603. .links5 {position: absolute; width: 20px; margin-left:33px; margin-top:49px; padding: 0px; text-align: center; z-index:3;}
  604. .links5 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 30px; background-color: {color:link2}; color: {color:linktext}; text-decoration: none; text-transform:uppercase; line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  605. .links5 a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  606.  
  607. .links6 {position: absolute; width: 20px; margin-left:80px; margin-top:49px; padding: 0px; text-align: center; z-index:3;}
  608. .links6 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 42px; background-color: {color:link1}; color: {color:linktext1}; text-decoration: none; text-transform:uppercase; line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  609. .links6 a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  610.  
  611. .links7 {position: absolute; width: 20px; margin-left:128px; margin-top:49px; padding: 0px; text-align: center; z-index:3;}
  612. .links7 a {float: left; display: block; letter-spacing: 0px; font-size:13px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 40px; background-color: {color:link2}; color: {color:linktext}; text-decoration: none; text-transform:uppercase; line-height:15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  613. .links7 a:hover{text-align: center; background-color: {color:linkbghover}; color:{color:linktexthover}; letter-spacing:0px; transform: rotateY(180deg); -webkit-transform: rotateX(180deg); opacity: 0.3}
  614.  
  615.  
  616. #sdbarsi {font-family: verdana; color: {color:textdescription}; font-size:7px; padding: 3px 3px 4px 3px; width: 110px; height: 7px; margin-top: 200px; margin-left: 220px; font-family: arial; z-index: 200; position: fixed; text-align: center; text-transform: uppercase; letter-spacing: 1px}
  617. #sdbarsi a{font-family: arial; font-size: 8px; letter-spacing: 1px}
  618.  
  619. #credit {width: 170px; margin-left: -0px; height: 9px; margin-top: 230px; float:left; text-align: center; font-size: 10px; position:fixed; padding: 4px; font-family:tahoma; color:{color:frase}; overflow:hidden; z-index:1000; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; -webkit-transform: rotate(270deg);}
  620.  
  621. #credit:hover { opacity:0.7; color:{color:linktext}; }
  622.  
  623. .credittex {margin-top: -2px; letter-spacing: 0px; text-align: center; font-family: tahoma; font-size: 10px; color:#000; }
  624. .credittex a{color:{color:frase};}
  625.  
  626.  
  627. .credit {
  628. position:fixed !important;
  629. margin-left: 1028px;
  630. margin-top: 1000px;
  631. margin-bottom: -5px;
  632. font-size: 9px;
  633. width: 49px;
  634. height: 15px;
  635. padding: 1px 3px 3px 2px;
  636. font-family: verdana;
  637. color: #000000;
  638. text-align: center;
  639. background-color: {color:sidebar};
  640. -webkit-transition: all 0.5s ease;
  641. }
  642.  
  643. ::-webkit-scrollbar{width:5px;height:5px;}
  644. ::-webkit-scrollbar-button:start:decrement
  645. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  646. ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  647. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  648. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  649.  
  650. #tumblr_controls{position: fixed!important}
  651. #tumblr_controls{position: fixed!important}
  652. #tumblr_controls{position: fixed!important}
  653. #tumblr_controls{position: fixed!important}
  654.  
  655.  
  656.  
  657.  
  658. </style>
  659.  
  660. </head>
  661.  
  662.  
  663. <body>
  664.  
  665.  
  666.  
  667.  
  668. <div id="tudo">
  669. <div id="msd">
  670. </div>
  671.  
  672.  
  673.  
  674. <div id="heey"></div>
  675. <div id="chocolate"></div>
  676. <div id="chuchu"></div>
  677. <div id="chuchus"></div>
  678.  
  679. <div id="barra2">{text:titulo} <font color= {color:tags}></font></div></big></big>
  680.  
  681. <div id="tchetche">۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰</div>
  682. <div id="tchetche2">۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰۰</div>
  683.  
  684.  
  685.  
  686.  
  687.  
  688. </div></div>
  689.  
  690.  
  691.  
  692. <div id="side">
  693.  
  694. <div class="photo">
  695. <div id="upupup">
  696.  
  697. </div>
  698. <img src="{image:fotinha}">
  699. </div></div>
  700.  
  701. <div id="masoq">
  702.  
  703. <div class="links1"> <a href="{text:Link1}" title="">{text:Link1 Title}</a> </div>
  704. <div class="links2"> <a href="{text:Link2}" title="">{text:Link2 Title}</a> </div>
  705. <div class="links3"> <a href="{text:Link3}" title="">{text:Link3 Title}</a> </div>
  706. <div class="links4"> <a href="{text:Link4}" title="">{text:Link4 Title}</a> </div>
  707.  
  708.  
  709.  
  710. </div></div>
  711.  
  712. <div id="textv">{description}</div>
  713.  
  714.  
  715.  
  716. <div id="emcima">
  717. </div>
  718.  
  719.  
  720. <li class="drawer" id="links">
  721. <a href="/" onclick="oie.style.display='block'; return false;">+ (click +)</a>
  722. <div id="oie">
  723.  
  724. <div id="bebezinha">
  725. <div class="links5"> <a href="{text:Link5}">{text:Link5 Title}</a> </div>
  726. <div class="links6"> <a href="{text:Link6}">{text:Link6 Title}</a> </div>
  727. <div class="links7"> <a href="{text:Link7}">{text:Link7 Title}</a> </div>
  728. </div>
  729. </div></div>
  730. </div>
  731. </div>
  732. </div>
  733. </li></div>
  734. </div></div>
  735. </div>
  736. </div>
  737. </div>
  738.  
  739. <div id="emcima2">
  740.  
  741.  
  742. <div></div>
  743.  
  744. <div id="bebezinha2">
  745.  
  746. </div>
  747. </div></div>
  748.  
  749. <div id="cruz">
  750. <div id="acruz"></div>
  751.  
  752. </div>
  753. <font color="{color:tags}">
  754. <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"alt="" title="previous page baby">«</a>{/block:PreviousPage}{/block:Pagination}
  755.  
  756. {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>
  757.  
  758. </div>
  759. </font>
  760.  
  761.  
  762.  
  763. <div id="credit"><div class: "credittex"></a></a> <a href="http://i-ngenuidade.tumblr.com" title="u.u você por aqui"> <font color="#000000"> theme by i-ngenuidade </font></a><font color="#FF1493">©</font> <a href="http://hugm-e.tumblr.com/"><font color="{color:fundo}"> </a></div></font>
  764.  
  765. </a></div>
  766. <div id="entries">
  767. {block:Posts}
  768. <div class="danpost">
  769.  
  770. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  771.  
  772. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  773.  
  774. {block:Photoset}{Photoset-500}{/block:Photoset}
  775.  
  776. {block:Quote}
  777. <div class="qquote"alt="" title="delicate" >"{Quote}"</div>
  778. {block:Source}<div class="qsource"alt="" title="via" ><font color="{color:tags}">~ {Source}</font> ♡ </div>{/block:Source}
  779. {/block:Quote}
  780.  
  781. {/block:quote}
  782.  
  783. {block:Link}
  784. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  785. {block:Description}{Description}{/block:Description}
  786. {/block:Link}
  787.  
  788. {block:Chat}
  789. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  790. <div class="chat"><ul>{block:Lines}
  791. <li class="person{UserNumber}">{block:Label}
  792. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  793. {/block:Chat}
  794.  
  795. {block:Audio}
  796. <div class="player">{AudioPlayerBlack}</div>
  797. {block:Caption}{Caption}{/block:Caption}
  798. {/block:Audio}
  799.  
  800. {block:Video}{Video-500}{/block:Video}
  801.  
  802.  
  803. {block:Answer}
  804. <div id="asker"alt="" title="this asked" >{Asker} <b>said to me:</b> {Question}</div>
  805. <div class="answer"alt="" title="eu respondi nha' " >{Answer}</div>
  806. {/block:Answer}
  807.  
  808. <div id="cap">
  809. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  810. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  811. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  812.  
  813. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  814. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  815. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  816. {/block:ContentSource}</div></div>
  817.  
  818. <div class="bg">
  819. <div class="tags"><b>in(direct):</b> {block:HasTags}{block:Tags}<font color="{color:tags}"># </font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  820.  
  821. <div class="tags">
  822. {block:Date}<a href="{Permalink}">{TimeAgo} . </a> {/block:Date} {block:NoteCount} <a href="{Permalink}"alt="" title="this is good" >{NoteCountWithLabel} <font color= {color:tags}>♥</font> </a>{/block:NoteCount}<div style="float:right;" class="details">{Block:IndexPage} <a href="{ReblogURL}" target="_blank" alt="" title="reblog this baby? i do a streep tease, hahahahaha" > reblog <img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class=" alt="" title="reblog this baby? i do a streep tease, hahahahaha" > </a>{/Block:IndexPage}<br></div><BR>{block:RebloggedFrom}<font color= {color:tags}>originally</font>: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  823. </span> {/block:RebloggedFrom}<div style="float:right;" class="details">{block:RebloggedFrom}<font color= {color:tags}>via</font>: <a href="{ReblogParentURL}">{ReblogParentName}</a><br>{/block:RebloggedFrom}</div>
  824. </div>
  825.  
  826.  
  827.  
  828. </div></div>
  829. {/block:Date}
  830.  
  831.  
  832. {/block:Posts}
  833. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  834.  
  835.  
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842. </div>
  843. </div>
  844. </div>
  845. </div>
  846. </div>
  847. </div>
  848.  
  849. </body>
  850. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement