BabeJeSuisParfait

personalblog43(hiddenthemes)

Apr 29th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.84 KB | None | 0 0
  1. <!--
  2. Theme 2 by allygoat
  3. NOTE : Custom scrollbar only works on Google Chrome and Mozilla Firefox.
  4. -->
  5.  
  6. <html lang="en">
  7. <head>
  8.  
  9. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  10. <link href='http://fonts.googleapis.com/css?family=Ruluko' rel='stylesheet' type='text/css'>
  11.  
  12. <script type="text/javascript">
  13. WebFontConfig = {
  14. google: { families: [ 'Amatic+SC::latin' ] }
  15. };
  16. (function() {
  17. var wf = document.createElement('script');
  18. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  19. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  20. wf.type = 'text/javascript';
  21. wf.async = 'true';
  22. var s = document.getElementsByTagName('script')[0];
  23. s.parentNode.insertBefore(wf, s);
  24. })(); </script>
  25.  
  26. <script type="text/javascript">
  27. WebFontConfig = {
  28. google: { families: [ 'Ruluko::latin' ] }
  29. };
  30. (function() {
  31. var wf = document.createElement('script');
  32. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  33. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  34. wf.type = 'text/javascript';
  35. wf.async = 'true';
  36. var s = document.getElementsByTagName('script')[0];
  37. s.parentNode.insertBefore(wf, s);
  38. })(); </script>
  39.  
  40.  
  41. <title>{Title}
  42. </title>
  43.  
  44. {Block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/Block:ifinfinitescrolling}
  45.  
  46. {block:ifenableminicursor}<style type="text/css">body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}</style>{/block:ifenableminicursor}
  47.  
  48. <link href='http://fonts.googleapis.com/css?family=Ubuntu:300' rel='stylesheet' type='text/css'>
  49.  
  50. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  51.  
  52. <meta name="color:background" content="#FF9046"/>
  53. <meta name="color:text" content="#000000"/>
  54. <meta name="color:title" content="#000000"/>
  55. <meta name="color:links" content="#000000"/>
  56. <meta name="color:link hover" content="#686868"/>
  57.  
  58. <meta name="text:Link One" content="" />
  59. <meta name="text:Link One Title" content="" />
  60. <meta name="text:Link Two" content="" />
  61. <meta name="text:Link Two Title" content="" />
  62. <meta name="text:Link Three" content="" />
  63. <meta name="text:Link Three Title" content="" />
  64. <meta name="text:Link Four" content="" />
  65. <meta name="text:Link Four Title" content="" />
  66. <meta name="text:Link Five" content="" />
  67. <meta name="text:Link Five Title" content="" />
  68.  
  69. <meta name="image:Sidebar" content="1"/>
  70. <meta name="image:Background" content=""/>
  71.  
  72. <meta name="if:home link" content="1"/>
  73. <meta name="if:ask link" content="1"/>
  74. <meta name="if:archive link" content="1"/>
  75. <meta name="if:show blog title" content="0"/>
  76. <meta name="if:show sidebar photo" content="0"/>
  77. <meta name="if:show captions" content="0"/>
  78. <meta name="if:infinite scrolling" content="1"/>
  79. <meta name="if:enable mini cursor" content="1"/>
  80. <meta name="if:rainbow links" content="1"/>
  81. <meta name="if:custom scrollbar" content="0"/?
  82.  
  83.  
  84.  
  85. {block:ifrainbowlinks}
  86. <link rel="shortcut icon" href="{Favicon}">
  87. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  88. <script type='text/javascript'>
  89. //<![CDATA[
  90. var rate = 20;
  91. if (document.getElementById)
  92. window.onerror=new Function("return true")
  93. var objActive; // The object which event occured in
  94. var act = 0; // Flag during the action
  95. var elmH = 0; // Hue
  96. var elmS = 128; // Saturation
  97. var elmV = 255; // Value
  98. var clrOrg; // A color before the change
  99. var TimerID; // Timer ID
  100. if (document.all) {
  101. document.onmouseover = doRainbowAnchor;
  102. document.onmouseout = stopRainbowAnchor;
  103. }
  104. else if (document.getElementById) {
  105. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  106. document.onmouseover = Mozilla_doRainbowAnchor;
  107. document.onmouseout = Mozilla_stopRainbowAnchor;
  108. }
  109. function doRainbow(obj)
  110. {
  111. if (act == 0) {
  112. act = 1;
  113. if (obj)
  114. objActive = obj;
  115. else
  116. objActive = event.srcElement;
  117. clrOrg = objActive.style.color;
  118. TimerID = setInterval("ChangeColor()",100);
  119. }
  120. }
  121.  
  122. function stopRainbow()
  123. {
  124. if (act) {
  125. objActive.style.color = clrOrg;
  126. clearInterval(TimerID);
  127. act = 0;
  128. }
  129. }
  130.  
  131. function doRainbowAnchor()
  132. {
  133. if (act == 0) {
  134. var obj = event.srcElement;
  135. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  136. obj = obj.parentElement;
  137. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  138. break;
  139. }
  140. if (obj.tagName == 'A' && obj.href != '') {
  141. objActive = obj;
  142. act = 1;
  143. clrOrg = objActive.style.color;
  144. TimerID = setInterval("ChangeColor()",100);
  145. }
  146. }
  147. }
  148.  
  149. function stopRainbowAnchor()
  150. {
  151. if (act) {
  152. if (objActive.tagName == 'A') {
  153. objActive.style.color = clrOrg;
  154. clearInterval(TimerID);
  155. act = 0;
  156. }
  157. }
  158. }
  159.  
  160. function Mozilla_doRainbowAnchor(e)
  161. {
  162. if (act == 0) {
  163. obj = e.target;
  164. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  165. obj = obj.parentNode;
  166. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  167. break;
  168. }
  169. if (obj.nodeName == 'A' && obj.href != '') {
  170. objActive = obj;
  171. act = 1;
  172. clrOrg = obj.style.color;
  173. TimerID = setInterval("ChangeColor()",100);
  174. }
  175. }
  176. }
  177.  
  178. function Mozilla_stopRainbowAnchor(e)
  179. {
  180. if (act) {
  181. if (objActive.nodeName == 'A') {
  182. objActive.style.color = clrOrg;
  183. clearInterval(TimerID);
  184. act = 0;
  185. }
  186. }
  187. }
  188.  
  189. function ChangeColor()
  190. {
  191. objActive.style.color = makeColor();
  192. }
  193.  
  194. function makeColor()
  195. {
  196. // Don't you think Color Gamut to look like Rainbow?
  197. // HSVtoRGB
  198. if (elmS == 0) {
  199. elmR = elmV; elmG = elmV; elmB = elmV;
  200. }
  201. else {
  202. t1 = elmV;
  203. t2 = (255 - elmS) * elmV / 255;
  204. t3 = elmH % 60;
  205. t3 = (t1 - t2) * t3 / 60;
  206. if (elmH < 60) {
  207. elmR = t1; elmB = t2; elmG = t2 + t3;
  208. }
  209. else if (elmH < 120) {
  210. elmG = t1; elmB = t2; elmR = t1 - t3;
  211. }
  212. else if (elmH < 180) {
  213. elmG = t1; elmR = t2; elmB = t2 + t3;
  214. }
  215. else if (elmH < 240) {
  216. elmB = t1; elmR = t2; elmG = t1 - t3;
  217. }
  218. else if (elmH < 300) {
  219. elmB = t1; elmG = t2; elmR = t2 + t3;
  220. }
  221. else if (elmH < 360) {
  222. elmR = t1; elmG = t2; elmB = t1 - t3;
  223. }
  224. else {
  225. elmR = 0; elmG = 0; elmB = 0;
  226. }
  227. }
  228. elmR = Math.floor(elmR).toString(16);
  229. elmG = Math.floor(elmG).toString(16);
  230. elmB = Math.floor(elmB).toString(16);
  231. if (elmR.length == 1) elmR = "0" + elmR;
  232. if (elmG.length == 1) elmG = "0" + elmG;
  233. if (elmB.length == 1) elmB = "0" + elmB;
  234. elmH = elmH + rate;
  235. if (elmH >= 360)
  236. elmH = 0;
  237. return '#' + elmR + elmG + elmB;
  238. }
  239. //]]>
  240. </script>
  241. {/block:ifrainbowlinks}
  242.  
  243. <style type="text/css">
  244.  
  245. @import url(http://fonts.googleapis.com/css?family=Amatic+SC);
  246.  
  247.  
  248.  
  249. #permalink {
  250. position: absolute;
  251. margin-top: 0px;
  252. margin-left: 5px;
  253. opacity: 0;
  254. -webkit-transition: all .3s ease;
  255. -moz-transition: all .3s ease;
  256. -o-transition: all .3s ease;
  257. transition: all .3s ease;
  258. }
  259.  
  260. #entry:hover #permalink {
  261. margin-top: 9px;
  262. margin-left: 5px;
  263. opacity: 1;
  264. }
  265.  
  266. .countreblog {
  267. color: #fff;
  268. letter-spacing:1px;
  269. font-family: arial;
  270. font-size:10px;
  271. line-height:14px;
  272. margin: 2px;
  273. background-color: white;
  274. background-repeat:repeat;
  275. border:1px solid rgba(0,0,0,0.1);
  276. padding:3px 5px;
  277. -webkit-border-radius:2px;
  278. moz-border-radius:2px;
  279. -o-border-radius:2px;
  280. border-radius:2px;
  281. }
  282.  
  283. .countreblog a { color: #FFF; }
  284.  
  285. position:fixed !important;
  286. width:auto;
  287. height:auto;
  288. right:3px;
  289. top:26px;
  290. }
  291.  
  292.  
  293.  
  294. {block:ifcustomscrollbar}
  295. ::-webkit-scrollbar {width: 9px; height: 3px; background: #fff}
  296. ::-webkit-scrollbar-thumb {background-color: #000;}
  297. {/block:ifcustomscrollbar}
  298.  
  299. body {
  300. margin:0px;
  301. background-color: {color:Background};
  302. background-image:url({image:Background});
  303. background-attachment: fixed;
  304. background-repeat: repeat;
  305. }
  306.  
  307. body, div, p, textarea, submit, input{
  308. font-family: 'Ruluko', sans-serif;
  309. font-size: 13px;
  310. line-height:{text:text line height};
  311. color:{color:Text};
  312. }
  313.  
  314. p {
  315. margin:0px;
  316. margin-top:0px;
  317. }
  318.  
  319. a:link, a:active, a:visited{
  320. color: {color:links};
  321. text-decoration: none;
  322. }
  323.  
  324. a:hover {
  325. {block:ifnotrainbowlinks}
  326. color:{color:link hover};
  327. {block:ifnotrainbowlinks}
  328. font-weight: normal;
  329. }
  330.  
  331. div#center{
  332. margin:auto;
  333. position:relative;
  334. width:730px;
  335. background-color:;
  336. overflow:auto;
  337. overflow-y:hidden;
  338. }
  339.  
  340. div#content{
  341. float:left;
  342. width:400px;
  343. padding:2px;
  344. padding-bottom:0px;
  345. margin-left:50px;
  346. margin-top:5px;
  347. margin-bottom:2px;
  348. background-color: transparent;
  349. }
  350.  
  351. div#sidebar{
  352. position:fixed !important;
  353. width:190px;
  354. height:auto;
  355. margin-top:150px;
  356. margin-left:600px;
  357. padding:2px;
  358. background-color: transparent;
  359. }
  360.  
  361.  
  362. div#entry{
  363. margin-top:0px;
  364. padding-top:0px;
  365. padding-bottom:2px;
  366. background-color: transparent};
  367. }
  368.  
  369.  
  370.  
  371.  
  372. #postnotes{
  373. text-align: justify;}
  374.  
  375. #postnotes blockquote{
  376. border: 0px;}
  377.  
  378. .credit{
  379. color: #000;
  380. font-family: Ruluko;
  381. font-size:10px;
  382. line-height:11px;
  383. letter-spacing:0px;
  384. }
  385.  
  386. .credit a{
  387. color:#000000;
  388. font-family:arial;
  389. font-size:10px;
  390. line-height:11px;
  391. letter-spacing:0px;
  392. }
  393.  
  394. .title{
  395. font-family: 'Amatic SC', cursive;
  396. font-size: 30px;
  397. line-height: {text:title line height};
  398. color: {color:title};
  399. letter-spacing: 0px;
  400. font-weight: normal;
  401. padding:0px 0px 0px 0px;
  402. }
  403.  
  404.  
  405. blockquote{
  406. padding:0px 0px 2px 5px;
  407. margin:0px 0px 0px 0px;
  408. border-left: 1px solid #555555;
  409. }
  410.  
  411. blockquote p, ul{
  412. margin:0px;
  413. padding:0px;
  414. }
  415.  
  416. a img{border: 0px;}
  417.  
  418. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  419.  
  420. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  421. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  422.  
  423. .notes img{
  424. width:10px;
  425. position:relative;
  426. top:3px;
  427. }
  428.  
  429. .photoset, .photoset_row, div.photoset_photo, .photoset img, .html_photoset {
  430. {block:IndexPage}
  431. width:400px !important;
  432. {/block:IndexPage}
  433. }
  434.  
  435.  
  436.  
  437. </style>
  438.  
  439. <link rel="shortcut icon" href="{Favicon}">
  440. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  441. <meta name="viewport" content="width=820" />
  442. </head>
  443. <body>
  444.  
  445.  
  446.  
  447. <div id="cage">
  448. <div id="center">
  449.  
  450. <div id="sidebar">
  451. <center>
  452. {block:ifshowblogtitle}<span class=title><a title="" href="/">
  453. {Title}
  454. </a></span><br>{/block:ifshowblogtitle}</center>
  455. {block:ifshowsidebarphoto}<center><img src="{image:sidebar}" width=190px></img></center><br>{/block:ifshowsidebarphoto}
  456. <center>
  457. {Description}
  458. </center>
  459.  
  460. {block:ifhomelink}<center><br><a href="/">home</a>&nbsp;{/block:ifhomelink}
  461. {block:ifasklink}<a href="/ask">message</a>&nbsp;{/block:ifasklink}
  462. {block:ifarchivelink}<a href="/archive">archive</a>&nbsp;{/block:ifarchivelink}
  463. <a href="http://n0ds.tumblr.com/">theme</a>
  464. {block:ifLinkOneTitle}
  465. <a href="{text:Link One}" class="link">{text:Link One Title}</a>&nbsp;
  466. {/block:ifLinkOneTitle}
  467. {block:ifLinkTwoTitle}
  468. <a href="{text:Link Two}" class="link">{text:Link Two Title}</a>&nbsp;
  469. {/block:ifLinkTwoTitle}
  470. {block:ifLinkThreeTitle}
  471. <a href="{text:Link Three}" class="link">{text:Link Three Title}</a>&nbsp;
  472. {/block:ifLinkThreeTitle}
  473. {block:ifLinkFourTitle}
  474. <a href="{text:Link Four}" class="link">{text:Link Four Title}</a>&nbsp;
  475. {/block:ifLinkFourTitle}
  476. {block:ifLinkFiveTitle}
  477. <a href="{text:Link Five}" class="link">{text:Link Five Title}&nbsp;</a>
  478. {/block:ifLinkFiveTitle}
  479.  
  480.  
  481. {block:ifnotinfinitescrolling}
  482. <br><p>{block:Pagination}<center>
  483. {block:PreviousPage}<a href="{PreviousPage}"><font size="2">&#8592; </font></a>{/block:PreviousPage}{block:NextPage}<a href="{NextPage}"><font size="2">&#8594;</font></a>{/block:NextPage}</center>{/block:Pagination}
  484. {/block:ifnotinfinitescrolling}
  485. </div>
  486.  
  487. <div id="content">
  488.  
  489. {block:Posts}
  490.  
  491. <div id="entry">
  492.  
  493. {block:IndexPage}
  494. <div id="permalink">
  495. <span class=""><a href="" target="_blank"></a></span>
  496. <span class="countreblog"><a href="{ReblogURL}" target="_blank">Reblog</a></span>
  497. <span class="countreblog"><a href="{Permalink}">Permalink</a></span>
  498. <span class="countreblog"><a href="{Permalink}">{NoteCount}</a></span></div>
  499. {/block:IndexPage}
  500.  
  501. {block:Text}
  502. {block:Title}<span class="title">{Title}</span>{/block:Title}
  503. {Body}
  504. {/block:Text}
  505.  
  506. {block:Link}
  507. <a href="{URL}" class="title">{Name}</a>
  508. {block:Description}{Description}{/block:Description}
  509. {block:Link}
  510.  
  511. {block:Photo}<center>
  512. {block:IndexPage}{LinkOpenTag}<div class="photo"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=400px/></div>{LinkCloseTag}{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=400px/>{LinkCloseTag}{/block:PermalinkPage}</center>
  513. {block:ifshowcaptions}{caption}{/block:ifshowcaptions}
  514. {/block:Photo}
  515.  
  516. {block:Photoset}
  517. <center><div class="photoset_photo">{Photoset-500}</div></center>
  518. {block:ifshowcaptions}{caption}{/block:ifshowcaptions}
  519. {/block:Photoset}
  520.  
  521. {block:Quote}
  522. <span class="title">{Quote}</span>
  523. {block:Source}<p align="center">-{Source}</p>{/block:Source}
  524. </span>
  525. {/block:Quote}
  526.  
  527. {block:Chat}
  528. {block:Title}<span class="title">{Title}</span>{/block:Title}
  529. <ul class="chat">
  530. {block:Lines}
  531. <li class="user_{UserNumber}">
  532. {block:Label}
  533. <span class="label">{Label}</span>
  534. {/block:Label}
  535. {Line}
  536. </li>
  537. {/block:Lines}
  538. </ul>
  539. {/block:Chat}
  540.  
  541. {block:Audio}
  542. <center><div class="audio"><div style="width:400px; height:-10px;"><div style="float:center">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  543. </div></div>{block:ifshowcaptions}{caption}{/block:ifshowcaptions}</center>
  544. {/block:Audio}
  545.  
  546. {block:Video}<center>
  547. {Video-400}</center>{block:ifshowcaptions}{caption}{/block:ifshowcaptions}
  548. {block:Video}
  549.  
  550. {block:PermalinkPage}{block:ifnotshowcaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifnotshowcaptions}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{/block:PermalinkPage}
  551.  
  552. {block:PostNotes}{PostNotes}
  553. {/block:PostNotes}
  554. </div>
  555.  
  556. {/block:Posts}
  557.  
  558. </div></div>
  559.  
  560. </div>
  561. </center>
  562.  
  563. </body>
  564. </html>
Advertisement
Add Comment
Please, Sign In to add comment