BabeJeSuisParfait

personalblog46(h4te)

Apr 29th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.59 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3.  
  4. <!--
  5. Theme by h4te
  6. http://h4te.tumblr.com
  7. Please don't remove the credit.
  8. -->
  9.  
  10. <!-- DEFAULT VARIABLES -->
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <meta name="color:background" content="#E4DAFD"/>
  13. <meta name="color:text" content="#000"/>
  14. <meta name="color:title" content="#000"/>
  15. <meta name="color:link" content="#777"/>
  16. <meta name="color:hover" content="#ccc"/>
  17. <meta name="image:sidebar" content="1"/>
  18. <meta name="image:background" content=""/>
  19. <meta name="if:show photo" content="0"/>
  20. <meta name="if:infinite scrolling" content="0"/>
  21. <meta name="if:show arrows" content="1"/">
  22. <meta name="if:show permalinks on homepage" content="1"/">
  23. <meta name="if:show notes" content="1"/">
  24. <meta name="if:show note count" content="1"/">
  25. <meta name="if:show caption" content="1"/">
  26. <meta name="if:show blog title" content="0"/>
  27. <meta name="if:shadow" content="1"/>
  28. <meta name="if:shadow links" content="0"/>
  29. <meta name="if:dotted border" content="0"/>
  30. <meta name="if:solid border" content="1"/>
  31. <meta name="if:tiny cursor" content="0"/>
  32. <meta name="if:tiny scrollbar" content="0"/>
  33. <meta name="if:rainbow links" content="0"/>
  34. <meta name="if:Ask Link" content="1"/>
  35. <meta name="if:Archive Link" content="1"/>
  36. <meta name="text:Link One" content="" />
  37. <meta name="text:Link One Title" content="" />
  38. <meta name="text:Link Two" content="" />
  39. <meta name="text:Link Two Title" content="" />
  40. <meta name="text:Link Three" content="" />
  41. <meta name="text:Link Three Title" content="" />
  42. <meta name="text:Link Four" content="" />
  43. <meta name="text:link Four Title" content="" />
  44. <meta name="text:link Five" content="" />
  45. <meta name="text:link Five Title" content="" />
  46.  
  47. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  48.  
  49. {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
  50.  
  51. {block:ifrainbowlinks}
  52. <script type='text/javascript'>
  53.  
  54. //<![CDATA[
  55.  
  56. var rate = 50;
  57.  
  58. if (document.getElementById)
  59.  
  60. window.onerror=new Function("return true")
  61.  
  62. var objActive; // The object which event occured in
  63.  
  64. var act = 0; // Flag during the action
  65.  
  66. var elmH = 0; // Hue
  67.  
  68. var elmS = 128; // Saturation
  69.  
  70. var elmV = 255; // Value
  71.  
  72. var clrOrg; // A color before the change
  73.  
  74. var TimerID; // Timer ID
  75.  
  76. if (document.all) {
  77.  
  78. document.onmouseover = doRainbowAnchor;
  79.  
  80. document.onmouseout = stopRainbowAnchor;
  81.  
  82. }
  83.  
  84. else if (document.getElementById) {
  85.  
  86. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  87.  
  88. document.onmouseover = Mozilla_doRainbowAnchor;
  89.  
  90. document.onmouseout = Mozilla_stopRainbowAnchor;
  91.  
  92. }
  93.  
  94. function doRainbow(obj)
  95.  
  96. {
  97.  
  98. if (act == 0) {
  99.  
  100. act = 1;
  101.  
  102. if (obj)
  103.  
  104. objActive = obj;
  105.  
  106. else
  107.  
  108. objActive = event.srcElement;
  109.  
  110. clrOrg = objActive.style.color;
  111.  
  112. TimerID = setInterval("ChangeColor()",100);
  113.  
  114. }
  115.  
  116. }
  117.  
  118.  
  119.  
  120. function stopRainbow()
  121.  
  122. {
  123.  
  124. if (act) {
  125.  
  126. objActive.style.color = clrOrg;
  127.  
  128. clearInterval(TimerID);
  129.  
  130. act = 0;
  131.  
  132. }
  133.  
  134. }
  135.  
  136.  
  137.  
  138. function doRainbowAnchor()
  139.  
  140. {
  141.  
  142. if (act == 0) {
  143.  
  144. var obj = event.srcElement;
  145.  
  146. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  147.  
  148. obj = obj.parentElement;
  149.  
  150. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  151.  
  152. break;
  153.  
  154. }
  155.  
  156. if (obj.tagName == 'A' && obj.href != '') {
  157.  
  158. objActive = obj;
  159.  
  160. act = 1;
  161.  
  162. clrOrg = objActive.style.color;
  163.  
  164. TimerID = setInterval("ChangeColor()",100);
  165.  
  166. }
  167.  
  168. }
  169.  
  170. }
  171.  
  172.  
  173.  
  174. function stopRainbowAnchor()
  175.  
  176. {
  177.  
  178. if (act) {
  179.  
  180. if (objActive.tagName == 'A') {
  181.  
  182. objActive.style.color = clrOrg;
  183.  
  184. clearInterval(TimerID);
  185.  
  186. act = 0;
  187.  
  188. }
  189.  
  190. }
  191.  
  192. }
  193.  
  194.  
  195.  
  196. function Mozilla_doRainbowAnchor(e)
  197.  
  198. {
  199.  
  200. if (act == 0) {
  201.  
  202. obj = e.target;
  203.  
  204. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  205.  
  206. obj = obj.parentNode;
  207.  
  208. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  209.  
  210. break;
  211.  
  212. }
  213.  
  214. if (obj.nodeName == 'A' && obj.href != '') {
  215.  
  216. objActive = obj;
  217.  
  218. act = 1;
  219.  
  220. clrOrg = obj.style.color;
  221.  
  222. TimerID = setInterval("ChangeColor()",100);
  223.  
  224. }
  225.  
  226. }
  227.  
  228. }
  229.  
  230.  
  231.  
  232. function Mozilla_stopRainbowAnchor(e)
  233.  
  234. {
  235.  
  236. if (act) {
  237.  
  238. if (objActive.nodeName == 'A') {
  239.  
  240. objActive.style.color = clrOrg;
  241.  
  242. clearInterval(TimerID);
  243.  
  244. act = 0;
  245.  
  246. }
  247.  
  248. }
  249.  
  250. }
  251.  
  252.  
  253.  
  254. function ChangeColor()
  255.  
  256. {
  257.  
  258. objActive.style.color = makeColor();
  259.  
  260. }
  261.  
  262.  
  263.  
  264. function makeColor()
  265.  
  266. {
  267.  
  268. // Don't you think Color Gamut to look like Rainbow?
  269.  
  270. // HSVtoRGB
  271.  
  272. if (elmS == 0) {
  273.  
  274. elmR = elmV; elmG = elmV; elmB = elmV;
  275.  
  276. }
  277.  
  278. else {
  279.  
  280. t1 = elmV;
  281.  
  282. t2 = (255 - elmS) * elmV / 255;
  283.  
  284. t3 = elmH % 60;
  285.  
  286. t3 = (t1 - t2) * t3 / 60;
  287.  
  288. if (elmH < 60) {
  289.  
  290. elmR = t1; elmB = t2; elmG = t2 + t3;
  291.  
  292. }
  293.  
  294. else if (elmH < 120) {
  295.  
  296. elmG = t1; elmB = t2; elmR = t1 - t3;
  297.  
  298. }
  299.  
  300. else if (elmH < 180) {
  301.  
  302. elmG = t1; elmR = t2; elmB = t2 + t3;
  303.  
  304. }
  305.  
  306. else if (elmH < 240) {
  307.  
  308. elmB = t1; elmR = t2; elmG = t1 - t3;
  309.  
  310. }
  311.  
  312. else if (elmH < 300) {
  313.  
  314. elmB = t1; elmG = t2; elmR = t2 + t3;
  315.  
  316. }
  317.  
  318. else if (elmH < 360) {
  319.  
  320. elmR = t1; elmG = t2; elmB = t1 - t3;
  321.  
  322. }
  323.  
  324. else {
  325.  
  326. elmR = 0; elmG = 0; elmB = 0;
  327.  
  328. }
  329.  
  330. }
  331.  
  332. elmR = Math.floor(elmR).toString(16);
  333.  
  334. elmG = Math.floor(elmG).toString(16);
  335.  
  336. elmB = Math.floor(elmB).toString(16);
  337.  
  338. if (elmR.length == 1) elmR = "0" + elmR;
  339.  
  340. if (elmG.length == 1) elmG = "0" + elmG;
  341.  
  342. if (elmB.length == 1) elmB = "0" + elmB
  343.  
  344. elmH = elmH + rate;
  345.  
  346. if (elmH >= 360)
  347.  
  348. elmH = 0;
  349.  
  350. return '#' + elmR + elmG + elmB;
  351.  
  352. }
  353.  
  354. //]]>
  355.  
  356. </script>
  357. {/block:ifrainbowlinks}
  358.  
  359. <style type="text/css">
  360.  
  361. {block:iftinycursor}
  362. body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}
  363. {/block:iftinycursor}
  364.  
  365. body {
  366. margin:0px;
  367. background-color: {color:Background};
  368. background-image:url({image:Background});
  369. background-attachment: fixed;
  370. background-repeat: repeat;}
  371. body, div, p, textarea, submit, input{
  372. font-family: cambria;
  373. font-size: 10px;
  374. line-height:10px;
  375. letter-spacing:0px;
  376. color:{color:Text};
  377. }
  378.  
  379. {block:iftinyscrollbar}
  380. ::-webkit-scrollbar {width: 8px; height: 4px; background: #FFFFFF; }
  381.  
  382. ::-webkit-scrollbar-thumb { background-color: #ffffff; -webkit-border-radius: 1ex; border: 1px solid black;}
  383. {/block:iftinyscrollbar}
  384.  
  385. p {
  386. margin:0px;
  387. margin-top:0px;
  388. }
  389.  
  390.  
  391. a:link, a:active, a:visited{
  392. color: {color:Link};
  393. text-decoration: none;
  394. -webkit-transition: color 0.3s ease-out;
  395. -moz-transition: color 0.3s ease-out;
  396. transition: color 0.3s ease-out;
  397. }
  398.  
  399. a:hover {
  400. color:{color:Hover};
  401. text-decoration: none;
  402. font-style: none;
  403. }
  404.  
  405.  
  406. div#center{
  407. margin:auto;
  408. position:relative;
  409. width:840px;
  410. background-color:;
  411. overflow:auto;
  412. overflow-y:hidden;
  413. }
  414.  
  415. div#content{
  416. float:right;
  417. width:350px;
  418. padding-left:2px;
  419. padding-right: 2px;
  420. padding-top: 2px;
  421. margin-right: 165px;
  422. margin-top: 10px;
  423. margin-bottom: 20px;
  424. background: #fff;
  425. {block:ifshadow}box-shadow: 0px 5px 20px rgba(0,0,0,0.35);{/block:ifshadow}
  426. {block:ifsolidborder}border: 1px solid black;{/block:ifsolidborder}
  427. {block:ifdottedborder}border: 1px dotted black;{/block:ifdottedborder}
  428. }
  429.  
  430. div#entry{
  431. background-color:;
  432. margin-top:px;
  433. padding-top:0px;
  434. padding-bottom:2px;
  435. }
  436.  
  437. #entry .perma a{
  438. color:{Color:Links};}
  439.  
  440. #entry .perma{
  441. width:350px;
  442. position: absolute;
  443. font-family: cambria;
  444. font-size: 10px;
  445. line-height: 15px;
  446. text-align: center;
  447. overflow:hidden;
  448. opacity: 0.0;
  449. background-color:#fff;
  450. }
  451.  
  452. #entry:hover .perma{
  453. overflow:visible;
  454. -webkit-transition: opacity 0.2s linear; opacity: 0.9;
  455. -webkit-transition: all 0.2s linear;
  456. -moz-transition: all 0.2s linear;
  457. transition: all 0.2s linear;
  458. }
  459.  
  460.  
  461. div#sidebar{
  462. position:fixed !important;
  463. width: 164px;
  464. height:auto;
  465. margin-top: 295px;
  466. margin-left: 125px;
  467. padding: 3px;
  468. line-height:11px;
  469. letter-spacing:0px;
  470. background-color:white;
  471. {block:ifsolidborder}border: 1px solid black;{/block:ifsolidborder}
  472. {block:ifshadow}box-shadow: 0px 5px 20px rgba(0,0,0,0.35);{/block:ifshadow}
  473. {block:ifdottedborder}border: 1px dotted black;{/block:ifdottedborder}
  474. }
  475.  
  476.  
  477. #postnotes{
  478. text-align: justify;}
  479.  
  480. #postnotes blockquote{
  481. border: 0px;}
  482.  
  483. .title{
  484. font-family: cambria;
  485. font-size: 13px;
  486. line-height: 15px;
  487. color: {color:Title};
  488. letter-spacing: 0px;
  489. font-weight: normal;
  490. padding:0px 0px 0px 0px;
  491. }
  492.  
  493. .blogtitle{
  494. font-family: cambria;
  495. font-size: 13px;
  496. line-height: 15px;
  497. color: {color:Title};
  498. letter-spacing: 0px;
  499. font-weight: normal;
  500. padding:0px 0px 0px 0px;
  501. }
  502.  
  503. .video embed, .post div.video object {width:350px !important; height:180px !important;}
  504.  
  505. blockquote{
  506. padding:0px 0px 2px 5px;
  507. margin:0px 0px 2px 1px;
  508. border-left: 1px dotted #555555;
  509. }
  510.  
  511. blockquote p, ul{
  512. margin:0px;
  513. padding:0px;
  514. }
  515.  
  516.  
  517. a img{border: 0px;}
  518.  
  519. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  520.  
  521. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  522. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  523.  
  524. .notes img{width:10px; position:relative; top:3px;}
  525.  
  526. .permalink{
  527. display: block;
  528. font-size: 10px;
  529. text-align: right;
  530. text-decoration: none;
  531. }
  532.  
  533.  
  534. small{font-size: 90%;}
  535.  
  536.  
  537. </style>
  538.  
  539.  
  540. <link rel="shortcut icon" href="{Favicon}" />
  541. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  542. <meta name="viewport" content="width=820" />
  543.  
  544. </head>
  545. <body>
  546.  
  547. {block:ifshadowlinks}<style type="text/css">a:hover {
  548.  
  549. color:{color:Text};
  550.  
  551. text-decoration: none;
  552.  
  553. font-style: none;
  554.  
  555. text-shadow:0px 0px 5px #02305A;}</style>{/block:ifshadowlinks}
  556.  
  557.  
  558. <script type="text/javascript" src="http://static.tumblr.com/ubmlcww/EGiltkm9b/istb.txt"></script>
  559.  
  560. <div id="cage">
  561. <div id="center">
  562. <div id="sidebar">
  563. <center>
  564. {block:ifshowblogtitle}<span class=blogtitle><a href="/">
  565. {Title}
  566. </a></span><br>{/block:ifshowblogtitle}
  567. {block:ifshowphoto}<a href="/"><img src="{image:sidebar}" width=150px></a><BR>{/block:ifshowphoto}
  568. {Description}{block:ifLinkOneTitle}<BR><BR>
  569. <a href="{text:Link One}" class="link">{text:Link One Title}</a>&nbsp;
  570. {/block:ifLinkOneTitle}
  571. {block:ifLinkTwoTitle}
  572. <a href="{text:Link Two}" class="link">{text:Link Two Title}</a>&nbsp;
  573. {/block:ifLinkTwoTitle}
  574. {block:ifLinkThreeTitle}
  575. <a href="{text:Link Three}" class="link">{text:Link Three Title}</a>&nbsp;
  576. {/block:ifLinkThreeTitle}
  577. {block:ifLinkFourTitle}
  578. <a href="{text:Link Four}" class="link">{text:Link Four Title}</a>&nbsp;
  579. {/block:ifLinkFourTitle}
  580. {block:ifLinkFiveTitle}
  581. <a href="{text:Link Five}" class="link">{text:Link Five Title}&nbsp;</a>
  582. {/block:ifLinkFiveTitle}
  583.  
  584.  
  585. {block:ifnotlinkonetitle}<BR><BR>{/block:ifnotlinkonetitle}{block:ifasklink}<a href="/ask">message</a>&nbsp;{/block:ifasklink}
  586.  
  587. {block:ifarchivelink}<a href="/archive">archive</a>&nbsp;{/block:ifarchivelink}
  588.  
  589. <script src='http://static.tumblr.com/ubmlcww/aXpls2t3m/posts.txt ' type='text/javascript'></script>
  590.  
  591. {block:ifshowarrows}
  592. <BR>
  593. <BR>
  594. {block:PreviousPage}<a href="{PreviousPage}"><font size="3"><b>&larr;</b></font></a>{/block:PreviousPage}
  595. {block:NextPage}<a href="{NextPage}"><font size="3"><b>&rarr;</b></font></a>{/block:NextPage}
  596. {/block:ifshowarrows}
  597. {block:ifinfinitescrolling}{/block:ifinfinitescrolling}
  598. </div>
  599.  
  600.  
  601. <div id="content">
  602. {block:Posts}
  603. <div id="entry">
  604.  
  605. {block:IndexPage}
  606. {block:ifshowpermalinksonhomepage}<div class="perma">
  607. <a href="{permalink}">{NoteCountWithLabel}</a> / &nbsp;<a href="{ReblogURL}" target="_blank">reblog</a></span></div>{/block:ifshowpermalinksonhomepage}
  608. {/block:IndexPage}
  609.  
  610. {block:Text}
  611. {block:Title}<span class="title"><a href="{permalink}">{Title}</a></span><br>{/block:Title}
  612. <span class="entrytext">{Body}</span>{/block:Text}
  613.  
  614. {block:Link}
  615. <a href="{URL}" class="title"><a href="{permalink}">{Name}</a></a><br>
  616. {block:Description}{Description}{/block:Description}
  617. {block:Link}
  618.  
  619. {block:Photo}
  620. {LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=350px/></a>{LinkCloseTag}
  621. {/block:Photo}
  622.  
  623.  
  624. {block:Quote}
  625. <a href="{permalink}">{Quote}</a></span>
  626. {block:Source}<strong>{Source}</strong>{/block:Source}
  627. {/block:Quote}
  628.  
  629. {block:Chat}
  630. {block:Title}<span class="title"><a href="{permalink}">{Title}</a></span>{/block:Title}
  631. <ul class="chat">
  632. {block:Lines}
  633. <li class="user_{UserNumber}">
  634. {block:Label}
  635. <span class="label">{Label}</span>
  636. {/block:Label}
  637.  
  638. {Line}
  639. </li>
  640. {/block:Lines}
  641. {/block:Chat}
  642.  
  643.  
  644. {block:Audio}
  645. <center><a href="{permalink}"><div style="width:220px; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;"></a>
  646. {FormattedPlayCount} plays {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br>
  647. {/block:Audio}
  648.  
  649. {block:Video}<center>
  650. <div class="video"><a href="{permalink}">{Video-400}</a></div></center>
  651. {block:Video}
  652.  
  653. {block:PermalinkPage}<center>{block:ifshowcaption}{block:Caption}{block:ifshowcaption}{Caption}{/block:ifshowcaption}{/block:Caption}{/block:ifshowcaption}{block:NoteCount}{block:ifshownotecount}{NoteCountWithLabel}{block:ifshownotecount}{/block:NoteCount}</center>{/block:PermalinkPage}
  654.  
  655. {block:PostNotes}{block:ifshownotes}<BR><BR>{PostNotes}{/block:ifshownotes}
  656. {/block:PostNotes}
  657. </div>
  658.  
  659. {/block:Posts}
  660. {block:ifshowarrows}{/block:ifshowarrows}
  661. </center>
  662. </div></div>
  663.  
  664. </div>
  665. </center>
  666.  
  667. <!--
  668. Theme by h4te
  669. http://h4te.tumblr.com
  670. Please don't remove the credit.
  671. -->
  672.  
  673. </body>
  674. </html>
Advertisement
Add Comment
Please, Sign In to add comment