iea-themes

theme 20 - Reality insane

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