d-esumana

Theme 15

Oct 13th, 2012
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 62.22 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 lizz, d-esumana
  6. DONT COPY (c) !>
  7.  
  8. <head>
  9.  
  10. <script type="text/javascript">
  11. //desabilita menu de opcoes ao clicar no botao direito
  12. function desabilitaMenu(e)
  13. {
  14. if (window.Event)
  15. {
  16. if (e.which == 2 || e.which == 3)
  17. return false;
  18. }
  19. else
  20. {
  21. event.cancelBubble = true
  22. event.returnValue = false;
  23. return false;
  24. }
  25. }
  26.  
  27. //desabilita botao direito
  28. function desabilitaBotaoDireito(e)
  29. {
  30. if (window.Event)
  31. {
  32. if (e.which == 2 || e.which == 3)
  33. return false;
  34. }
  35. else
  36. if (event.button == 2 || event.button == 3)
  37. {
  38. event.cancelBubble = true
  39. event.returnValue = false;
  40. return false;
  41. }
  42. }
  43.  
  44. //desabilita botao direito do mouse
  45. if ( window.Event )
  46. document.captureEvents(Event.MOUSEUP);
  47. if ( document.layers )
  48. document.captureEvents(Event.MOUSEDOWN);
  49.  
  50. document.oncontextmenu = desabilitaMenu;
  51. document.onmousedown = desabilitaBotaoDireito;
  52. document.onmouseup = desabilitaBotaoDireito;
  53. </script>
  54.  
  55. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  56. <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Dosis|Inconsolata' rel='stylesheet' type='text/css'>
  57.  
  58.  
  59.  
  60. <link href='http://fonts.googleapis.com/css?family=Engagement' rel='stylesheet' type='text/css'>
  61.  
  62. <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
  63.  
  64. <link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
  65.  
  66. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  67.  
  68. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  69. <script type="text/javascript">
  70. function slideSwitch() {
  71. var $active = $('#slideshow2 img.active');
  72.  
  73. $active.addClass('last-active');
  74.  
  75. // verifica se existe um próximo objeto na div #slideshow2, caso ele nao exista, retorna para o primeiro
  76. var $next = $active.next().length ? $active.next() : $('#slideshow2 img:first');
  77.  
  78. $next.css({opacity: 0.0})
  79. .addClass('active')
  80. .animate({opacity: 1.0}, 1000, function() {
  81. $active.removeClass('active last-active');
  82. });
  83. }
  84.  
  85. $(function() {
  86. //Executa a função a cada 2 segundos
  87. setInterval( "slideSwitch()", 2500 );
  88. });
  89. </script>
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. <script type="text/javascript">
  98.  
  99.  
  100. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  101.  
  102.  
  103.  
  104.  
  105. function tb8_makeArray(n){
  106.  
  107.  
  108. this.length = n;
  109.  
  110.  
  111. return this.length;
  112.  
  113.  
  114. }
  115.  
  116.  
  117.  
  118.  
  119. tb8_messages = new tb8_makeArray(1);
  120.  
  121.  
  122.  
  123.  
  124. tb8_messages[0] = "{Title}";
  125.  
  126.  
  127.  
  128.  
  129. tb8_rptType = 'infinite';
  130.  
  131.  
  132.  
  133.  
  134. tb8_rptNbr = 5;
  135.  
  136.  
  137.  
  138.  
  139. tb8_speed = 100;
  140.  
  141.  
  142.  
  143.  
  144. tb8_delay = 2000;
  145.  
  146.  
  147.  
  148.  
  149. var tb8_counter=1;
  150.  
  151.  
  152.  
  153.  
  154. var tb8_currMsg=0;
  155.  
  156.  
  157.  
  158.  
  159. var tb8_tekst ="";
  160.  
  161.  
  162.  
  163.  
  164. var tb8_i=0;
  165.  
  166.  
  167.  
  168.  
  169. var tb8_TID = null;
  170.  
  171.  
  172.  
  173.  
  174. function tb8_pisi(){
  175.  
  176.  
  177.  
  178.  
  179. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  180.  
  181.  
  182.  
  183.  
  184. document.title = tb8_tekst;
  185.  
  186.  
  187.  
  188.  
  189. tb8_sp=tb8_speed;
  190.  
  191.  
  192.  
  193.  
  194. tb8_i++;
  195.  
  196.  
  197.  
  198.  
  199. if (tb8_i==tb8_messages[tb8_currMsg].length){
  200.  
  201.  
  202.  
  203.  
  204. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  205.  
  206.  
  207.  
  208.  
  209. }
  210.  
  211.  
  212.  
  213.  
  214. if (tb8_currMsg == tb8_messages.length){
  215.  
  216.  
  217.  
  218.  
  219. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  220.  
  221.  
  222.  
  223.  
  224. clearTimeout(tb8_TID);
  225.  
  226.  
  227.  
  228.  
  229. return;
  230.  
  231.  
  232.  
  233.  
  234. }
  235.  
  236.  
  237.  
  238.  
  239. tb8_counter++;
  240.  
  241.  
  242.  
  243.  
  244. tb8_currMsg = 0;
  245.  
  246.  
  247. }
  248.  
  249.  
  250.  
  251.  
  252. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  253.  
  254.  
  255.  
  256.  
  257. }
  258.  
  259.  
  260.  
  261.  
  262. tb8_pisi()
  263.  
  264.  
  265.  
  266.  
  267. </script>
  268.  
  269. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  270.  
  271. <!-- DEFAULT VARIABLES -->
  272. <meta name="color:background" content="#f8f8f8" />
  273. <meta name="color:link" content="#000000" />
  274.  
  275. <meta name="color:text" content="#000000" />
  276. <meta name="color:post" content="#ffffff" />
  277.  
  278. <meta name="color:frase" content="#ffffff" />
  279. <meta name="color:scroll" content="#000000" />
  280.  
  281.  
  282.  
  283. <meta name="color:links" content="#000" />
  284. <meta name="color:tags" content="#000" />
  285. <meta name="color:linkbg" content="#ffffff" />
  286. <meta name="color:linktext" content="#000" />
  287.  
  288. <meta name="color:linkbghover" content="#000" />
  289. <meta name="color:linktexthover" content="#fff" />
  290.  
  291. <meta name="color:border" content="#EEEEEE" />
  292.  
  293.  
  294.  
  295. <meta name="color:fundo" content="#ffffff" />
  296.  
  297.  
  298.  
  299. <meta name="image:background" content="" />
  300. <meta name="image:fotinha" content="http://24.media.tumblr.com/tumblr_mamp904K9L1rzamyno1_500.jpg"/>
  301.  
  302. <meta name="font:text" content="verdana" />
  303. <meta name="font:title" content="georgia" />
  304.  
  305.  
  306.  
  307.  
  308. <meta name="text:titulo" content="come' on skinny love" />
  309. <meta name="text:link1" content="/" />
  310. <meta name="text:Link1 Title" content="link" />
  311. <meta name="text:Link2" content="/" />
  312. <meta name="text:Link2 Title" content="link" />
  313. <meta name="text:Link3" content="/" />
  314. <meta name="text:Link3 Title" content="link" />
  315. <meta name="text:Link4" content="/" />
  316. <meta name="text:Link4 Title" content="link" />
  317. <meta name="text:Link5" content="/" />
  318. <meta name="text:Link5 Title" content="link" />
  319. <meta name="text:Link6" content="/" />
  320. <meta name="text:Link6 Title" content="link" />
  321.  
  322.  
  323.  
  324.  
  325.  
  326. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  327.  
  328.  
  329.  
  330. <title>{Title}</title>
  331. <link rel="shortcut icon" href="{Favicon}">
  332. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  333. {block:Description}
  334. <meta name="description" content="{MetaDescription}" />
  335. {/block:Description}
  336.  
  337. <link href='http://fonts.googleapis.com/css?family=Megrim' rel='stylesheet' type='text/css'>
  338.  
  339. <style type="text/css">
  340.  
  341.  
  342. 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; }
  343.  
  344. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  345.  
  346. p {margin: 6px 0 0 0}
  347.  
  348. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  349. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  350. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  351. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  352.  
  353. blockquote img{max-width: 470px!important}
  354. blockquote blockquote img{max-width: 450px!important}
  355. blockquote blockquote blockquote img{max-width: 430px!important}
  356. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  357. .qquote{font-family: Georgia; font-size: 15px; letter-spacing: 0px; line-height: 18px; text-transform: none; text-align: center;
  358.  
  359. }
  360. .qsource{margin-top: 5px; margin-right: 15px;text-align: right}
  361.  
  362. #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width:400px; position:fixed; }
  363.  
  364.  
  365. #entries{position: relative; width:400px; text-align:justify; float:left ;margin:-7px; padding:5px; margin-left: 8px; margin-top:7px; background:{color:post}; border: 8px double {color:background}; }
  366.  
  367.  
  368. #msd {width: 350px; height: 350px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar}; }
  369.  
  370.  
  371.  
  372.  
  373. .danpost {width: 400px; background-color: {color:post}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: tahoma; font-size: 11px;}
  374.  
  375. .danpost:hover #info {opacity:0.9; margin-left:140px; margin-top:0px;}
  376. .danpost:hover #infu {opacity:1}
  377.  
  378. #infu {text-align: center; font-size: 9px; font-family: tahoma; text-transform: lowercase; z-index: 11; margin-top:10px}
  379. #infu a {font-size: 9px;}
  380.  
  381. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  382. h1 a {text-align: center; font-size: 16px; text-transform: none; color: {color:link}; font-weight: normal; line-height: 18px;}
  383. h1 a:hover {text-align: center; font-size: 16px; text-transform: none; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  384.  
  385. .image {text-align: center; border: 0px}
  386. .image img {max-width: 400px; margin-bottom: 2px }
  387.  
  388. .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  389. .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  390. .oiqqtts a, a:hover{text-transform: none;}
  391.  
  392. .chat {line-height: 13px; list-style: none }
  393. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  394. .person1 {color: {color:text}; padding: 2px; }
  395. .person1 .label {font-weight: bold; color:{color:text}}
  396. .person2 {color: {color:text}; padding: 2px; }
  397. .person2 .label {font-weight: bold; color:{color:text}}
  398.  
  399. .player {background-color: #000; text-align: left; display:block;}
  400.  
  401. /* asker */
  402.  
  403. .asker {width: 480px; background-color: transparent; color:#969696; padding: 5px;}
  404. .asker img{float: left; padding: 0px 5px 0px 0px}
  405. .asker a{font-size: 11px; font-weight: bold; color:#969696; text-transform: lowercase; line-height: 11px; padding: 0; margin: 0}
  406. .asker a:hover{font-size: 11px; font-weight: bold; color:#969696; background-color: transparent; text-transform: uppercase; line-height:11px; padding: 0; margin: 0}
  407. .question {font-size: 10px;}
  408. .answer {padding: 4px}
  409. .answer img {max-width: 470px;}
  410.  
  411. .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;}
  412.  
  413.  
  414.  
  415. .source{display:none}
  416.  
  417. #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  418. #oidata a {font-size: 9px;}
  419.  
  420. #oidata2 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-24px;}
  421. #oidata2 a {font-size: 9px;}
  422.  
  423. #oidata3 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-14px; }
  424. #oidata3 a {font-size: 9px;}
  425.  
  426. .tags {text-align: left; margin-top:-4px; font-size: 10px; font-family: calibri; text-transform: uppercase; z-index: 11;}
  427. .tags a {font-size: 9px; text-transform: uppercase;}
  428.  
  429.  
  430. .pquote {font-family: tahoma; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  431. .pquotesource {text-align: right; text-transform: none; margin-bottom: 5px;}
  432. .pquotesource a, a:hover{text-transform: none;}
  433.  
  434. #cap {width: 400px; margin-top: -2px;}
  435. .source {display: none;}
  436.  
  437. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  438. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  439. ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  440. .notes img{display: none; border:0px}
  441.  
  442.  
  443. .question {
  444. color:{color:text};
  445. font-size: 11px;
  446. font-weight: normal;
  447. font-family: verdana;
  448. line-height:95%;
  449. background: {color:border};
  450. position: relative;
  451. min-height:70px;
  452. padding:10px 15px;
  453. margin-bottom:2px;
  454. margin-right:-10px;}
  455.  
  456. .questionarrow {
  457. font-size:30px;
  458. color:{color:border};
  459. vertical-align:middle;
  460. margin-left:-5px!important;}
  461.  
  462. .asker {width:500px; text-align:right; text-transform:lowercase; color:{color:text};}
  463. .asker a {color:{color:text};}
  464. .asker img {float:left; margin-left:500px; vertical-align:top; margin-right:3px; max-height:15px;}
  465.  
  466. .asking {text-align:center; color:{color:text}; font:9px verdana; text-transform:none;}
  467. .asking a{color:{color:text};}
  468. .asking img {width:58px; vertical-align:middle; background-color:{color:background}; padding:3px;}
  469.  
  470. .arrow {padding-top:11px; color:{color:question background}; font-size:30px;}
  471.  
  472.  
  473.  
  474.  
  475.  
  476. .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);}
  477. .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  478.  
  479. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  480.  
  481.  
  482.  
  483.  
  484.  
  485. #chuchu {width:10px; height:130px; margin-top:50px; margin-left: 175px; background-color: {color:text}; position:fixed; font-size: 15px; pacity:0.9; z-index:100000; }
  486.  
  487. #chuchus {width:90px; height:8px; margin-top:50px; margin-left: 137px; background-color: {color:text}; position:fixed; font-size: 15px; pacity:0.9; z-index:100000; }
  488.  
  489.  
  490. #heey {width:3px; height:1000px; margin-top:-0px; margin-left: 315px; background-color: {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  491.  
  492.  
  493. #maybe {width:122px; height:147px; margin-top:131px; margin-left:294px; background-color: {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  494.  
  495. #maybe2 {width:200px; height:20px; margin-top:296px; margin-left: 330px; background-color: {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; }
  496.  
  497.  
  498. #heey3 {width:182px; height:2px; margin-top:198px; margin-left: 128px; background-color: {color:text}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  499.  
  500.  
  501. #fundolinks {width:153px; height:75px; margin-top:305px; margin-left: 158px; background-color: {color:fundo}; position:fixed; font-size: 80px; pacity:0.9; z-index:10000}
  502.  
  503.  
  504. #safadinha {position: fixed; width:300px; margin-left:230px; margin-top:352px; z-index:100}
  505.  
  506. .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 }
  507. .baunilha:hover {text-align: center; background-color: {color:background}; color:{color:frase}; letter-spacing:0px; z-index:900}
  508.  
  509. .baunilha:hover #bumbum {margin-top:-25px;height:auto; margin-left:-10px;}
  510.  
  511. #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;
  512. text-align: justify; }
  513. #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; }
  514. #bumbum a:hover{background-color:transparent; color:{color:maislinkhover}; font-weight: bold;}
  515.  
  516.  
  517. #xaro {margin-top: 280px; margin-left: 225px; position:fixed; background-color:{color:fundo}; z-index:10000;}
  518. #xaro a{height:8px; display:block; width: 47px; line-height: 3px; font-size:10px; margin-bottom: 1px; text-align:center; font-family: tahoma; text-transform: lowercase; color: {color:linktext} ; line-height:8px; background-image:url('{image:background}'); -webkit-transition-duration: 0.4s;padding:4px}
  519. #xaro a:hover{background-color:{color:background}; color: {color:ask}}
  520.  
  521. #xaro2 {margin-top: 280px; margin-left: 281px; position:fixed; background-color:{color:fundo}; z-index:10000;}
  522. #xaro2 a{height:8px; display:block; width: 47px; line-height: 3px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:8px; font-family: tahoma; text-transform: lowercase; color: {color:linktext} ; background-image:url('{image:background}'); -webkit-transition-duration: 0.4s;padding:4px}
  523. #xaro2 a:hover{background-color:{color:background}; color: {color:ask}}
  524.  
  525. #xara {margin-top: 280px; margin-left: 337px; position:fixed; background-color:{color:fundo}; z-index:10000;}
  526. #xara a{height:8px; display:block; width: 47px; line-height: 3px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:8px; font-family: tahoma; text-transform: lowercase; color: {color:linktext} ; background-image:url('{image:background}'); -webkit-transition-duration: 0.4s;padding:4px}
  527. #xara a:hover{background-color:{color:background}; color: {color:ask}}
  528.  
  529. #xara2 {margin-top: 113px; margin-left: 213px; position:fixed; background-color:{color:fundo}; z-index:10000;}
  530. #xara2 a{height:8px; display:block; width: 103px; line-height: 3px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:8px; font-family: tahoma; text-transform: lowercase; color: {color:linktext} ; background-image:url('{image:background}'); -webkit-transition-duration: 0.4s;padding:4px}
  531. #xara2 a:hover{background-color:{color:background}; color: {color:ask}}
  532.  
  533. #xara4 {margin-top: 113px; margin-left: 325px; position:fixed; background-color:{color:fundo}; z-index:10000;}
  534. #xara4 a{height:8px; display:block; width: 103px; line-height: 3px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:8px; font-family: tahoma; text-transform: lowercase; color: {color:linktext} ; background-image:url('{image:background}'); -webkit-transition-duration: 0.4s;padding:4px}
  535. #xara4 a:hover{background-color:{color:background}; color: {color:ask}}
  536.  
  537.  
  538. #linkaa {margin-top: 30px; margin-left:-182px; position:absolute; background-color:{color:background}; -webkit-transition: 0.9s ease-in;
  539. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; }
  540. #linkaa a{height:15px; display:block; width: 40px; line-height: 15px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:15px; font-family: tahoma; text-transform: lowercase; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; color: {color:linktext} ; background-color: {color:linkbg}; -webkit-transition-duration: 0.4s;padding:4px}
  541. #linkaa a:hover{background-color:{color:background}}
  542.  
  543. #linkaa2 {margin-top: 30px; margin-left:390px; -webkit-transition: 0.9s ease-in;
  544. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; position:absolute; background-color:{color:background}; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; }
  545. #linkaa2 a{height:15px; display:block; width: 40px; line-height: 15px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:15px; font-family: tahoma; text-transform: lowercase; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; color: {color:linktext} ; background-color: {color:linkbg}; -webkit-transition-duration: 0.4s;padding:4px}
  546. #linkaa2 a:hover{background-color:{color:background}}
  547.  
  548. #linkaa3 {margin-top: 70px; margin-left:-200px; -webkit-transition: 0.9s ease-in;
  549. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; position:absolute; background-color:{color:background}; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; }
  550. #linkaa3 a{height:15px; display:block; width: 40px; line-height: 15px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:15px; font-family: tahoma; text-transform: lowercase; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; color: {color:linktext} ; background-color: {color:linkbg}; -webkit-transition-duration: 0.4s;padding:4px}
  551. #linkaa3 a:hover{background-color:{color:background}}
  552.  
  553. #linkaa4 {margin-top: 70px; margin-left:320px; position:absolute; background-color:{color:background}; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; -webkit-transition: 0.9s ease-in;
  554. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in;}
  555. #linkaa4 a{height:15px; display:block; width: 40px; line-height: 15px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:15px; font-family: tahoma; text-transform: lowercase; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; color: {color:linktext} ; background-color: {color:linkbg}; -webkit-transition-duration: 0.4s;padding:4px}
  556. #linkaa4 a:hover{background-color:{color:background}}
  557.  
  558.  
  559. #linkaa5 {margin-top: 110px; margin-left:-280px; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; -webkit-transition: 0.9s ease-in;
  560. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; position:absolute; background-color:{color:background};}
  561. #linkaa5 a{height:15px; display:block; width: 40px; line-height: 15px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:15px; font-family: tahoma; text-transform: lowercase; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; color: {color:linktext} ; background-color: {color:linkbg}; -webkit-transition-duration: 0.4s;padding:4px}
  562. #linkaa5 a:hover{background-color:{color:background}}
  563.  
  564. #linkaa6 {margin-top: 110px; margin-left:582px; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; -webkit-transition: 0.9s ease-in;
  565. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; position:absolute; background-color:{color:background};}
  566. #linkaa6 a{height:15px; display:block; width: 40px; line-height: 15px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:15px; font-family: tahoma; text-transform: lowercase; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; color: {color:linktext} ; background-color: {color:linkbg}; -webkit-transition-duration: 0.4s;padding:4px}
  567. #linkaa6 a:hover{background-color:{color:background}}
  568.  
  569. #linkaa7 {margin-top:140px; margin-left:-182px; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; -webkit-transition: 0.9s ease-in;
  570. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; position:absolute; background-color:{color:background};}
  571. #linkaa7 a{height:15px; display:block; width: 90px; line-height: 15px; font-size:10px; margin-bottom: 1px; text-align:center; line-height:15px; font-family: tahoma; text-transform: lowercase; moz-border-bottom-left-radius: 100px; border-bottom-left-radius: 100px; -moz-border-top-left-radius: 100px; border-top-left-radius: 100px; z-index: 1; -moz-border-bottom-right-radius: 100px; border-bottom-right-radius: 100px; -moz-border-top-right-radius: 100px; border-top-right-radius: 100px; color: {color:linktext} ; background-color: {color:linkbg}; -webkit-transition-duration: 0.4s;padding:4px}
  572. #linkaa7 a:hover{background-color:{color:background}}
  573.  
  574.  
  575.  
  576.  
  577.  
  578. #upupup {margin-top:400px; margin-left: 140px; position:fixed; background-color:{color:background};}
  579.  
  580.  
  581. #tchetche {width:80px; height:12px; margin-top:344px; margin-left: 120px; 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; -webkit-transform: rotate(-270deg); }
  582. #tchetche2 {width:80px; height:12px; margin-top:373px; margin-left:142px; 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 }
  583.  
  584. #chupa {width:1px; height:102px; margin-top:67px; 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 }
  585.  
  586.  
  587.  
  588. #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);}
  589.  
  590.  
  591. #sideimg {display: block; margin-left: 202px; float: right; margin-top: 19px; width: auto; height: auto; background-color: transparent; position: fixed; z-index:30;}
  592. .simg1 img {width: 135px; height: 160px; margin-bottom: 2px; border: 4px solid {color:fundinho};}
  593.  
  594. #pag {width: 15px; padding:1px; background-color: {color:post}; position:fixed; text-align: center; margin-top: 100px; margin-left: 119px;}
  595.  
  596. #cruz {position: fixed; margin: 200px 0px 0px 60px; }
  597.  
  598. #acruz {width: 39px; position: absolute; margin-left: -92px; margin-top: -365px; color: {color:cruz}; font-size: 60px; -webkit-transform: rotate(-20deg);}
  599. #acruz:hover { -webkit-transform: rotate(0deg);}
  600.  
  601. #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;}
  602.  
  603.  
  604. .tititica3 {color:{color:text}; background-color:{color:fundo}; height:12px; font-size:09px; width: 225px; font-family:georgia; text-align:center; font-style:none;letter-spacing:3px; margin-top:471px; margin-left: 230px; position: absolute; line-height:12px; text-transform: lowercase; padding:3px; -webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out;font-style:none; position:fixed;}
  605.  
  606.  
  607. #frase {width:185px; height:40px; margin-top:75px; margin-left: 110px; position:fixed; padding:4px; font-size: 25px; overflow:hidden; font-family: megrim; text-transform: uppercase; color: {color:frase}; text-shadow: -2px 0px #E86060, 2px 0px #54d2cb; transition: all .5s ease-in-out!important; -webkit-transition: all .5s ease-in-out!important;line-height: 50px; text-align: center; z-index:10000000}
  608.  
  609. #celular {width:183px; height: 1015px; border-width: 1px;border-style: dotted;border-color: {color:text}; margin-top: 1000000px; margin-left: 146px; position:fixed; }
  610.  
  611. #maybea {width:300px; height: 193px; margin-top:2070px; margin-left:-10px; position:fixed; background-color:{color:fundo} }
  612.  
  613.  
  614.  
  615.  
  616.  
  617. #maybeaaz {width:212px; height:30px; margin-top: 3070px; margin-left: 190px; position:fixed; background-color:{color:border}; z-index:100000; }
  618.  
  619.  
  620.  
  621.  
  622. #maybez {width:231px; height: 264px; margin-top:120px; margin-left: 230px; position:fixed; background-color:{color:fundo} }
  623.  
  624.  
  625.  
  626.  
  627.  
  628. #suckp {width: 272px; float: left; margin-left:231px; z-index:10000000000; margin-top: -128px; padding: 0px; text-align: center; position: fixed; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:20px;
  629. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  630.  
  631. #suckp a {float: left; padding: 1px; margin-top: 200px; display: block; letter-spacing: 1px; font-family: dosis; font-size: 9px; text-align: center; width: 36.5px; height:20px; background-color: {color:linkbg}; color: {color:linktext} ; text-decoration: none; text-transform: uppercase; line-height: 30px; height: 30px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; opacity:0.9;border-top:2px solid {color:border}; }
  632.  
  633. #suckp a:hover{text-align: center; opacity:0.7; background-color:{color:linkbghover}; color: {color:linktexthover};height:25px;border-bottom:3px solid {color:linktexthover};width:px;}
  634.  
  635. #suckpe {width: 218px; float: left; margin-left:-380px; margin-top: 70px; padding: 0px; text-align: center; position: fixed; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:18px;
  636. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  637.  
  638. #suckpe a {float: left; padding: 1px; margin-top:6px; border-width: 1px;border-style: dotted;border-color: {color:text}; display: block; letter-spacing: 0px; font-family: georgia; font-size: 9px; text-align: center; width: 30px; height:15px; background-color: {color:border}; color: {color:linktext} ; text-decoration: none; text-transform: none; line-height: 20px; height: 20px; overflow: hidden; margin-left:-2px; }
  639.  
  640. #suckpe a:hover{text-align: center; opacity:0.7; background-color:{color:linktext}; color: {color:linkbg};}
  641.  
  642.  
  643.  
  644. #frase:hover {text-shadow: 0px 0px {color:text links}, 0px 0px {color:text links};transition: all .5s ease-in-out!important; -webkit-transition: all .5s ease-in-out!important;}
  645.  
  646. #side {position: fixed; width:800px; margin-left:240px;z-index:1000; margin-top:100px;}
  647.  
  648. .photo {-webkit-transition: 0.9s ease-in; -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; position:absolute; padding:0px; background-color:{color:sidebar}; overflow: hidden; -webkit-transition: all 0.6s ease; margin-top:50px; border:6px solid {color:border}; }
  649.  
  650. .photo img:hover {-moz-opacity: 0.95;filter: url(filters.svg#grayscale);filter: gray;-webkit-filter: grayscale(1); -moz-opacity: 0.83; filter: alpha(opacity=83); opacity:0.9; }
  651.  
  652. .photo img {display: block;width:200px; height:230px; -webkit-transition: 0.9s ease-in; -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; }
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663. #twitter {width: 17px; position: absolute; background-color: #ffffff; font-size: 9px; font-family: tahoma; padding: 5px; height: 16px; margin-left: -50px; margin-top: -10px; z-index: 0; margin-top:0px; opacity:0,6; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in;
  664. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in;}
  665.  
  666. #twitter img {height:19px; width:19px; margin-left:-2px; }
  667.  
  668. #textlinks {width:120px; height: 10px; margin-left:99px; margin-top:477px; position:fixed; color: {color:frase};opacity:0.8; z-index: 000; font-family: tahoma; text-align: center; font-size:9px; line-height: 10px; text-transform: lowercase; border-left:0px solid; border-right:0px solid; padding:3px; width: 70px; height:20px; position: absolute; border: 0px solid {color:border}; background-color: {color:border}; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in;
  669. -moz-transition: 1.3s ease-in;position:fixed; transition: 1.3s ease-in;
  670.  
  671. }
  672.  
  673.  
  674.  
  675.  
  676. #upupup {width: 220px; float: left; margin-left:280px; margin-top: -6px; padding: 0px; text-align: center; position: absolute; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  677. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in;}
  678.  
  679. #upupup a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center; width: 58px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 18px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  680.  
  681. #upupup a:hover{text-align: center; background-color: {color:background}; color: {color:linktexthover};}
  682.  
  683. #upupup2 {width: 220px; float: left; margin-left:-190px; margin-top: 200px; padding: 0px; text-align: center; position: absolute; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  684. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  685.  
  686. #upupup2 a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center; width: 42px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 18px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  687.  
  688. #upupup2 a:hover{text-align: center; background-color: {color:background}; color: {color:linktexthover};}
  689.  
  690. #upupup3 {width: 220px; float: left; margin-left:2px; margin-top: -50px; padding: 0px; text-align: center; position: absolute; -moz-border-bottom-right-radius: 60px; border-bottom-right-radius: 60px; -moz-border-top-right-radius: 60px; border-top-right-radius: 60px; z-index: 1; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  691. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  692.  
  693. #upupup3 a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center; width: 20px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 20px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  694.  
  695. #upupup3 a:hover{text-align: center; background-color: {color:background}; color: {color:linktexthover};}
  696.  
  697.  
  698. #beeijo {width: 220px; float: left; margin-left:2px; margin-top: -50px; padding: 0px; text-align: center; position: absolute; -moz-transition: opacity .1s ease-in-out; -o-transition: opacity .1s ease-in-out; transition: opacity .1s ease-in-out; -webkit-transition: opacity .9s ease-in-out; opacity: 1; -webkit-transition: 1.3s ease-in; height:26px;
  699. -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; }
  700.  
  701. #beeijo a {float: left; padding: 1px; margin-top:6px; display: block; letter-spacing: 0px; font-family: 'homenaje'; font-size: 12px; text-align: center; width: 15px; background-color: {color:linkbg}; color: {color:textlink}; text-decoration: none; text-transform: uppercase; line-height: 18px; height: 20px; overflow: hidden; border:1px solid {color:background}; margin-left:-2px; }
  702.  
  703. #beeijo a:hover{text-align: center; background-color: {color:background}; color: {color:linktexthover};}
  704.  
  705.  
  706.  
  707.  
  708.  
  709. .li {opacity: 1}
  710. .li2 {opacity: 0.8}
  711. .li3 {opacity: 0.6}
  712. .li4 {opacity: 0.8}
  713. .li5 {opacity: 1}
  714.  
  715. #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;}
  716.  
  717. #kitty a:hover{ opacity: 0.8; }
  718.  
  719.  
  720. #faixa {margin-top: 50px; margin-left: -10px; position: fixed; background-color: {color:bobsponja}; height: 140px; width:354px; }
  721.  
  722. #faixa2 {margin-top: -50px; margin-left: 50px; position: fixed; background-color: {color:bobsponja}; height: 2000px; width:30px; }
  723.  
  724. @font-face {
  725. font-family: 'Give You Glory';
  726. font-style: normal;
  727. font-weight: norAmal;
  728. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  729. }
  730.  
  731.  
  732.  
  733. @font-face{
  734. font-family: 'MyWebFont';
  735. src: url('WebFont.eot');
  736. src: url('WebFont.eot?#iefix') format('embedded-opentype'),
  737. url('WebFont.woff') format('woff'),
  738. url('WebFont.ttf') format('truetype'),
  739. url('WebFont.svg#webfont') format('svg');
  740. }
  741.  
  742. #ttle {width:150px; height: 20px; margin-left:230px; margin-top:86px; position:fixed; overflow:hidden; color: {color:frase}; z-index: 0; font-family:'Lobster Two',cursive; font-size:20px;text-transform:none; border-left:0px solid; border-right:0px solid; padding:3px; z-index: 1000; background-color: {color:fundo}; text-align:left; width:225px; height:27px; line-height: 28px; z-index:10000000; text-align:center; border: 0px solid {color:border}; }
  743.  
  744. #ttlecom { margin-left:300px; margin-top:30px; position:fixed; overflow:hidden; color: {color:fundo}; z-index: 0; font-family: times new roman; font-size:400px;text-transform:none; border-left:0px solid; border-right:0px solid; padding:3px; text-align:left; border: 0px solid {color:border}; }
  745.  
  746. #ttledosis {width:150px; height: 20px; margin-left:150px; margin-top:117px; position:fixed; overflow:hidden; color: {color:frase}; opacity: 0.7; z-index: 0; font-family:dosis; font-size:13px;text-transform:none; border-left:0px solid; border-right:0px solid; padding:3px; z-index: 1000; text-align:left; width:290px; height:33px; line-height: 26px; z-index:10000000; border: 0px solid {color:border}; }
  747.  
  748. @font-face {font-family: "discoverbeauty";src: url('http://static.tumblr.com/nf5qb3y/3ptm2vwot/discoverbeauty.ttf') format("truetype");}
  749.  
  750. #ttle5 {position: fixed; margin-left:188px; margin-top:325px; padding:5px; line-height:15px; font-size:20px; background-color:transparent; font-family: times new roman; text-align:center; width: 150px; -webkit-transform: rotate(4deg); z-index:0000000; color: {color:frase}; }
  751.  
  752. #ttle5:hover { color:transparent; }
  753.  
  754. #textv {width:98px; height: 50px; margin-left:230px; margin-top:405px; position:fixed; color: {color:frase}; background-color:{color:fundo}; z-index: 0; font-family: georgia; font-size:10px;text-transform: none; border-bottom:1px solid; border-top:1px solid; z-index:0; padding:3px; width: 225px; z-index:100000; height:59px; border: 0px solid {color:border};line-height:14px; }
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761. #themex {width:150px; height: 130px; background-color: {color:border}; margin-top: 200px; margin-left: 772px; position:fixed; color: {color:frase}; z-index: 0; font-family:dosis; font-size:24px;text-transform:uppercase;z-index: 1000; text-align:center; line-height: 30px; border-width: 1px;border-style: dotted;border-color: {color:text}; }
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769. /** estilo de ask by htmland **/
  770. @font-face {font-family: "tinytots"; src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf')}
  771. .hlanswer {background: #bebebe color: {color:text}; background: {color:background}; width: 385px; font: normal 10px arial; margin-bottom: 2px; padding-top: 8px; padding-left: 13px; padding-bottom: 13px; text-align: justify; display: block; overflow: hidden; border-top: 2px solid #bebebe;}
  772. .hlanswer img {border: 2px solid #bebebe; float: right; margin-top: -15px; margin-left: 13px; margin-bottom: -13px; opacity: 0.8; }
  773. .hlanswer img:hover {opacity: 1.0}
  774. .hlanswerinfo {background: transparent; padding: 3px; float: left; display: inline-block; width: auto; color: {color:text}; font: normal 10px "tahoma"; text-transform: none; margin-bottom: -1px}
  775. .hlanswerinfo a {color: {color:text};}
  776.  
  777. #emcima {z-index: 90; margin-top: 900px; background-color:{color:background}; width: 1320px; height: 50px; padding: 0px; position: fixed; margin-left: 100px;}
  778. #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}}
  779.  
  780. #oie {position: fixed; margin-left: 0px; margin-top: 100px; display: none;}
  781.  
  782. #bebezinha {position: absolute; width: 200px; margin-left: -10px; margin-top: -176px; padding: 0px; text-align: center; z-index:3;}
  783. #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;}
  784. #bebezinha a:hover{text-align: center; background-color: {color:linkbghover}; color: {color:linksshover};text-shadow:6px 5px 9px ;}
  785.  
  786. #entry {float: left; margin-left: 460px; margin-top:-5px; border: 0px solid {color:post}; color:{color:text}; width:400px; z-index:10000000000;opacity:0.8;}
  787.  
  788. .posts {position: relative; width:400px; text-align:justify; float:left ;margin:-7px; padding:5px; margin-left: 8px; font-family: tahoma; font-size: 11px;margin-top:7px; background:{color:post}; border: 4px double {color:background}; z-index:10000000000; }
  789.  
  790. #bebezinha2 {position: absolute; margin-left: -88px; margin-top: 450px; padding: 0px; text-align: center; z-index:3;}
  791. #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; }
  792. #bebezinha2 a:hover{text-align: center; background-color: {color:linkbghover}; color: {color:linktexthover};text-shadow:6px 5px 9px ; }
  793.  
  794.  
  795. #linksfotos { margin-top: 250px; margin-left:280px; position:fixed; z-index:200000; border-width: 1px;border-style: dotted;border-color: {color:text}; }
  796. #linksfotos a{height:8px; display:block; width: 40px; line-height: 3px; font-size:8px; margin-bottom: 1px; text-align:center; line-height:10px; font-family: tinytots; text-transform: uppercase; color: {color:linktext} ; background-color: {color:linkbg}; padding-left:1px; -webkit-transition-duration: 0.4s;padding:2px}
  797. #linksfotos a:hover{ opacity:0.6;}
  798.  
  799. #linkd { margin-top: 140px; margin-left:153px; position:fixed; z-index:200000; opacity: 0.8; border-top:1px solid {color:text}; }
  800. #linkd a {height:9px; display:block; width: 30px; line-height: 10px; font-size:8px; margin-bottom: 1px; text-align:center; line-height:10px; font-family:tahoma; text-transform: uppercase; color: {color:linktext} ; background-color: {color:linkbg}; letter-spacing: 1px; padding-left:1px; -webkit-transition-duration: 0.4s;padding:2px}
  801. #linky a:hover{ opacity:0.6;}
  802. #linkd a:hover{ opacity:0.6;}
  803.  
  804. #linky { margin-top: 140px; margin-left:188px; position:fixed; z-index:200000; opacity: 0.8; border-top:1px solid {color:text}; }
  805. #linky a{height:9px; display:block; width: 30px; line-height: 10px; font-size:8px; margin-bottom: 1px; text-align:center; line-height:10px; font-family:tahoma; text-transform: uppercase; color: {color:linktext} ; background-color: {color:linkbg}; letter-spacing: 1px; padding-left:1px; -webkit-transition-duration: 0.4s;padding:2px}
  806. #linky a:hover{ opacity:0.6;}
  807.  
  808. #linky3 { margin-top: 140px; margin-left:223px; position:fixed; z-index:200000; opacity: 0.8; border-top:1px solid {color:text}; }
  809. #linky3 a{height:9px; display:block; width: 30px; line-height: 10px; font-size:8px; margin-bottom: 1px; text-align:center; line-height:10px; font-family:tahoma; text-transform: uppercase; color: {color:linktext} ; background-color: {color:linkbg}; letter-spacing: 1px; padding-left:1px; -webkit-transition-duration: 0.4s;padding:2px}
  810. #linky3 a:hover{ opacity:0.6;}
  811.  
  812. #linky4 { margin-top: 140px; margin-left:258px; position:fixed; z-index:200000; opacity: 0.8; border-top:1px solid {color:text}; }
  813. #linky4 a{height:9px; display:block; width: 30px; line-height: 10px; font-size:8px; margin-bottom: 1px; text-align:center; line-height:10px; font-family:tahoma; text-transform: uppercase; color: {color:linktext} ; background-color: {color:linkbg}; letter-spacing: 1px; padding-left:1px; -webkit-transition-duration: 0.4s;padding:2px}
  814. #linky4 a:hover{ opacity:0.6;}
  815.  
  816. #linky5 { margin-top: 140px; margin-left:293px; position:fixed; z-index:200000; opacity: 0.8; border-top:1px solid {color:text}; }
  817. #linky5 a{height:9px; display:block; width: 30px; line-height: 10px; font-size:8px; margin-bottom: 1px; text-align:center; line-height:10px; font-family:tahoma; text-transform: uppercase; color: {color:linktext} ; background-color: {color:linkbg}; letter-spacing: 1px; padding-left:1px; -webkit-transition-duration: 0.4s;padding:2px}
  818. #linky5 a:hover{ opacity:0.6;}
  819.  
  820. #linky6 { margin-top: 140px; margin-left:188px; position:fixed; z-index:200000; opacity: 0.8; border-top:1px solid {color:text}; }
  821. #linky6 a{height:9px; display:block; width: 30px; line-height: 10px; font-size:8px; margin-bottom: 1px; text-align:center; line-height:10px; font-family:tahoma; text-transform: uppercase; color: {color:linktext} ; background-color: {color:linkbg}; letter-spacing: 1px; padding-left:1px; -webkit-transition-duration: 0.4s;padding:2px}
  822. #linky6 a:hover{ opacity:0.6;}
  823.  
  824.  
  825.  
  826. .links1 {position: absolute; width: 20px; margin-left:90px; margin-top:245px; padding: 0px; text-align: center; z-index:3;}
  827. .links1 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; 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;}
  828. .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}
  829.  
  830. .links2 {position: absolute; width: 20px; margin-left:161px; margin-top:245px; padding: 0px; text-align: center; z-index:3;}
  831. .links2 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; 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;}
  832. .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}
  833.  
  834. .links3 {position: absolute; width: 20px; margin-left:90px; margin-top:261px; padding: 0px; text-align: center; z-index:3;}
  835. .links3 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; 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;}
  836. .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}
  837.  
  838. .links4 {position: absolute; width: 20px; margin-left:161px; margin-top:261px; padding: 0px; text-align: center; z-index:3;}
  839. .links4 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; 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;}
  840. .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}
  841.  
  842. .links5 {position: absolute; width: 20px; margin-left:90px; margin-top:277px; padding: 0px; text-align: center; z-index:3;}
  843. .links5 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; 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;}
  844. .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}
  845.  
  846. .links6 {position: absolute; width: 20px; margin-left:161px; margin-top:277px; padding: 0px; text-align: center; z-index:3;}
  847. .links6 a {float: left; display: block; letter-spacing: 0px; font-size:12px; font-family:'Homenaje'; text-align: center; margin-right: 1px; margin-bottom:1px; width: 70px; background-color: {color:background}; 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;}
  848. .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}
  849.  
  850. .links7 {position: absolute; width: 20px; margin-left:128px; margin-top:49px; padding: 0px; text-align: center; z-index:3;}
  851. .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;}
  852. .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}
  853.  
  854.  
  855. #sdbarsi {font-family: verdana; color: {color:frase}; 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}
  856. #sdbarsi a{font-family: arial; font-size: 8px; letter-spacing: 1px}
  857.  
  858. #credit {width: 100px; margin-left: 163px; height: 20px; margin-top:550px; float:left; text-align: center; font-size: 9px; position:fixed; padding: 4px; font-family:tahoma; color:{color:text}; overflow:hidden; z-index:1000; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  859.  
  860.  
  861.  
  862.  
  863.  
  864. .credittex {margin-top: -2px; letter-spacing: 0px; text-align: center; font-family: tahoma; font-size: 10px; color:{color:text}; }
  865. .credittex a{color:{color:frase};}
  866.  
  867.  
  868. .credit {
  869. position:fixed !important;
  870. margin-left: 1028px;
  871. margin-top: 1000px;
  872. margin-bottom: -5px;
  873. font-size: 9px;
  874. width: 49px;
  875. height: 15px;
  876. padding: 1px 3px 3px 2px;
  877. font-family: verdana;
  878. color: {color:text};
  879. text-align: center;
  880. background-color: {color:sidebar};
  881. -webkit-transition: all 0.5s ease;
  882. }
  883.  
  884. #eaat {width:17px; height: 237px; margin-top:-2px; opacity:0.5; margin-left: -5px; position:fixed; background-color: {color:border}; z-index:500000000000000000000000000000000000000000000000000000000000000000; }
  885. #eaat2 {width:210px; height: 17px; margin-top:-5px; opacity:0.5; margin-left: -5px; position:fixed; background-color: {color:border}; z-index:500000000000000000000000000000000000000000000000000000000000000000; }
  886. #eaat3{width:17px; height: 237px; margin-top:-2px; opacity:0.5; margin-left: 187px; position:fixed; background-color: {color:border}; z-index:500000000000000000000000000000000000000000000000000000000000000000; }
  887. #eaat4 {width:210px; height: 17px; margin-top:220px; opacity:0.5; margin-left: -5px; position:fixed; background-color: {color:border}; z-index:500000000000000000000000000000000000000000000000000000000000000000; }
  888. ::-webkit-scrollbar{width:5px;height:5px;}
  889. ::-webkit-scrollbar-button:start:decrement
  890. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  891. ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  892. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  893. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  894.  
  895. #tumblr_controls{position: fixed!important}
  896. #tumblr_controls{position: fixed!important}
  897. #tumblr_controls{position: fixed!important}
  898. #tumblr_controls{position: fixed!important}
  899.  
  900. #info {position:absolute; font-size:9px; font-family: verdana; margin-left:300px; opacity:0; width: 250px; margin-bottom:0px; margin-top:0px; display:inline; text-align:center; padding:6px; padding-top: 7px; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; -webkit-transition: all 1s ease-in-out; z-index: 4000; background-color: {color:post}; color:{color:text};}
  901. #info a {background-color: {color:post}; color:{color:text}}
  902. #info a:hover {color: {color:link hover}}
  903.  
  904. #info2 {position:absolute; font-size:9px; font-family: verdana; margin-left:300px; opacity:0; width: 250px; margin-bottom:0px; margin-top:0px; display:inline; text-align:center; padding:6px; padding-top: 7px; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; -webkit-transition: all 1s ease-in-out; z-index: 4000; background-color: {color:post}; color:{color:text};}
  905. #info2 a {background-color: {color:post}; color:{color:text}}
  906. #info2 a:hover {color: {color:link hover}}
  907.  
  908. .creditoa {opacity: 0.2; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  909. .creditoa:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  910.  
  911. #infoa {text-align: left; margin-top:-4px; font-size: 0px; font-family: calibri; text-transform: uppercase; z-index: 11;}
  912. #infoa a {font-size: 10px; text-transform: uppercase;}
  913.  
  914. .photo:hover #eaat {margin-left:0px; margin-top:0px; width:0px; -webkit-transition: 0.9s ease-in;
  915. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; z-index:100000000;}
  916. .photo:hover #eaat2 {margin-top:-5px; margin-left: -5px; height:0px; -webkit-transition: 0.9s ease-in;
  917. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; z-index:100000000;}
  918.  
  919. .photo:hover #eaat3 { margin-top:-2px; width:0px; margin-left: 200px; -webkit-transition: 0.9s ease-in;
  920. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; z-index:100000000;}
  921.  
  922. .photo:hover #eaat4 {margin-top:230px; opacity:0.5; margin-left: -5px; height:0px; -webkit-transition: 0.9s ease-in;
  923. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; z-index:100000000;}
  924.  
  925.  
  926. </style>
  927.  
  928. </head>
  929.  
  930.  
  931. <body>
  932.  
  933.  
  934.  
  935.  
  936. <div id="tudo">
  937. <div id="msd">
  938. </div>
  939.  
  940.  
  941.  
  942. <div id="heey2"></div>
  943. <div id="celular"></div>
  944.  
  945.  
  946. <div id="maybea"></div>
  947. <div id="ttle">{text:titulo} </div>
  948. <div id="asa"></div>
  949. <div id="asaazul"></div>
  950. <div id="maybeaa"></div>
  951. <div id="maybeaaz"></div>
  952.  
  953.  
  954. <div id="maybez"></div>
  955. <div id="mim1"></div>
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.  
  966.  
  967.  
  968.  
  969.  
  970. </div></div>
  971.  
  972.  
  973.  
  974.  
  975. <div id="suckp">
  976. <a href="{text:link1}">{text:link1 title}</a>
  977. <a href="{text:link2}">{text:link2 title}</a>
  978.  
  979. <a href="{text:link3}">{text:link3 title}</a>
  980.  
  981. <a href="{text:link4}">{text:link4 title}</a>
  982. <a href="{text:link5}">{text:link5 title}</a> <a href="{text:link6}">{text:link6 title}</a>
  983.  
  984.  
  985. </div>
  986.  
  987. </div>
  988.  
  989.  
  990. <div id="side">
  991.  
  992.  
  993.  
  994. <div class="photo">
  995.  
  996.  
  997. <div id="suckpe">
  998.  
  999.  
  1000. </div>
  1001.  
  1002. <div id="eaat"></div>
  1003. <div id="eaat2"></div>
  1004. <div id="eaat3"></div>
  1005. <div id="eaat4"></div>
  1006. <img src="{image:fotinha}">
  1007. </div></div>
  1008.  
  1009.  
  1010.  
  1011.  
  1012. </div></div>
  1013.  
  1014.  
  1015.  
  1016.  
  1017. </div></div>
  1018.  
  1019. <div id="textv" title="">{description}</div>
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026. <div style="display:block;bottom:500px;left:240px;font-size:10px;font-family:georgia;position:fixed;background-color:{color:border}; color: {color:frase}; padding:3px;border-radius:10px;z-index:55554235555;opacity:0.75;"> <a href="http://d-esumana.tumblr.com" title: "detalhes i-ngenuidade">©</a> <font color="{color:text}"></font></a></div>
  1027.  
  1028.  
  1029.  
  1030.  
  1031. </div>
  1032.  
  1033. <div class="tititica3">{block:PreviousPage} <a href="{PreviousPage}">«</a>{/block:PreviousPage} {CurrentPage} of {TotalPages} {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}</div>
  1034.  
  1035.  
  1036. </div></div></div>
  1037.  
  1038. </div>
  1039. </font>
  1040.  
  1041.  
  1042. <div id="entry">
  1043.  
  1044. {block:Posts}
  1045. <div class="posts">
  1046.  
  1047. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1048.  
  1049. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-400}"></div>{LinkCloseTag}{/block:Photo}
  1050.  
  1051. {block:Photoset}{Photoset-400}{/block:Photoset}
  1052.  
  1053. {block:Quote}
  1054. <div class="pquote">“{Quote}”</div>
  1055. {block:Source}<div class="pquotesource"> <font color="(color:tags)"> — </font></a> {Source}</div>
  1056. {/block:Source}
  1057. {/block:Quote}
  1058.  
  1059. {block:Link}
  1060. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1061. {block:Description}{Description}{/block:Description}
  1062. {/block:Link}
  1063.  
  1064. {block:Chat}
  1065. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1066. <div class="chat"><ul>{block:Lines}
  1067. <li class="person{UserNumber}">{block:Label}
  1068. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  1069. {/block:Chat}
  1070.  
  1071. {block:Audio}
  1072. <div class="player">{AudioPlayerBlack}</div>
  1073. {block:Caption}{Caption}{/block:Caption}
  1074. {/block:Audio}
  1075.  
  1076. {block:Video}{Video-400}{/block:Video}
  1077.  
  1078.  
  1079. {block:Answer}
  1080. <table width="400px" cellspacing="0" cellpadding="0">
  1081. <tr>
  1082. <td width="415px" class="question">{Question}</td>
  1083. <td width="30px"><span class="questionarrow">◤</span></td>
  1084. <td width="64px" class="asking"><img src="{AskerPortraitURL-64}"><br>{Asker}</td>
  1085. </tr>
  1086. </table>
  1087. <div class="answer">{Answer}</div>
  1088. {/block:answer}
  1089.  
  1090.  
  1091. <div id="cap">
  1092. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1093. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1094. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1095.  
  1096. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  1097. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  1098. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  1099. {/block:ContentSource}</div></div>
  1100. <br>
  1101.  
  1102. <div class="credito">
  1103. {block:Date}<div id="infoa">
  1104. <center> <a href="{Permalink}">{DayOfMonth}.{MonthNumber}.{Year} <font color="{color:tags}">+</font></a> <font color="{color:tags}"> </font>{block:NoteCount} <font color="{color:tags}"></font> <a href="{Permalink}" {block:NoteCount}{/block:NoteCount}</a>{NoteCountWithLabel} <font color="{color:tags}">+</font></a>{block:RebloggedFrom} <font color="{color:tags}"></font> <a href="{ReblogParentURL}"><a href="{ReblogParentURL}">originally <font color="{color:tags}">+</font></a>{/block:RebloggedFrom} {block:ContentSource}<font color="{color:tags}"> </font> <a href="{SourceURL}">source <font color="{color:tags}">+</font></a>{/block:ContentSource} {block:IndexPage} <font color="{color:tags}"> </font><a href="{ReblogUrl}" target="_blank">reblog <font color="{color:tags}">+</font></a>{/block:IndexPage}</center> </div>{block:IfShowTags}<center><div id="tags">{block:HasTags}{block:Tags} #<a href="{TagUrl}">{Tag}</a>{/block:Tags}{/block:HasTags}
  1105. </div></center>{/block:IfShowTags}{/block:Date}</div>
  1106. <div class="tags">{block:HasTags}{block:Tags} <font color="{color:tags}">#</font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags} </div>
  1107. </div>
  1108.  
  1109.  
  1110. {/block:Posts}
  1111. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120. </div>
  1121. </div>
  1122. </div>
  1123. </div>
  1124.  
  1125. </body>
  1126. </html>
Add Comment
Please, Sign In to add comment