BabeJeSuisParfait

personalblog1

Apr 27th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.76 KB | None | 0 0
  1. <head>
  2.  
  3. <script type="text/javascript">
  4. // <![CDATA[
  5. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  6. var fgcolour="#4B2963"; // foreground colour
  7. var hlcolour="#9982AF"; // highlight colour
  8. var bgcolour="#ffffff"; // background colour
  9. var glcolour="#A387B6"; // colour of glow around letters
  10. var speed=66; // speed colours change, 1 second = 1000
  11. var delay=50; // how long to wait between wipes
  12. var alink="/"; // page to link text to (set to ="" for no link)
  13.  
  14. /****************************
  15. *Multi-Wipe Neon Text Effect*
  16. *(c)2003-12 mf2fm web-design*
  17. * http://www.mf2fm.com/rv *
  18. * DON'T EDIT BELOW THIS BOX *
  19. ****************************/
  20. var w_txt, w_txl;
  21. var w_flp=bgcolour;
  22. var w_sty=Math.floor(Math.random()*8);
  23. var w_cnt=-1;
  24. var wipes=new Array();
  25. var wrand=new Array();
  26. window.onload=function() { if (document.getElementById) {
  27. var i, wiper, wipei;
  28. wiper=document.getElementById("wipe");
  29. w_txt=wiper.firstChild.nodeValue;
  30. w_txl=w_txt.length;
  31. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  32. for (i=0; i<w_txl; i++) {
  33. wipei=document.createElement("span");
  34. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  35. wipes[i]=wipei.style;
  36. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  37. wipes[i].color=fgcolour;
  38. wiper.appendChild(wipei);
  39. }
  40. if (alink) {
  41. wiper.style.cursor="pointer";
  42. wiper.onclick=function() { top.location.href=alink; }
  43. }
  44. for (i=0; i<w_txl; i++) wrand[i]=i;
  45. wiper=setInterval("randwipe()", speed);
  46. }}
  47.  
  48. function c(i, shade) {
  49. if (shade==bgcolour) wipes[i].textShadow="none";
  50. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  51. wipes[i].color=shade;
  52. }
  53.  
  54. function randwipe() {
  55. var w_old;
  56. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  57. else {
  58. w_cnt=-1;
  59. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  60. w_old=w_sty;
  61. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  62. }
  63. }
  64.  
  65. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  66.  
  67. function wipe0() { // curtains
  68. if (w_cnt<Math.floor(w_txl/2)) {
  69. c(w_cnt, hlcolour);
  70. c(w_txl-w_cnt-1, hlcolour);
  71. }
  72. else if (w_cnt<w_txl) {
  73. c(w_cnt, w_flp);
  74. c(w_txl-w_cnt-1, w_flp);
  75. }
  76. }
  77.  
  78. function wipe1() { // random
  79. var i, rand, temp;
  80. if (w_cnt==0) {
  81. for (i=0; i<w_txl; i++) {
  82. rand=Math.floor(Math.random()*w_txl);
  83. temp=wrand[i];
  84. wrand[i]=wrand[rand];
  85. wrand[rand]=temp;
  86. }
  87. }
  88. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  89. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  90. }
  91.  
  92. function wipe2() { // forwards
  93. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  94. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  95. }
  96.  
  97. function wipe3() { // backwards
  98. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  99. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  100. }
  101.  
  102. function wipe4() { // searchlight
  103. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  104. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  105. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  106. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  107. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  108. }
  109.  
  110. function wipe5() { // fade
  111. var i;
  112. if (w_cnt<w_txl+3) {
  113. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  114. var temp="#";
  115. for (i=1; i<6; i+=2) {
  116. var hex1=parseInt(start.substring(i,i+2),16);
  117. var hex2=parseInt(w_flp.substring(i,i+2),16);
  118. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  119. }
  120. for (i=0; i<w_txl; i++) c(i, temp);
  121. }
  122. }
  123.  
  124. function wipe6() { // flash
  125. var i;
  126. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  127. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  128. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  129. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  130. }
  131. }
  132.  
  133. function wipe7() { // checkerboard
  134. var qtr=Math.floor(w_txl/4);
  135. if (w_cnt<qtr) {
  136. c(w_cnt, hlcolour);
  137. c(w_cnt+2*qtr, hlcolour);
  138. }
  139. else if (w_cnt<2*qtr) {
  140. c(w_cnt-qtr, w_flp);
  141. c(w_cnt+qtr, w_flp);
  142. }
  143. else if (w_cnt<3*qtr) {
  144. c(w_cnt-qtr, hlcolour);
  145. c(w_cnt+qtr, hlcolour);
  146. }
  147. else if (w_cnt<w_txl) {
  148. c(w_cnt-2*qtr, w_flp);
  149. c(w_cnt, w_flp);
  150. }
  151. }
  152. // ]]>
  153. </script>
  154.  
  155.  
  156.  
  157.  
  158. <!-- DEFAULT VARIABLES -->
  159. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  160. <meta name="color:background" content="#17A3B6"/>
  161. <meta name="color:text" content="#000"/>
  162. <meta name="color:title" content="#000"/>
  163. <meta name="color:link" content="#777"/>
  164. <meta name="color:hover" content="#ccc"/>
  165. <meta name="image:sidebar" content=""/>
  166. <meta name="if:show photo" content="0"/>
  167. <meta name="if:infinite scrolling" content="1"/>
  168. <meta name="if:tiny scrollbar" content="1"/>
  169.  
  170.  
  171. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  172.  
  173. {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
  174. <style type="text/css">
  175.  
  176. #biter
  177.  
  178.  
  179.  
  180.  
  181. #bite a {display:block}
  182.  
  183.  
  184.  
  185.  
  186. #bite .death {margin-top:-40px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  187.  
  188.  
  189.  
  190.  
  191. #bite:hover .death {margin-top:2px;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
  192.  
  193.  
  194. body {
  195. margin:0px;
  196. background-color: {color:Background};
  197. background-image:url({image:Background});
  198. background-attachment: fixed;
  199. background-repeat: repeat;}
  200. body, div, p, textarea, submit, input{
  201. font-family: littlefont;
  202. font-size: 8px;
  203. line-height:9px;
  204. letter-spacing:0px;
  205. color:{color:Text};
  206. }
  207.  
  208. p {
  209. margin:0px;
  210. margin-top:0px;
  211. }
  212.  
  213.  
  214. a:link, a:active, a:visited{
  215. color: {color:Link};
  216. text-decoration: none;
  217. -webkit-transition: color 0.3s ease-out;
  218. -moz-transition: color 0.3s ease-out;
  219. transition: color 0.3s ease-out;
  220. }
  221.  
  222. a:hover{
  223. color:{color:Hover};
  224. -webkit-transition: color 0.2s ease-out;
  225. -moz-transition: color 0.2s ease-out;
  226. text-decoration: none;
  227. font-style: none;}
  228.  
  229.  
  230. div#center{
  231. margin:auto;
  232. position:relative;
  233. width:640px;
  234. background-color:;
  235. overflow:auto;
  236. overflow-y:hidden;
  237. }
  238.  
  239. div#content{
  240. float:right;
  241. width:304px;
  242. margin-top: 0px;
  243. padding-left:0px;
  244. padding-right: 0px;
  245. padding-top: 0px;
  246. margin-right: 130px;
  247. background: transparent;
  248. }
  249.  
  250. div#entry{
  251. background-color:;
  252. margin-bottom: 0px;
  253. padding-top:0px;
  254. padding-bottom:0px;
  255. }
  256.  
  257. #entry .perma a{
  258. color:{color:Link};
  259. }
  260.  
  261.  
  262.  
  263. #entry .perma{
  264. position:absolute;
  265. text-align:left;
  266. font-family:littlefont;
  267. text-transform:uppercase;
  268. letter-spacing:2px;
  269. font-size:8px;
  270. overflow:hidden;
  271. height:30px;
  272. width:160px;
  273. padding-left:3px;
  274. padding-right:3px;
  275. margin-left:400px;
  276. border-left: 2px solid #000000;
  277. opacity:0;
  278. color:;
  279. background-color: trans;
  280. -webkit-transition: opacity 1s linear;-webkit-transition: all 0.9s ease-in-out;-moz-transition: all 0.9s ease-in-out;-o-transition: all 0.9s ease-in-out;
  281. }
  282.  
  283. #entry:hover .perma{
  284. margin-left:307px;
  285. width:100px;
  286. opacity:1;
  287. }
  288.  
  289.  
  290. div#sidebar{
  291. position:fixed !important;
  292. width: 268px;
  293. height:auto;
  294. margin-top: 150px;
  295. margin-left: -165px;
  296. padding: 0px;
  297. line-height:11px;
  298. letter-spacing:0px;
  299. margin-bottom: 0px;
  300. background-color:;
  301. }
  302.  
  303. .navigate {display: block;
  304. width: 43px;
  305. height: 18px;
  306. background-color:transparent;
  307. background: url('http://www.hellostar.org/wp-admin/images/q1.gif') no-repeat left;
  308. font-size:8px;
  309. letter-spacing:0px;
  310. font-family: littlefont;
  311. margin-top:5px;
  312. margin-left:3px;
  313. line-height:18px;
  314. text-align:center;
  315. -webkit-transition-duration: .6s;
  316. border-top-right-radius:70px;
  317. border-bottom-right-radius:70px;
  318. border-top-left-radius:70px;
  319. border-bottom-left-radius:70px;
  320. display: inline-block;
  321. }
  322.  
  323. .navigate:hover {
  324. background-color:transparent;
  325. background: url('http://www.hellostar.org/wp-admin/images/q2.gif') no-repeat left;
  326. -moz-transition: all .2s ease-in-out;
  327. -o-transition: all .2s ease-in-out;
  328. transition: all .2s ease-in-out;
  329. -webkit-transition: all .2s ease-in-out;
  330. -webkit-transition-duration: .8s;
  331. transform: rotate(360deg);
  332. border-top-right-radius:0px;
  333. border-bottom-right-radius:0px;
  334. border-top-left-radius:0px;
  335. border-bottom-left-radius:0px;
  336. }
  337.  
  338. #postnotes{
  339. text-align: justify;}
  340.  
  341. #postnotes blockquote{
  342. border: 0px;}
  343.  
  344. @font-face { font-family: "sunshine"; src: url('http://static.tumblr.com/5fd89aw/U3vli7rvs/sunshine_in_my_soul.ttf'); }
  345.  
  346.  
  347.  
  348. .title{
  349. font-family: 'sunshine', cursive;
  350. font-size: 13px;
  351. line-height: 15px;
  352. color: {color:Title};
  353. letter-spacing: 0px;
  354. font-weight: normal;
  355. padding:0px 0px 0px 0px;
  356. }
  357.  
  358. .blogtitle{
  359. font-family: 'sunshine', cursive;
  360. font-size: 34px;
  361. line-height: 15px;
  362. color: {color:Title};
  363. letter-spacing: 0px;
  364. font-weight: normal;
  365. padding:0px 0px 0px 0px;
  366. }
  367.  
  368. .video embed, .post div.video object {width:300px !important; height:180px !important;}
  369.  
  370. blockquote{
  371. padding:0px 0px 2px 5px;
  372. margin:0px 0px 2px 1px;
  373. border-left: 1px dotted #555555;
  374. }
  375.  
  376. blockquote p, ul{
  377. margin:0px;
  378. padding:0px;
  379. }
  380.  
  381.  
  382. a img{border: 0px;}
  383.  
  384. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  385.  
  386. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  387. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  388.  
  389. .notes img{width:10px; position:relative; top:3px;}
  390.  
  391. .permalink{
  392. display: block;
  393. font-size: 10px;
  394. text-align: right;
  395. text-decoration: none;
  396. }
  397.  
  398.  
  399. .permalink{ display: block;
  400. font-size: 8px;
  401. text-align: right;
  402. background-color:{color:Entry};}
  403.  
  404. small{font-size: 90%;}
  405.  
  406. @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
  407.  
  408.  
  409. </style>
  410.  
  411.  
  412. <link rel="shortcut icon" href="{Favicon}">
  413. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  414. <meta name="viewport" content="width=820" />
  415.  
  416.  
  417.  
  418. <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
  419. <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
  420. <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
  421. <script type="text/javascript">
  422. $(document).ready(function() {
  423. $().UItoTop({ easingType: 'easeOutQuart' });
  424. });
  425. </script>
  426.  
  427. </head>
  428. <body>
  429. <div>
  430.  
  431. <div id="cage">
  432.  
  433. <div id="center">
  434.  
  435.  
  436.  
  437.  
  438. <div id="sidebar">
  439. <center>
  440. <div id="bite">
  441. <div class="blogtitle"><a href="/"><span id="wipe">{Title}</span></a></div>
  442. <br><br><br>
  443. <div class="death">
  444. <div class="navigate"><a href="/"><center>Home</center></a></div> <div class="navigate"><a href="/ask"><center>Ask</center></a></div> <div class="navigate"><a href="/faq"><center>Faq</center></a></div> <div class="navigate"><a href="/etc"><center>Etc.</center></a></div> <div class="navigate"><a href="http://alyshasthemes.tumblr.com"><center>Love</center></a>
  445. </div>
  446. </div>
  447. {Description}
  448. </center>
  449. <big><b><div style="float: right; position: fixed; bottom: 5px; left: 5px; text-transform:lowercase;"><a href="http://www.rev-rse.tumblr.com"><small> © theme</small></a></div></big></b>
  450. {block:ifinfinitescrolling}{/block:ifinfinitescrolling}
  451. </div>
  452.  
  453.  
  454. <div id="content">
  455. {block:Posts}
  456. <div id="entry">
  457.  
  458. {block:Text}
  459. {block:Title}<span class="title">{Title}</span><br>{/block:Title}
  460. <span class="entrytext">{Body}</span>
  461. <span class="permalink"><a href="{permalink}">{notecount}</a></span>
  462. {/block:Text}
  463.  
  464. {block:Link}
  465. <a href="{URL}" class="title">{Name}</a><br>
  466. {block:Description}{Description}{/block:Description}
  467. <span class="permalink"><a href="{permalink}">{notecount}</a></span>
  468. {block:Link}
  469.  
  470. {block:Photo}<center>
  471. {block:IndexPage}
  472. <div class="perma">
  473. <a href="{permalink}">{TimeAgo}</a> <a href="{permalink}">{NoteCountWithLabel}</a> <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  474. {/block:IndexPage}
  475. {LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=304px></a>{LinkCloseTag}</center>{block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}
  476. {/block:Photo}
  477.  
  478. {block:Quote}
  479. {Quote}</span>
  480. {block:Source}<strong>{Source}</strong>{/block:Source}
  481. <span class="permalink"><a href="{permalink}">{notecount}</a></span>
  482. {/block:Quote}
  483.  
  484. {block:Chat}
  485. {block:Title}<span class="title">{Title}</span>{/block:Title}
  486. <ul class="chat">
  487. {block:Lines}
  488. <li class="user_{UserNumber}">
  489. {block:Label}
  490. <span class="label">{Label}</span>
  491. {/block:Label}
  492.  
  493. {Line}
  494. </li>
  495. {/block:Lines}
  496. <span class="permalink"><a href="{permalink}">{notecount}</a></span>
  497. {/block:Chat}
  498.  
  499.  
  500. {block:Audio}
  501. <center><div style="width:220px; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
  502. {FormattedPlayCount} plays {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br>
  503. {/block:Audio}
  504.  
  505. {block:Video}<center>
  506. <div class="video">{Video-400}</div></center>
  507. <span class="permalink"><a href="{permalink}">{notecount}</a></span>
  508. {block:Video}
  509.  
  510. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}{/block:PermalinkPage}
  511.  
  512. {block:PostNotes}{PostNotes}
  513. {/block:PostNotes}
  514. </div>
  515.  
  516. {/block:Posts}
  517. {block:ifshowarrows}{/block:ifshowarrows}
  518. </center>
  519. </div></div>
  520.  
  521. </div>
  522. </center>
  523. </div>
  524. </div></div></div></div></div></div></div></div></div></div>
  525.  
  526. </body>
  527.  
  528. </html>
Advertisement
Add Comment
Please, Sign In to add comment