Bakaway

theme 25

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