themes-sdss

Theme 28

Aug 15th, 2012
833
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.59 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="#fff" />
  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:listras" content="#ffffff" />
  279. <meta name="color:coracao" content="#f8b4d8" />
  280. <meta name="color:sidebar" content="#fff" />
  281.  
  282.  
  283.  
  284. <meta name="image:background" content="" />
  285. <meta name="image:sidebar" content="http://static.tumblr.com/fzbupk7/rBOm8t6dy/tumblr_m8t34njxns1rb7et5o2_250.jpg"/>
  286.  
  287. <meta name="font:text" content="verdana" />
  288. <meta name="font:title" content="georgia" />
  289.  
  290. <meta name="text:frase" content="To have you go beyond the most" />
  291. <meta name="text:frase2" content="and nothing will keep you from me" />
  292.  
  293.  
  294.  
  295. <meta name="text:link1" content="/" />
  296. <meta name="text:Link1 Title" content="link" />
  297. <meta name="text:Link2" content="/" />
  298. <meta name="text:Link2 Title" content="link" />
  299. <meta name="text:Link3" content="/" />
  300. <meta name="text:Link3 Title" content="link" />
  301. <meta name="text:Link4" content="/" />
  302. <meta name="text:Link4 Title" content="link" />
  303. <meta name="text:Link5" content="/" />
  304. <meta name="text:Link5 Title" content="link" />
  305. <meta name="text:Link6" content="/" />
  306. <meta name="text:Link6 Title" content="link" />
  307. <meta name="text:Link7" content="/" />
  308. <meta name="text:Link7 Title" content="link" />
  309.  
  310.  
  311.  
  312. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  313.  
  314.  
  315.  
  316. <title>{Title}</title>
  317. <link rel="shortcut icon" href="{Favicon}">
  318. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  319. {block:Description}
  320. <meta name="description" content="{MetaDescription}" />
  321. {/block:Description}
  322.  
  323. <link href='http://fonts.googleapis.com/css?family=Megrim' rel='stylesheet' type='text/css'>
  324.  
  325. <style type="text/css">
  326.  
  327.  
  328. body {background-color: {color:background}; font-family: georgia; color: {color:text}; text-align: center; font-size: 9px; background-image:url('{image:background}'); background-attachment: fixed; }
  329.  
  330. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  331.  
  332. p {margin: 6px 0 0 0}
  333.  
  334. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  335. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  336. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  337. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  338.  
  339. blockquote img{max-width: 470px!important}
  340. blockquote blockquote img{max-width: 450px!important}
  341. blockquote blockquote blockquote img{max-width: 430px!important}
  342. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  343. .qquote{font-family: Georgia; font-size: 15px; letter-spacing: 0px; line-height: 18px; text-transform: none; text-align: center;
  344.  
  345. }
  346. .qsource{margin-top: 5px; margin-right: 15px;text-align: right}
  347.  
  348. #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width:400px; position:fixed; }
  349.  
  350.  
  351. #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}; border-left: 2px solid {color:post}; }
  352.  
  353.  
  354. #msd {width: 350px; height: 350px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: transparent;}
  355.  
  356.  
  357.  
  358.  
  359. .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; margin-left:2px;}
  360.  
  361. .danpost:hover #info {opacity:0.9; margin-left:140px; margin-top:0px;}
  362. .danpost:hover #infu {opacity:1}
  363.  
  364. #infu {text-align: center; font-size: 9px; font-family: tahoma; text-transform: lowercase; z-index: 11; margin-top:10px}
  365. #infu a {font-size: 9px;}
  366.  
  367. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  368. h1 a {text-align: center; font-size: 16px; color: {color:link}; font-weight: normal; line-height: 18px;}
  369. h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  370.  
  371. .image {text-align: center; border: 0px}
  372. .image img {max-width: 400px; margin-bottom: 2px }
  373.  
  374. .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  375. .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  376. .oiqqtts a, a:hover{text-transform: none;}
  377.  
  378. .chat {line-height: 13px; list-style: none }
  379. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  380. .person1 {color: {color:text}; padding: 2px; }
  381. .person1 .label {font-weight: bold; color:{color:text}}
  382. .person2 {color: {color:text}; padding: 2px; }
  383. .person2 .label {font-weight: bold; color:{color:text}}
  384.  
  385. .player {background-color: #000; text-align: left; display:block;}
  386.  
  387. /* asker */
  388.  
  389. .asker {width: 480px; background-color: transparent; color:#969696; padding: 5px;}
  390. .asker img{float: left; padding: 0px 5px 0px 0px}
  391. .asker a{font-size: 11px; font-weight: bold; color:#969696; text-transform: lowercase; line-height: 11px; padding: 0; margin: 0}
  392. .asker a:hover{font-size: 11px; font-weight: bold; color:#969696; background-color: transparent; text-transform: uppercase; line-height:11px; padding: 0; margin: 0}
  393. .question {font-size: 10px;}
  394. .answer {padding: 4px}
  395. .answer img {max-width: 470px;}
  396.  
  397. .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;}
  398.  
  399.  
  400.  
  401. .source{display:none}
  402.  
  403. #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  404. #oidata a {font-size: 9px;}
  405.  
  406. #oidata2 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-24px;}
  407. #oidata2 a {font-size: 9px;}
  408.  
  409. #oidata3 {text-align: right; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; margin-top:-14px; }
  410. #oidata3 a {font-size: 9px;}
  411.  
  412. .tags {color: {color:text}; font-size: 9px; font-family: {font:text}; display: inline; list-style: none; text-transform: lowercase;}
  413. .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  414.  
  415. #cap {width: 400px; margin-top: -2px;}
  416. .source {display: none;}
  417.  
  418. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  419. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  420. ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  421. .notes img{display: none; border:0px}
  422.  
  423. .question {
  424. color: {color:text};
  425. font-size: 9px;
  426. font-weight: normal;
  427. font-family: {font:body};
  428. line-height:95%;
  429. background: {color:ask};
  430. margin: 0 0 10px 0;
  431. padding: 10px 15px;
  432. position: relative;}
  433.  
  434. .questionarrow {
  435. width: 13px;
  436. height: 7px;
  437. font-size:30px;
  438. font-family: verdana;
  439. position: absolute;
  440. color: {color:ask};
  441. bottom: -3.5px;
  442. left: 240px;}
  443.  
  444.  
  445.  
  446.  
  447.  
  448. .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);}
  449. .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  450.  
  451. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  452.  
  453.  
  454.  
  455.  
  456. #sideimg {display: block; margin-left: 202px; float: right; margin-top: 19px; width: auto; height: auto; background-color: transparent; position: fixed; z-index:30;}
  457. .simg1 img {width: 135px; height: 160px; margin-bottom: 2px; border: 4px solid {color:fundinho};}
  458.  
  459. #pag {width: 15px; padding:1px; background-color: {color:bgpage}; position:fixed; text-align: center; margin-top: 100px; margin-left: 119px;}
  460.  
  461. #cruz {position: fixed; margin: 200px 0px 0px 60px; }
  462.  
  463. #acruz {width: 39px; position: absolute; margin-left: -92px; margin-top: -365px; color: {color:cruz}; font-size: 60px; -webkit-transform: rotate(-20deg);}
  464. #acruz:hover { -webkit-transform: rotate(0deg);}
  465.  
  466. #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;}
  467.  
  468.  
  469. #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}
  470. #pgs a {background: #000; margin: 30 0px 0 0; padding: 2px 4px; color: {color:background}; text-decoration: none;}
  471. #a:hover {background: {color:sidebar}; color: {color:link hover}; border: none;}
  472. #pgs span.pagina_atual {background: {color:border}; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  473. .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;}
  474.  
  475. #pagina{ margin-top: 25px; margin-left: 305px; width: 100px; float: right; background-color: transparent; position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:1000000 }
  476.  
  477. /*** Paginação by madlyluv.com ***/
  478. #paginacaoml {font-size: 20px; font-family: tahoma; line-height: 24px;}
  479. #paginacaoml a {font-size: 20px; font-family: tahoma; background: transparent; margin: 0 1px 0 0; padding: 2px 2px; color: {color:tags}; text-decoration: none;}
  480. #paginacaoml a:hover {font-size: 20px; font-family: tahoma; background: transparent; border: none;}
  481. #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;}
  482.  
  483.  
  484. #pagination {width:240px; font-family:georgia; text-align:right; font-size:15px; padding:4px; font-style:italic}
  485.  
  486.  
  487. #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}
  488.  
  489.  
  490.  
  491.  
  492. #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;}
  493.  
  494.  
  495. #slideshow {position:fixed; width:180px; height:180px; margin-top:92px; background-color:{color:borda}; padding: 2px; margin-left: 244px; -webkt-transition: all 1s ease-out; -moz-transition: all 1s ease-out; border: 10px solid {color:sidebar};z-index:8000000000000000000000000;-webkt-transition: all 1s ease-out; -moz-transition: all 1s ease-out;}
  496. #slideshow img { position:absolute; top:0; left: 0; width:180px; height:180px; padding: 2px;-webkt-transition: all 1s ease-out; -moz-transition: all 1s ease-out; }
  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. .links2 {position:fixed; margin-left:-66px; margin-top:228px; padding: 0px; text-align: center; z-index:9000000000000000000000000000000000000}
  535.  
  536. .links2 a {float: left; display: block; letter-spacing: 0px; font-size:8px; font-family:tinytots; text-align: center; margin-right: 1px; margin-bottom:1px; width: 59px; height: 16px; background-color: {color:bglinks}; color:{color:links}; text-decoration: none; line-height:16px; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; z-index:8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000; text-transform:uppercase}
  537.  
  538. .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;z-index:9000000000000000000000000000000000000;text-shadow:6px 5px 9px #000;}
  539.  
  540.  
  541.  
  542.  
  543. .links3 {position:fixed; margin-left:-5px; margin-top:228px; padding: 0px; text-align: center; z-index:9000000000000000000000000000000000000}
  544.  
  545.  
  546. .links3 a {float: left; display: block; letter-spacing: 0px; font-size:8px; font-family:tinytots; text-align: center; margin-right: 21px; margin-bottom:1px; width: 60px; background-color: {color:bglinks}; color:{color:links}; text-decoration: none; line-height:16px; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; height: 16px; z-index:100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000;text-transform:uppercase;}
  547.  
  548.  
  549.  
  550. .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; text-shadow:6px 5px 9px #000;}
  551.  
  552.  
  553. .links4 {position:fixed; margin-left:56px; margin-top:228px; padding: 0px; text-align: center; z-index:9000000000000000000000000000000000000;}
  554.  
  555.  
  556.  
  557. .links4 a {float: left; display: block; letter-spacing: 0px; font-size:8px; font-family:tinytots; text-align: center; margin-right: 1px; margin-bottom:1px; width: 60px; background-color:{color:bglinks}; color:{color:links}; text-decoration: none; line-height:16px; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;height: 16px;text-transform:uppercase;}
  558.  
  559. .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; text-shadow:6px 5px 9px #000; }
  560.  
  561.  
  562. .links1 {position:fixed; margin-left:-66px; margin-top:211px; padding: 0px; text-align: center; z-index:9000000000000000000000000000000000000;}
  563.  
  564.  
  565.  
  566. .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: 209px; 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. .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; letter-spacing: 1px }
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576. ::-webkit-scrollbar{width:15px;height:5px;}
  577. ::-webkit-scrollbar-button:start:decrement
  578. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  579. ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  580. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  581. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  582.  
  583. #tumblr_controls{position: fixed!important}
  584. #tumblr_controls{position: fixed!important}
  585. #tumblr_controls{position: fixed!important}
  586. #tumblr_controls{position: fixed!important}
  587.  
  588. #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};}
  589. #info a {background-color: {color:post}; color:{color:text}}
  590. #info a:hover {color: {color:link hover}}
  591.  
  592. #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};}
  593. #info2 a {background-color: {color:post}; color:{color:text}}
  594. #info2 a:hover {color: {color:link hover}}
  595.  
  596.  
  597. #sidebar { position:fixed; opacity:1; margin-top:215px; margin-le ft:70px; position:absolute; -webkit-transition-duration: 1s; -moz-transition-duration: 1s; position: fixed; background-color:{color:sidebar}; font-family: verdana; font-size:9px; width:175px; font-style: none; color: {color:text}; height:80px; line-height:130%; padding: 2px; text-align: center; border-left:5px solid {color:sidebar}; border-right:5px solid {color:sidebar};z-index:80000000000000000000;}
  598.  
  599. #oi23 {text-align: justify; margin-top:75px; margin-left: 418px; 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;}
  600. #oi22{font-size: 18px; font-family: Sofia; letter-spacing: -1px; text-transform: none; line-height: 20px;}
  601.  
  602. @font-face {font-family: "pacifico";src: url(http://static.tumblr.com/ufwwwyn/Do8m4xui1/pacifico.ttf) format("truetype");}
  603.  
  604. .optitle{font-family:pacifico; font-size: 14px; font-style: none;
  605. height: 40px; font-weight: none; background-color:{color:sidebar};color: {color:frase}; margin-left:244px;margin-top:50px; text-transform: none; letter-spacing: 0px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:204px;z-index:8000000000000000;line-height:22px; border-bottom:2px solid {color:text};}
  606.  
  607. .optitle:hover{text-shadow:0px 0px 9px {color:shadows}; color:{color:links};}
  608.  
  609.  
  610. .frasinha {font-family:Calibri; font-size: 11px; font-style: none;
  611. height: 40px; font-weight: none;color: {color:frase}; margin-left:244px;margin-top:70px; text-transform: none; letter-spacing: 0px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:204px;z-index:8000000000000000;line-height:17px; }
  612.  
  613. #haha { margin-left: 242px; margin-top: 298px; width: 207px; font-size: 20px; height: 2px; text-align: justify; background-color:{color:listras}; line-height: 5px; color:transparent; position: fixed;}
  614.  
  615. #haha2 { margin-left: 240px; margin-top: 49px; width: 2px; font-size: 20px; height: 251px; text-align: justify; background-color:{color:listras}; line-height: 510px; color:transparent; position: fixed;}
  616.  
  617. #haha4 { margin-left: 240px; margin-top: 47px; width: 210px; font-size: 20px; height: 2px; text-align: justify; background-color:{color:listras}; line-height: 510px; color:transparent; position: fixed;}
  618.  
  619. #ha{width:135px; text-align: center; font-size: 10px; font-family: calibri;background-color:{color:sidebar}; color: {color:text}; background-attachment: fixed; margin-top: 140px; position: fixed;z-index:80000000000000000000000000000000000000000000000000000000000000000000000000000000000;}
  620.  
  621.  
  622.  
  623.  
  624. #haha3 {width:175px; background-color:{color:sidebar};margin-left: 258px; margin-top: -25px; font-family: calibri; font-size: 10px; height;230px; color: {color:text}; height:150px; letter-spacing: 0px; text-transform: none; border-top: 1px dotted {color:listra}; position: fixed;z-index:800000000000000000000000000000000000000000000000000000000000000000000000000000;opacity:0.0;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  625.  
  626. #haha3:hover {-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;opacity:0.9;}
  627.  
  628. #be {position: fixed; margin-left: 50px; margin-top: 93px; display: none;}
  629.  
  630. #links {width: 10px; float: left; margin-left: 422px; margin-top:299px; padding: 0px; text-align: center; position: fixed; padding: 0px; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out;}
  631.  
  632. #links a {float: left; margin-left: 1px; display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; width: 26px; background-color: {color:bglinks}; color:{color:links}; text-decoration: none; line-height: 14px; height: 16px; overflow: hidden; margin-top: 7px; margin-bottom: 1px; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out;}
  633.  
  634. #links a:hover{text-align: center; background-color: {color:barrinha}; color:{color:linkshover}; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out;}
  635.  
  636. #tay {position: absolute; width: 260px; margin-left: -233px; margin-top: -76px; padding: 0px; text-align: center; z-index:3;}
  637. #tay 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: 7px; width:69px; background-color: {color:bglinkss}; color: {color:linkss}; text-decoration: none; text-transform: uppercase; height: 17px; line-height: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  638. #tay a:hover{text-align: center; background-color: {color:bglinkshover}; color: {color:linkshover};text-shadow:6px 5px 9px #000;}
  639.  
  640.  
  641. </style>
  642.  
  643. </head>
  644.  
  645.  
  646. <body>
  647.  
  648. <div id="tudo">
  649. <div id="msd">
  650. </div></div>
  651.  
  652.  
  653. <div id="masoq">
  654.  
  655. <div class="links1"><a href="{text:Link1}">{text:Link1 Title}</a></div>
  656. <div class="links2"><a href="{text:Link2}">{text:Link2 Title}</a></div>
  657. <div class="links3"><a href="{text:Link3}">{text:Link3 Title}</a></div>
  658. <div class="links4"><a href="{text:Link4}">{text:Link4 Title}</a></div>
  659.  
  660.  
  661. </div>
  662. </div>
  663.  
  664.  
  665. <li class="drawer" id="links">
  666. <a href="/" onclick="be.style.display='block'; return false;">+ (click +)</a>
  667. <div id="be">
  668.  
  669. <div id="tay">
  670. <a href="{text:Link5}">{text:Link5 Title}</a>
  671. <a href="{text:Link6}">{text:Link6 Title}</a>
  672. <a href="{text:Link7}">{text:Link7 Title}</a>
  673. </div>
  674. </div></div>
  675. </div>
  676. </div>
  677. </div>
  678. </li></div>
  679. </div></div>
  680. </div>
  681. </div>
  682. </div>
  683.  
  684. <center><div class="optitle"><center>{text:frase}</center></div></center>
  685. <center><div class="frasinha"><center>{text:frase2}</center></div></center>
  686. <div id="oi23"><div id="oi22">♥</div></div></div>
  687.  
  688. <div id="side">
  689.  
  690. <div id="slideshow"><img class="active" src="{image:sidebar}" alt="" title=" Hug me ?" /></div>
  691.  
  692. <div id="ha"><div id="haha3">{Description}</div></div>
  693.  
  694. <div id="haha"></div>
  695. <div id="haha2"></div>
  696. <div id="haha4"></div>
  697.  
  698. </div></div>
  699.  
  700.  
  701.  
  702. <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>
  703.  
  704. </div>
  705. <font color="{color:tags}">
  706. <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"alt="" title="previous page baby">←</a>{/block:PreviousPage}{/block:Pagination}
  707.  
  708. {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>
  709.  
  710. </div>
  711. </font>
  712. </div>
  713. </div>
  714. </div>
  715. <div id="entries">
  716. {block:Posts}
  717. <div class="danpost">
  718.  
  719. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body} <div id="infu">
  720. <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>
  721. </div>{/block:Text}
  722.  
  723. {block:Photo}{LinkOpenTag} <div id="info">
  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.  
  727. <div class="image"><img src="{PhotoURL-400}"></div>{LinkCloseTag}{/block:Photo}
  728.  
  729. {block:Photoset} <div id="info">
  730. <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>
  731. </div> {Photoset-400} {/block:Photoset}
  732.  
  733.  
  734. {block:Quote}
  735. <div class="qquote"alt="" title="delicate" >❝{Quote}❞</div>
  736. {block:Source}<div class="qsource"alt="" title="via" ><font color="{color:tags}">~ {Source}</font> ♡ </div>{/block:Source}
  737.  
  738. <div id="infu">
  739. <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>
  740. </div>
  741. {/block:Quote}
  742.  
  743. {/block:quote}
  744.  
  745. {block:Link}
  746. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  747. {block:Description}{Description}{/block:Description}
  748. <div id="infu">
  749. <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>
  750. </div>
  751. {/block:Link}
  752.  
  753. {block:Chat}
  754. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  755. <div class="chat"><ul>{block:Lines}
  756. <li class="person{UserNumber}">{block:Label}
  757. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  758. <div id="infu">
  759. <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>
  760. </div>
  761. {/block:Chat}
  762.  
  763. {block:Audio}
  764. <div class="player">{AudioPlayerBlack}</div>
  765. {block:Caption}{Caption}{/block:Caption}
  766. <div id="infu">
  767. <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>
  768. </div>
  769. {/block:Audio}
  770.  
  771. {block:Video}{Video-500}{/block:Video}
  772.  
  773.  
  774. {block:Answer}
  775. <div class="hlanswerinfo">{Asker} asked to me:</div>
  776. <div class="hlanswer">
  777. <img src="{AskerPortraitURL-64}">
  778. {Question}
  779. </div>
  780. {Answer}
  781.  
  782. <div id="infu">
  783. <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>
  784. </div>
  785. {/block:Answer}
  786.  
  787. <div id="cap">
  788. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  789. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  790. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  791.  
  792.  
  793.  
  794.  
  795. </div></div>
  796.  
  797.  
  798.  
  799. {/block:Posts}
  800. {block:PostNotes}<div class="notes"></div>{/block:PostNotes}
  801.  
  802.  
  803.  
  804.  
  805.  
  806.  
  807.  
  808.  
  809. </div>
  810. </div>
  811. </div>
  812. </div>
  813. </div>
  814. </div>
  815.  
  816. </body>
  817. </html>
Add Comment
Please, Sign In to add comment