themes-sdss

Theme 27

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