Advertisement
ele-disse-adeus

theme25

Apr 29th, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.54 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11">
  2.  
  3. <script type="text/javascript">
  4. //desabilita menu de opcoes ao clicar no botao direito
  5. function desabilitaMenu(e)
  6. {if (window.Event)
  7. {if (e.which == 2 || e.which == 3)
  8. return false;}
  9. else
  10. {event.cancelBubble = true event.returnValue = false; return false;} }
  11. document.oncontextmenu = desabilitaMenu;
  12. document.onmousedown = desabilitaBotaoDireito;
  13. document.onmouseup = desabilitaBotaoDireito;
  14. </script>
  15.  
  16. <title>{title}</title>
  17. <link rel="shortcut icon" href="{favicon}" />
  18.  
  19. <script type="text/javascript">
  20. // <![CDATA[
  21. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  22. var fgcolour="#000"; // foreground colour
  23. var hlcolour="#fff"; // highlight colour
  24. var bgcolour="#fff"; // background colour
  25. var glcolour="#222"; // colour of glow around letters
  26. var speed=66; // speed colours change, 1 second = 1000
  27. var delay=50; // how long to wait between wipes
  28. var alink="http://www.mf2fm.com/rv"; // page to link text to (set to ="" for no link)
  29.  
  30. /****************************
  31. *Multi-Wipe Neon Text Effect*
  32. *(c)2003-12 mf2fm web-design*
  33. * http://www.mf2fm.com/rv *
  34. * DON'T EDIT BELOW THIS BOX *
  35. ****************************/
  36. var w_txt, w_txl;
  37. var w_flp=bgcolour;
  38. var w_sty=Math.floor(Math.random()*8);
  39. var w_cnt=-1;
  40. var wipes=new Array();
  41. var wrand=new Array();
  42. window.onload=function() { if (document.getElementById) {
  43. var i, wiper, wipei;
  44. wiper=document.getElementById("wipe");
  45. w_txt=wiper.firstChild.nodeValue;
  46. w_txl=w_txt.length;
  47. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  48. for (i=0; i<w_txl; i++) {
  49. wipei=document.createElement("span");
  50. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  51. wipes[i]=wipei.style;
  52. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  53. wipes[i].color=fgcolour;
  54. wiper.appendChild(wipei);
  55. }
  56. if (alink) {
  57. wiper.style.cursor="pointer";
  58. wiper.onclick=function() { top.location.href=alink; }
  59. }
  60. for (i=0; i<w_txl; i++) wrand[i]=i;
  61. wiper=setInterval("randwipe()", speed);
  62. }}
  63.  
  64. function c(i, shade) {
  65. if (shade==bgcolour) wipes[i].textShadow="none";
  66. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  67. wipes[i].color=shade;
  68. }
  69.  
  70. function randwipe() {
  71. var w_old;
  72. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  73. else {
  74. w_cnt=-1;
  75. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  76. w_old=w_sty;
  77. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  78. }
  79. }
  80.  
  81. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  82.  
  83. function wipe0() { // curtains
  84. if (w_cnt<Math.floor(w_txl/2)) {
  85. c(w_cnt, hlcolour);
  86. c(w_txl-w_cnt-1, hlcolour);
  87. }
  88. else if (w_cnt<w_txl) {
  89. c(w_cnt, w_flp);
  90. c(w_txl-w_cnt-1, w_flp);
  91. }
  92. }
  93.  
  94. function wipe1() { // random
  95. var i, rand, temp;
  96. if (w_cnt==0) {
  97. for (i=0; i<w_txl; i++) {
  98. rand=Math.floor(Math.random()*w_txl);
  99. temp=wrand[i];
  100. wrand[i]=wrand[rand];
  101. wrand[rand]=temp;
  102. }
  103. }
  104. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  105. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  106. }
  107.  
  108. function wipe2() { // forwards
  109. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  110. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  111. }
  112.  
  113. function wipe3() { // backwards
  114. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  115. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  116. }
  117.  
  118. function wipe4() { // searchlight
  119. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  120. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  121. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  122. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  123. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  124. }
  125.  
  126. function wipe5() { // fade
  127. var i;
  128. if (w_cnt<w_txl+3) {
  129. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  130. var temp="#";
  131. for (i=1; i<6; i+=2) {
  132. var hex1=parseInt(start.substring(i,i+2),16);
  133. var hex2=parseInt(w_flp.substring(i,i+2),16);
  134. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  135. }
  136. for (i=0; i<w_txl; i++) c(i, temp);
  137. }
  138. }
  139.  
  140. function wipe6() { // flash
  141. var i;
  142. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  143. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  144. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  145. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  146. }
  147. }
  148.  
  149. function wipe7() { // checkerboard
  150. var qtr=Math.floor(w_txl/4);
  151. if (w_cnt<qtr) {
  152. c(w_cnt, hlcolour);
  153. c(w_cnt+2*qtr, hlcolour);
  154. }
  155. else if (w_cnt<2*qtr) {
  156. c(w_cnt-qtr, w_flp);
  157. c(w_cnt+qtr, w_flp);
  158. }
  159. else if (w_cnt<3*qtr) {
  160. c(w_cnt-qtr, hlcolour);
  161. c(w_cnt+qtr, hlcolour);
  162. }
  163. else if (w_cnt<w_txl) {
  164. c(w_cnt-2*qtr, w_flp);
  165. c(w_cnt, w_flp);
  166. }
  167. }
  168. // ]]>
  169. </script>
  170. <title>{Title}</title>
  171. <meta name="color:background" content="#eee">
  172. <meta name="image:background" content="/">
  173. <meta name="color:bgcaixa" content="#fff">
  174. <meta name="color:text" content="#777">
  175. <meta name="font:titulo" content="georgia">
  176. <meta name="color:link" content="#000">
  177. <meta name="color:link hover" content="#ccc">
  178. <meta name="color:menu" content="#000">
  179. <meta name="color:text menu" content="#fff">
  180. <meta name="text:menu1" content="URL">
  181. <meta name="text:menu1 nome" content="link">
  182. <meta name="text:menu2" content="URL">
  183. <meta name="text:menu2 nome" content="link 2">
  184. <meta name="text:menu3" content="URL">
  185. <meta name="text:menu3 nome" content="link 3">
  186. <meta name="text:menu4" content="URL">
  187. <meta name="text:menu4 nome" content="link 4">
  188. <meta name="text:menu5" content="URL">
  189. <meta name="text:menu5 nome" content="link 5">
  190.  
  191. <meta name="text:neon" content="I will love you till the end of times">
  192. <meta name="image:sidebar" content="http://data.whicdn.com/images/27611180/tumblr_m33d1pg1ja1qdoxp5o1_500_large.jpg">
  193. <style>
  194. /**centralizacao dont mexa lindinho**/
  195. #center {width:700px;margin:auto;}
  196. /*** fundo do theme ***/
  197. body {background: {color:background} url('{image:background}')fixed; color: {color:text}; font-size: 8pt; font-family: georgia;}
  198.  
  199. .post {background: {color:bgcaixa};margin-top:1px; padding: 5px; }
  200.  
  201. /*** letras ***/
  202. h1 {text-align: center; font: 20px {font:titulo}; color: {color:text};}
  203.  
  204. /*** ask ***/
  205. .bubble {align:right;background: {color:background}; margin:7px 0px 5px 66px;padding:10px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
  206. .bubble p {margin:1px 0px;}
  207. .bubble span {display:block;position:absolute;width:1px;height:1px;font-size: 0;line-height: 1px;left:-10px;top:10px;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:10px solid {color:background};}
  208.  
  209. .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: {color:background}}
  210.  
  211. .tags{background-color:{color:bgcaixa}; padding: 3px; cursor:pointer; -webkit-border-radius: 2px;display: inline-block;width:520px;font-size:7pt;border-top:1px solid {color:background}; border-bottom:1px solid {color:background};text-align:center;}
  212.  
  213. /*** links ***/
  214. a:link,a:active,a:visited { color: {color:link}; text-decoration: none; -webkit-transition-duration: .50s;}
  215. a:hover { color: {color:linkhover};}
  216.  
  217. /*** negrito e talz ***/
  218. b, strong {color: {color:text}; text-decoration: none; cursor: help;}
  219. s {color: {color:text};cursor: help;}
  220. i {color: {color:text}; text-decoration: none;cursor: help;}
  221. u, underline {color: {color:text}; text-decoration: none; border-bottom: 1px dashed {color:text};cursor: help;}
  222.  
  223. /*** Paginação by madlyluv.com ***/
  224. #paginacaoml {font-size: 10px; font-weight: bold; line-height: 21px; text-shadow: 0 1px 1px #fff;}
  225. #paginacaoml a {background: {color:background}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; text-decoration: none;}
  226. #paginacaoml a:hover {background: {color:background}; border: none;}
  227. #paginacaoml span.pagina_atual {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; text-decoration: none;}
  228. #paginacaoml span.info {background: {color:background}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; text-decoration: none;}
  229. .fotosid{background:{color:bgcaixa};margin-top:300px;margin-left:550px;position:fixed;padding:5px; width:250px;-webkit-transition-duration: .90s;}
  230. .fotosid:hover { -webkit-transition-duration: .90s; background:{color:link};opacity:0.8}
  231. .fotosid img {margin-bottom:-3px}
  232. .cdash {background:{color:bgcaixa};margin-top:300px;margin-left:550px;position:fixed;padding:5px; -webkit-transition-duration: .90s;}
  233. .cdash:hover {opacity:0.8;background:{color:link};}
  234. .cdash img {margin-bottom:-3px}
  235. .cmenu {margin-top:300px;margin-left:810px;position:fixed;padding:5px; -webkit-transition-duration: .90s;width:50px;}
  236. #nav {background:{color:menu};float:left;color:{color:text menu};font:8px '04b03';text-transform:uppercase;padding:2px;margin-bottom:1px;width:40px;-webkit-transition-duration: .90s;height:28px;line-height:25px;}
  237. #nav:hover {border-right:20px solid {color:menu};-webkit-transition-duration: .90s;}
  238. .desc {margin-top:280px;position:fixed;margin-left:550px;width:250px;text-align:center;}
  239. .ca {opacity:0;-webkit-transition-duration: .90s;width:240px;z-index:4;padding:5px;text-align:center;overflow:hidden;border:5px solid {color:menu};height:1px;float:left;background:{color:bgcaixa};margin-top:-5px;position: absolute;margin-left:-5px;color:transparent;}
  240. .fotosid:hover .ca {opacity:1;-webkit-transition-duration: .90s;background:{color:bgcaixa};height:155px;color:{color:text};z-index:5}
  241. .fotosid:hover {z-index:5}
  242. #naomexa {position:fixed;margin-top:475px;width:260px;padding:5px;background:{color:bgcaixa};color:{color:menu};margin-left:550px;text-align:center;opacity:0.7;font:8px '04b03';text-transform:uppercase;}
  243. /*** FIM DO CSS ***/
  244. #wipe {font-size:15px}
  245. </style>
  246. </head>
  247. <body><div id="center">
  248. <div class="fotosid"><div class="ca">{Description}</div><img src="{image:sidebar}" width="250px" height="165px"></div><div class="cdash"><img src="{PortraitURL-64}" width="40px"></div><div class="cmenu"><a href="{text:menu1}" id="nav">{text:menu1 nome}</a><a href="{text:menu2}" id="nav">{text:menu2 nome}</a><a href="{text:menu3}" id="nav">{text:menu3 nome}</a><a href="{text:menu4}" id="nav">{text:menu4 nome}</a><a href="{text:menu5}" id="nav">{text:menu5 nome}</a></div><div id="naomexa">theme by <a href="http://themesby-eda.tumblr.com/">ele-disse-adeus</a></div>
  249.  
  250. <div class="desc"><center><span id="wipe">{text:neon}</span></center></div>
  251.  
  252. <div class="post" style="position: absolute; width: 525px">
  253. {block:Posts}
  254.  
  255. <!--TEXTOs-->
  256.  
  257. {block:Text}<div class="post">
  258.  
  259. {block:Title}<a href="{Permalink}" class="title"><h1>{Title}</h1></a>{/block:Title}
  260.  
  261. <div>{Body}</div>
  262.  
  263. </div>{/block:Text}
  264.  
  265.  
  266.  
  267. <!--PERGUNTAS E MENSAGENS-->
  268.  
  269. {block:Answer}<div class="post">
  270.  
  271. <img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker}: {Question}&nbsp;</div>{Answer}
  272.  
  273. </div>{/block:Answer}
  274.  
  275.  
  276.  
  277. <!--LINKS-->
  278.  
  279. {block:Link}<div class="post">
  280.  
  281. <a href="{URL}"><h1>{Name}</h1></a>
  282.  
  283. {block:Description}{Description}{/block:Description}
  284.  
  285.  
  286. </div>{block:Link}
  287.  
  288.  
  289.  
  290. <!--FOTOS-->
  291.  
  292. {block:Photo}<div class="post">
  293. <center>{LinkOpenTag}<img src="{PhotoURL-500}" title="{PhotoAlt}" />{LinkCloseTag}</center><br />
  294.  
  295. {block:Caption}{Caption}{/block:Caption}<br />
  296.  
  297. </div>{/block:Photo}
  298.  
  299.  
  300.  
  301. <!--FRASES-->
  302.  
  303. {block:Quote}<div class="post">
  304.  
  305. <h1>- "{Quote}"</h1>
  306.  
  307. {block:Source}&mdash; {Source}{/block:Source}
  308.  
  309. </div>{/block:Quote}
  310.  
  311.  
  312.  
  313. <!--DIALOGOS-->
  314.  
  315. {block:Chat}<div class="post">
  316.  
  317. {block:Title}<a href="{Permalink}"><h1>{Title}</h1></a>{/block:Title}
  318.  
  319. <table>
  320. {block:Lines}
  321. <tr>
  322. {block:Label}<td class="name">{Label}</td>{block:Label}
  323. <td class="words">{Line}</td>
  324. </tr>
  325. {/block:Lines}
  326. </table><br />
  327.  
  328. </div>{/block:Chat}
  329.  
  330.  
  331.  
  332. <!--MUSICAS-->
  333.  
  334. {block:Audio}<div class="post">
  335.  
  336. <div style="float:right; margin-top: 6px;"><i>Música ouvida {PlayCount} vezes</i> {block:ExternalAudio}(<a href="{ExternalAudioURL}">download!</a>){/block:ExternalAudio}</div>
  337.  
  338. <center>{AudioPlayerWhite}</centeR>
  339.  
  340. {block:Caption}{Caption}{/block:Caption}<br />
  341.  
  342.  
  343. </div>{/block:Audio}
  344.  
  345.  
  346.  
  347. <!--VIDEOS-->
  348.  
  349. {block:Video}<div class="post">
  350.  
  351. <center>{Video-500}</center>
  352.  
  353. {block:Caption}{Caption}{/block:Caption}<br />
  354.  
  355. </div>{/block:Video}
  356.  
  357. <div class="tags">Posted on <a href="{Permalink}">{DayOfMonth}/{MonthNumberWithZero}</a> at {12Hour}:{Minutes}{AmPm} - <a href="{ReblogURL}">Reblog this!</a> {block:NoteCount} - {NoteCount} notes{/block:NoteCount} {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>&<a href="{ReblogRootURL}">original</a>{/block:RebloggedFrom}
  358. </div>
  359.  
  360. {/block:Posts}<br><center><div id="paginacaoml"><span class="info" style="font-weight: normal;">Página <b>{CurrentPage}</b> de <b>{TotalPages}</b></span> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">&laquo;</a>{/block:PreviousPage}{/block:Pagination}
  361. {block:JumpPagination length="10"}
  362. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  363. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  364. {/block:JumpPagination}
  365. {block:Pagination}{block:NextPage}<a href="{NextPage}">&raquo;</a>{/block:NextPage}{/block:Pagination}
  366. </div></center>
  367.  
  368. </div></div></div></div></div></div></div></div></div></div></div></div>
  369.  
  370. </div></body>
  371. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement