kaahamorim

Theme 23- TEARS4EVER (NOVO)

Apr 24th, 2012
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.15 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <!-- ----------------------------------
  6.  
  7. theme por Kassyane Amorim tears4ever.tumblr.com
  8.  
  9. ---------------------------------- -->
  10. <head>
  11.  
  12. <!-- DEFAULT VARIABLES -->
  13. <meta name="color:background" content="#B3B3B3" />
  14. <meta name="color:link" content="#000000" />
  15. <meta name="color:hover" content="#fff" />
  16. <meta name="color:link sidbar" content="#000000" />
  17. <meta name="color:link sidbar hover" content="#000000" />
  18. <meta name="color:bg links" content="#fff"/>
  19. <meta name="color:bg links hover" content="#ffffff"/>
  20. <meta name="color:text links" content="#000000"/>
  21. <meta name="color:text links hover" content="#000000"/>
  22. <meta name="color:sidebar" content="#fff" />
  23. <meta name="color:text" content="#000000" />
  24. <meta name="color:text sidbar" content="#000000" />
  25. <meta name="color:post" content="#ffffff" />
  26.  
  27. <meta name="text:title" content="uma frase aqui nao muito grande : )" />
  28.  
  29.  
  30. <meta name="color:doideira" content="" />
  31.  
  32.  
  33.  
  34.  
  35. <meta name="color:doideira2" content="" />
  36.  
  37.  
  38.  
  39. <meta name="color:doideira3" content="" />
  40.  
  41.  
  42.  
  43.  
  44. <meta name="color:doideira4" content="" />
  45.  
  46.  
  47. <meta name="color:scrollbar" content="#696969" />
  48. <meta name="image:background" content=""/>
  49. <meta name="color:descri" content="#fff" />
  50.  
  51. <meta name="color:scrollbarbg" content="#8f4531" />
  52. <meta name="image:sidebar 1" content="" />
  53. <meta name="if:WipeTitle" content="1"/>
  54.  
  55.  
  56. <meta name="text:Link1" content="/" />
  57. <meta name="text:Link1 Title" content="link" />
  58. <meta name="text:Link2" content="/" />
  59. <meta name="text:Link2 Title" content="link" />
  60. <meta name="text:Link3" content="/" />
  61. <meta name="text:Link3 Title" content="link" />
  62. <meta name="text:Link4" content="/" />
  63. <meta name="text:Link4 Title" content="link" />
  64. <meta name="text:Link5" content="/" />
  65. <meta name="text:Link5 Title" content="link" />
  66. <meta name="text:Link6" content="/" />
  67. <meta name="text:Link6 Title" content="link" />
  68. <meta name="text:Link7" content="/" />
  69. <meta name="text:Link7 Title" content="link" />
  70. <meta name="text:Link8" content="link" />
  71. <meta name="text:Link8 Title" content="link" />
  72. <meta name="text:Link9" content="link" />
  73. <meta name="text:Link9 Title" content="/" />
  74.  
  75. <script type="text/javascript">
  76.  
  77. // <![CDATA[
  78.  
  79. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  80.  
  81. var fgcolour="{color:doideira}"; // foreground colour
  82.  
  83. var hlcolour="{color:doideira2}"; // highlight colour
  84.  
  85. var bgcolour="{color:doideira3}"; // background colour
  86.  
  87. var glcolour="{color:doideira4}"; // colour of glow around letters
  88.  
  89. var speed=66; // speed colours change, 1 second = 1000
  90.  
  91. var delay=50; // how long to wait between wipes
  92.  
  93. var alink="/"; // page to link text to (set to ="" for no link)
  94.  
  95.  
  96.  
  97. /****************************
  98.  
  99. *Multi-Wipe Neon Text Effect*
  100.  
  101. *(c)2003-12 mf2fm web-design*
  102.  
  103. * http://www.mf2fm.com/rv *
  104.  
  105. * DON'T EDIT BELOW THIS BOX *
  106.  
  107. ****************************/
  108.  
  109. var w_txt, w_txl;
  110.  
  111. var w_flp=bgcolour;
  112.  
  113. var w_sty=Math.floor(Math.random()*8);
  114.  
  115. var w_cnt=-1;
  116.  
  117. var wipes=new Array();
  118.  
  119. var wrand=new Array();
  120.  
  121. window.onload=function() { if (document.getElementById) {
  122.  
  123. var i, wiper, wipei;
  124.  
  125. wiper=document.getElementById("wipe");
  126.  
  127. w_txt=wiper.firstChild.nodeValue;
  128.  
  129. w_txl=w_txt.length;
  130.  
  131. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  132.  
  133. for (i=0; i<w_txl; i++) {
  134.  
  135. wipei=document.createElement("span");
  136.  
  137. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  138.  
  139. wipes[i]=wipei.style;
  140.  
  141. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  142.  
  143. wipes[i].color=fgcolour;
  144.  
  145. wiper.appendChild(wipei);
  146.  
  147. }
  148.  
  149. if (alink) {
  150.  
  151. wiper.style.cursor="pointer";
  152.  
  153. wiper.onclick=function() { top.location.href=alink; }
  154.  
  155. }
  156.  
  157. for (i=0; i<w_txl; i++) wrand[i]=i;
  158.  
  159. wiper=setInterval("randwipe()", speed);
  160.  
  161. }}
  162.  
  163.  
  164.  
  165. function c(i, shade) {
  166.  
  167. if (shade==bgcolour) wipes[i].textShadow="none";
  168.  
  169. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  170.  
  171. wipes[i].color=shade;
  172.  
  173. }
  174.  
  175.  
  176.  
  177. function randwipe() {
  178.  
  179. var w_old;
  180.  
  181. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  182.  
  183. else {
  184.  
  185. w_cnt=-1;
  186.  
  187. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  188.  
  189. w_old=w_sty;
  190.  
  191. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  192.  
  193. }
  194.  
  195. }
  196.  
  197.  
  198.  
  199. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  200.  
  201.  
  202.  
  203. function wipe0() { // curtains
  204.  
  205. if (w_cnt<Math.floor(w_txl/2)) {
  206.  
  207. c(w_cnt, hlcolour);
  208.  
  209. c(w_txl-w_cnt-1, hlcolour);
  210.  
  211. }
  212.  
  213. else if (w_cnt<w_txl) {
  214.  
  215. c(w_cnt, w_flp);
  216.  
  217. c(w_txl-w_cnt-1, w_flp);
  218.  
  219. }
  220.  
  221. }
  222.  
  223.  
  224.  
  225. function wipe1() { // random
  226.  
  227. var i, rand, temp;
  228.  
  229. if (w_cnt==0) {
  230.  
  231. for (i=0; i<w_txl; i++) {
  232.  
  233. rand=Math.floor(Math.random()*w_txl);
  234.  
  235. temp=wrand[i];
  236.  
  237. wrand[i]=wrand[rand];
  238.  
  239. wrand[rand]=temp;
  240.  
  241. }
  242.  
  243. }
  244.  
  245. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  246.  
  247. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  248.  
  249. }
  250.  
  251.  
  252.  
  253. function wipe2() { // forwards
  254.  
  255. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  256.  
  257. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  258.  
  259. }
  260.  
  261.  
  262.  
  263. function wipe3() { // backwards
  264.  
  265. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  266.  
  267. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  268.  
  269. }
  270.  
  271.  
  272.  
  273. function wipe4() { // searchlight
  274.  
  275. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  276.  
  277. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  278.  
  279. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  280.  
  281. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  282.  
  283. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  284.  
  285. }
  286.  
  287.  
  288.  
  289. function wipe5() { // fade
  290.  
  291. var i;
  292.  
  293. if (w_cnt<w_txl+3) {
  294.  
  295. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  296.  
  297. var temp="#";
  298.  
  299. for (i=1; i<6; i+=2) {
  300.  
  301. var hex1=parseInt(start.substring(i,i+2),16);
  302.  
  303. var hex2=parseInt(w_flp.substring(i,i+2),16);
  304.  
  305. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  306.  
  307. }
  308.  
  309. for (i=0; i<w_txl; i++) c(i, temp);
  310.  
  311. }
  312.  
  313. }
  314.  
  315.  
  316.  
  317. function wipe6() { // flash
  318.  
  319. var i;
  320.  
  321. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  322.  
  323. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  324.  
  325. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  326.  
  327. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  328.  
  329. }
  330.  
  331. }
  332.  
  333.  
  334.  
  335. function wipe7() { // checkerboard
  336.  
  337. var qtr=Math.floor(w_txl/4);
  338.  
  339. if (w_cnt<qtr) {
  340.  
  341. c(w_cnt, hlcolour);
  342.  
  343. c(w_cnt+2*qtr, hlcolour);
  344.  
  345. }
  346.  
  347. else if (w_cnt<2*qtr) {
  348.  
  349. c(w_cnt-qtr, w_flp);
  350.  
  351. c(w_cnt+qtr, w_flp);
  352.  
  353. }
  354.  
  355. else if (w_cnt<3*qtr) {
  356.  
  357. c(w_cnt-qtr, hlcolour);
  358.  
  359. c(w_cnt+qtr, hlcolour);
  360.  
  361. }
  362.  
  363. else if (w_cnt<w_txl) {
  364.  
  365. c(w_cnt-2*qtr, w_flp);
  366.  
  367. c(w_cnt, w_flp);
  368.  
  369. }
  370.  
  371. }
  372.  
  373. // ]]>
  374.  
  375. </script>
  376.  
  377.  
  378.  
  379.  
  380.  
  381. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  382. <title>{Title}</title>
  383. <link rel="shortcut icon" href="{Favicon}">
  384. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  385. {block:Description}
  386. <meta name="description" content="{MetaDescription}" />
  387. {/block:Description}
  388.  
  389. {block:IfEnableEndlessScrolling}
  390. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  391. {/block:IfEnableEndlessScrolling}
  392.  
  393.  
  394. <style type="text/css">
  395.  
  396.  
  397. ::-webkit-scrollbar{width:6px;height:6px;}
  398.  
  399. ::-webkit-scrollbar-button:start:decrement
  400.  
  401. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  402.  
  403. ::-webkit-scrollbar-track-piece{background-color:{color:scrollbarbg};-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  404.  
  405. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  406.  
  407. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  408.  
  409.  
  410.  
  411.  
  412. body {
  413. background-color: {color:background};
  414. color:{color:text};
  415. font-family: verdana;
  416. font-size: 10px;
  417. text-align: center;
  418. line-height:120%;
  419. margin:0;
  420. padding:0;
  421. background-image:url('{image:background}');
  422. background-attachment: fixed
  423. }
  424.  
  425. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition-duration: .40s;}
  426. a:hover {color: {color:hover}; background-color: {color:bg hover}; text-decoration: none;}
  427.  
  428. p {margin: 6px 0 0 0}
  429.  
  430. blockquote {border-left:2px {color:post} solid; padding-left:5px; margin:0px 2px 0px 10px}
  431.  
  432.  
  433. blockquote {padding:0px; padding-left:5px; margin:5px; border-left:2px solid {color:background}}
  434.  
  435. #entries{margin-top:30px; }
  436.  
  437. .post {width: 500px; background-color: {color:post}; padding: 10px; margin-bottom: 1px; text-align: justify; font-family: verdana; font-size: 11px; position: relative; color:{color:text}; margin-left:410px;}
  438.  
  439. #xright {position: fixed; margin-top: 52px; margin-left: 357px; overflow: auto; width: 524px; height: 703px;}
  440.  
  441.  
  442.  
  443. .tags{font-size: 9px; color:{color:link}; font-family: verdana; background-color: {color:post};}
  444. .tags a:hover {background-color: {color:post}; color:{linkhover}; -webkit-transition: all .2s linear; -moz-transition: all .2s linear; transition: all 0.2s linear;}
  445.  
  446.  
  447. h1 {font-family: georgia; text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  448.  
  449. h1 a {text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  450.  
  451. h1 a:hover {text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  452.  
  453.  
  454.  
  455. .image {text-align: center; border: 0px; }
  456. .image img {max-width: 500px; margin-bottom: 3px }
  457. .markqt {font-size: 90px; font-family: {font:title}; color:{color:text}; line-height: 90px; margin-left: 5px; opacity: 0.1; filter:alpha (opacity=100);}
  458. .qt {font-family: verdana; font-size: 18px; line-height: 23px; margin-top: -95px; margin-left: 45px; padding: 10px;}
  459. .qsr{margin: 5px 15px 0 0; text-align: right; text-transform: none;}
  460. .qsr a, a:hover{text-transform: none;}
  461.  
  462. .chat {line-height: 12px; list-style: none }
  463. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
  464. .person1 {background-color:{color:background}; color: {color:text}; }
  465. .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  466. .person2 {color: {color:text}; }
  467. .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  468.  
  469. .audio{background-color:black; display:block;}
  470. .source{display:none}
  471.  
  472. #questions {background-color:{color:background}; color: {color:text}; padding:10px; margin-bottom:0px; font-family:verdana; font-size:9px}
  473. #questions a {color:{color:link}}
  474.  
  475.  
  476.  
  477. #cap {width: 500px; margin-top: -2px;}
  478.  
  479. #dda {font-size: 9px; font-family: verdana; text-transform: lowercase;}
  480. .dda a {font-size: 9px;}
  481.  
  482.  
  483.  
  484. .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase;}
  485. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
  486.  
  487. .qqmarks{
  488. font-size: 40px;
  489. font-weight: bold;
  490. line-height: 80px;
  491. font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  492. opacity: 0.2;
  493. filter:alpha (opacity=20)
  494. }
  495.  
  496.  
  497.  
  498. .qquote {font-family: verdana; text-align: justify; font-size: 9px; letter-spacing: -1px; line-height: 15px; padding: 3px;}
  499.  
  500. .qsource {text-align: center; text-transform: none; margin-left: 0px; margin-bottom: 5px;}
  501.  
  502. .qsource a, a:hover{text-transform: none;}
  503.  
  504.  
  505. .notes {width: 520px; padding: 0px; margin-top: 0px; margin-bottom: 10px; font-size: 9px; text-align: left; margin-left:410px;}
  506.  
  507. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11; margin-left:410px;}
  508.  
  509. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  510.  
  511. .notes img{display: none; border:0px}
  512.  
  513.  
  514.  
  515.  
  516. b{text-transform: block; color:;}
  517. i{text-transform: italic; color:{color:text}}
  518. p{margin:2px 0 2px 0}
  519. u {text-decoration: none; border-bottom: 1px dashed;}
  520. d1 {opacity:0.8}
  521. d2 {opacity:0.6}
  522. d3 {opacity:0.4}
  523. d4 {opacity:0.2}
  524.  
  525.  
  526.  
  527. /* PAGINAÇÃO BY CINTIA HEYILOVE */
  528.  
  529. #page{margin-left: 63px; margin-top:269px; background-color:{color:sidebar}; color: {color:text sidbar}; float:center; width:338px; height:15px; position:fixed; border-right: 8px solid transparent; border-left: 4px solid transparent; border-bottom: 3px solid transparent; -webkit-border-bottom-left-radius:0px}
  530. .pgs{padding:3px; font-family:georgia; font-style: ; font-size: 20px; letter-spacing:-1px; z-index:9000000}
  531.  
  532. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  533.  
  534.  
  535. /* page */
  536.  
  537.  
  538.  
  539. .bruset {font-family: georgia; position: fixed; margin-left: 120px; margin-top: 245px; font-size: 38px; z-index: 0; -webkit-transform: rotate(90deg);}
  540.  
  541. .bruset a {color: ; background-color: transparent;}
  542.  
  543. .bruset a:hover {color: ;}
  544.  
  545.  
  546.  
  547. .bruset2 {font-family: georgia; position: fixed; margin-left: -470px; margin-top: 345px; font-size: 38px; z-index: 0; -webkit-transform: rotate(90deg);}
  548.  
  549. .bruset2 a {color: ; background-color: transparent;}
  550.  
  551. .bruset2 a:hover {color: ;}
  552.  
  553.  
  554.  
  555. #cre {float: left; margin-top: 289px; margin-left: 63px; width: 346px; background-color:{color:sidebar}; color: {color:text sidbar}; padding: 2px; font-size: 8px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: 0px; font-family: tinytots ;text-transform: uppercase ; -webkit-transform: rotate(0deg) }
  556.  
  557. #cre a{font-size: 8px; color:{color:link}}
  558. #cre2 {float: left; margin-top: 307px; margin-left: 63px; width: 346px; background-color:{}; color: {}; padding: 2px; font-size: 8px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: 0px; font-family: tinytots ;text-transform: uppercase ; -webkit-transform: rotate(0deg) }
  559.  
  560. #cre2 a{font-size: 8px; color:{color:link}}
  561.  
  562. #des {float: left; margin-top: 192px; margin-left: 65px; width: 343px; background-color: {color:sidebar}; color: {color:text sidbar}; padding: 2px; font-size: 9px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: -1px; font-family: verdana ;text-transform:; height: 63px; border: 0px solid #000 ; z-index:150000000 }
  563.  
  564.  
  565. #des a{font-size: 9px; color:#fff}
  566.  
  567.  
  568.  
  569. #descri {position:fixed; text-align: justify; font-size: 9px; font-family: verdana; margin-left: 223px; width: 120px; height:auto; background-color: transparent; color:{color:descri}; padding: 1px; margin-top: 133px;
  570.  
  571. text-shadow:0px 2px 5px #000;
  572.  
  573. z-index:9999;}
  574.  
  575.  
  576. #part
  577. {float:left;
  578. position: fixed;
  579. margin-left:263px;
  580. margin-top:192px;}
  581.  
  582. #about
  583. {width:340px;
  584. margin-left:-200px;
  585. height:65px;
  586. padding:5px;
  587. text-align: justify;
  588. overflow:auto;
  589. font-size:9px;letter-spacing: -1px;
  590. font-family:verdana;
  591. color:{color:text};
  592. background-color:{color:sidebar};}
  593.  
  594.  
  595. #cadulink {margin-top: 28px; margin-left: 65px; position:fixed; width: 751px; font-family: tinytots; text-transform: uppercase; z-index:180000000 0 }
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603. #cadulink a{font-size: 8px; color: {color:link sidbar}; background-color: {color:bg links}; padding: 4px 1px 4px 1px; display:block; margin-bottom: 1px; width: 105px; height: 9px; text-align: center; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; line-height: 5px; font-family: tinytots; text-transform: uppercase; border: 0px solid #fff; }
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611. #cadulink a:hover{color: {color:link sidbar hover}; background-color: {color:bg links hover}; letter-spacing: 0px; margin-left: 0px; -webkit-transition: all 1.0s ease-out; -moz-transition: all 0.4s ease-out;}
  612.  
  613.  
  614. #ttl {float: left; margin-top: 0px; margin-left: 65px; width: 338px; background-color: {color:sidebar}; color: {color:text sidbar}; padding: 5px; font-size: 18px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: 0px; font-family: georgia;text-transform: ; height: 15px; border: 0px solid #000; }
  615.  
  616.  
  617.  
  618. #ttl a{font-size: 8px; color: {color:text sidbar}; }
  619.  
  620.  
  621.  
  622.  
  623. #pic {margin-top: 28px; margin-left: 175px; width: 233px; height: 158px;
  624.  
  625.  
  626.  
  627. position: fixed; padding: 0px;
  628.  
  629.  
  630.  
  631. background-color: #fff; border: 2px solid {color:sidebar} ; -webkit-transform: rotate(0deg); z-index: 6000; }
  632.  
  633.  
  634.  
  635. #pic img{width: 233px; height: 158px;}
  636.  
  637. #pic img:hover{; opacity:1;
  638.  
  639. -webkit-transition: all 1.0s ease-out; -moz-transition: all 2.5s ease-out; }
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646. </style>
  647.  
  648.  
  649.  
  650. <div id="ttl"><span id="wipe">{title}</span></div>
  651.  
  652.  
  653.  
  654. <div id="part">
  655. <div id="about">
  656. {Description}
  657. </div>
  658. </div>
  659.  
  660. <div id="cadulink">
  661.  
  662. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  663. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  664. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  665. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  666. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  667. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  668. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}
  669. {block:ifLink8}<a href="{text:Link8}">{text:Link8 Title}</a> {/block:ifLink8}
  670. {block:ifLink9}<a href="{text:Link9}">{text:Link9 Title}</a> {/block:ifLink9}
  671. </div>
  672. </div>
  673.  
  674.  
  675. <div id="cre">« Theme por <b>Kassyane Amorim - <a href="http://tears4ever.tumblr.com">TEARS4EVER</b></a> » </a></div></div>
  676.  
  677. <div id="page">
  678. <div class="pgs">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">« </a> {/block:PreviousPage}{block:NextPage}<a href="{NextPage}"> »</a>{/block:NextPage}{/block:Pagination}</font></font></div></div></div></div>
  679.  
  680. <div id="descri">
  681. {text:title}
  682. </div>
  683.  
  684.  
  685. <div id="pic"><img src="{image:sidebar 1}"/>
  686.  
  687.  
  688. </div></div>
  689.  
  690.  
  691.  
  692. </div></div>
  693. <div id="entries">
  694. <div style="border: 0px (20, 50, 50); overflow: auto; background-color: transparent; width: 935px; height: 600px; padding: 0px 5px 5px 5px;  line-height: 100%">
  695. {block:Posts}
  696. <div class="post">
  697.  
  698. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  699.  
  700. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  701.  
  702. {block:Photoset}{Photoset-500}{/block:Photoset}
  703.  
  704. {block:Quote}
  705. <div class="qquote"><big><big><big><big><big><big>&#10077;</big></big></big></big></big></big></big>{Quote}</div>
  706. {block:Source}<div class="qsource">— {Source}</center></div>{/block:Source}
  707. {/block:Quote}
  708.  
  709. {block:Link}
  710. <h1><a href="{URL}" {Target}><big><big>{Name}</a></big></big></h1>
  711. {block:Description}{Description}{/block:Description}
  712. {/block:Link}
  713.  
  714. {block:Chat}
  715. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  716. <div class="chat"><ul>{block:Lines}
  717. <li class="person{UserNumber}">{block:Label}
  718. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  719. {/block:Chat}
  720.  
  721. {block:Audio}
  722. <br>
  723. <div class="audio">{AudioPlayerBlack}</div>
  724. {block:Caption}{Caption}{/block:Caption}
  725. {/block:Audio}
  726.  
  727. {block:Video}{Video-500}{/block:Video}
  728.  
  729.  
  730.  
  731.  
  732. {block:Answer}<div id="questions">{Asker} gemeu gostoso: "{Question}"</div>
  733. {Answer}{/block:answer}
  734.  
  735. <div id="cap">
  736. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  737. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  738. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  739.  
  740. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  741. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  742. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  743. {/block:ContentSource}</div></div>
  744. <br>
  745. <div class="tags">{block:HasTags}<b> in(diretas) aqui →</b> {block:Tags}<a href="{TagURL}" > {Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  746.  
  747. <div id="dda">
  748.  
  749.  
  750. <div style="float:left;" class="tags">
  751. {block:Date} <a href="{Permalink}">{TimeAgo}</a> {/block:Date} {block:NoteCount} • <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:IndexPage} • <a href="{ReblogUrl}" target="_blank"><b>reblogue esse caralho mano</b></a>{/block:IndexPage}<br>
  752. {block:RebloggedFrom} originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  753. </span>{/block:RebloggedFrom} {block:RebloggedFrom} • via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  754. </div>
  755. </ br>
  756. <br clear="all" /></div></div>
  757.  
  758.  
  759. {/block:Posts}
  760. {block:PostNotes}
  761. <div id="notes"><div id="ntstext">{PostNotes}</div></div>
  762. {/block:PostNotes}
  763.  
  764. </div>
  765. </div>
  766. </div></div></div>
  767. </div></div>
  768.  
  769. </body>
  770. </html>
Advertisement
Add Comment
Please, Sign In to add comment