parispier

Theme27: Lost Paths

Jun 21st, 2013
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.36 KB | None | 0 0
  1. <!---- theme made by nialljhoren ---->
  2. <!---- do not use as base code, remove credit, or claim as your own --->
  3.  
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6. <head><title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11. <script>
  12. window.onload = function () {
  13. document.body.insertAdjacentHTML( 'beforeEnd', '<iframe id="my-like-frame" style="display:none;"></iframe>' );
  14. document.addEventListener( 'click', function ( event ) {
  15. var myLike = event.target;
  16. if( myLike.className.indexOf( 'my-like' ) > -1 ) {
  17. var frame = document.getElementById( 'my-like-frame' ),
  18. liked = ( myLike.className == 'my-liked' ),
  19. command = liked ? 'unlike' : 'like',
  20. reblog = myLike.getAttribute( 'data-reblog' ),
  21. id = myLike.getAttribute( 'data-id' ),
  22. oauth = reblog.slice( -8 );
  23. frame.src = 'http://www.tumblr.com/' + command + '/' + oauth + '?id=' + id;
  24. liked ? myLike.className = 'my-like' : myLike.className = 'my-liked';
  25. };
  26. }, false );
  27. };
  28. </script>
  29.  
  30. <meta name="color:background" content="#ffffff"/>
  31. <meta name="color:text" content="#747474" />
  32. <meta name="color:link" content="#a3a0a3" />
  33. <meta name="color:linkhovercolor" content="#c48e8e" />
  34. <meta name="color:navlink" content="#aaa8a7" />
  35. <meta name="color:navlinkhovercolor" content="#6b6a6a" />
  36. <meta name="color:scrollbar" content="#b1b1b1"/>
  37.  
  38. <meta name="text:Link1" content="/" />
  39. <meta name="text:Link1 Title" content="link 1" />
  40. <meta name="text:Link2" content="/" />
  41. <meta name="text:Link2 Title" content="link 2" />
  42. <meta name="text:Link3" content="/" />
  43. <meta name="text:Link3 Title" content="link 3" />
  44. <meta name="text:Link4" content="/" />
  45. <meta name="text:Link4 Title" content="link 4" />
  46.  
  47. <meta name="image:sidebar" content=""/>
  48.  
  49. <style type="text/css">
  50.  
  51. ::-webkit-scrollbar {
  52. width:6px;
  53. height:6px;
  54. }
  55.  
  56. ::-webkit-scrollbar-track {
  57. background-color:{color:background};
  58. }
  59.  
  60. ::-webkit-scrollbar-thumb {
  61. background-color:{color:scrollbar};
  62. }
  63.  
  64. body {
  65. background:{color:background};
  66. margin:0px;
  67. color:{color:text};
  68. font-size:10px;
  69. line-height:100%;
  70. font-family:times new roman;
  71. }
  72.  
  73. a {
  74. text-decoration:none;
  75. outline:none;
  76. -moz-outline-style:none;
  77. color:{color:link};
  78. -webkit-transition: all 0.5s ease-in-out;
  79. -moz-transition: all 0.5s ease-in-out;
  80. -o-transition: all 0.5s ease-in-out;
  81. }
  82.  
  83. a:hover {
  84. color:{color:linkhovercolor};
  85. -webkit-transition: all 0.5s ease-in-out;
  86. -moz-transition: all 0.5s ease-in-out;
  87. -o-transition: all 0.5s ease-in-out;
  88. }
  89.  
  90. img {
  91. border:none;
  92. }
  93.  
  94. blockquote {
  95. padding-left:5px;
  96. border-left:2px solid;
  97. }
  98.  
  99. blockquote blockquote {
  100. padding-left:5px;
  101. border-left:2px solid;
  102. }
  103.  
  104. h1 {
  105. font-size:17px;
  106. font-family:times new roman;
  107. text-transform:lowercase;
  108. font-style:italic;
  109. font-weight:100;
  110. padding-bottom:2px;
  111. }
  112.  
  113. #entries {
  114. width:500px;
  115. margin-left:330px;
  116. margin-top:50px;
  117. margin-bottom:30px;
  118. }
  119.  
  120. #post {
  121. font-family:times new roman;
  122. width:500px;
  123. padding-right:20px;
  124. padding-left:15px;
  125. padding-top:15px;
  126. margin-top:18px;
  127. }
  128.  
  129. #sidebar {
  130. position:fixed;
  131. width:145px;
  132. margin-left:920px;
  133. margin-top:180px;
  134. height:220px;
  135. }
  136.  
  137. #sidebarimage img {
  138. z-index:1;
  139. position:fixed;
  140. width:80px;
  141. height:50px;
  142. opacity:1;
  143. border:3px solid #403F3F;
  144. margin-left:27px;
  145. margin-top:3px;
  146. }
  147.  
  148. #description {
  149. z-index:2;
  150. width:77px;
  151. height:48px;
  152. font-family:times new;
  153. font-size:7px;
  154. position:fixed;
  155. padding:1px 1px 1px 2px;
  156. margin-top:6px;
  157. margin-left:30px;
  158. line-height:180%;
  159. text-align:justify;
  160. letter-spacing:1px;
  161. overflow:auto;
  162. background-color:#fff;
  163. opacity:0;
  164. -webkit-transition: all 0.5s ease-in-out;
  165. -moz-transition: all 0.5s ease-in-out;
  166. -o-transition: all 0.5s ease-in-out;
  167. }
  168.  
  169. #sidebar:hover #description {
  170. opacity:.9;
  171. -webkit-transition: all 0.5s ease-in-out;
  172. -moz-transition: all 0.5s ease-in-out;
  173. -o-transition: all 0.5s ease-in-out;
  174. }
  175.  
  176. #lamp img {
  177. width:300px;
  178. height:300px;
  179. position:fixed;
  180. opacity:.7;
  181. margin-top:-30px;
  182. margin-left:-70px;
  183. }
  184.  
  185. #links {
  186. font-family:times new;
  187. z-index:5;
  188. text-transform:lowercase;
  189. position:fixed;
  190. text-align:center;
  191. width:80px;
  192. padding:3px;
  193. margin-left:27px;
  194. margin-top:80px;
  195. font-size:7.5px;
  196. letter-spacing:2px;
  197. height:30px;
  198. opacity:1;
  199. -webkit-transition: all 0.5s ease-in-out;
  200. -moz-transition: all 0.5s ease-in-out;
  201. -o-transition: all 0.5s ease-in-out;
  202. }
  203.  
  204. #links a {
  205. display:block;
  206. background-color:#403F3F;
  207. border:2px solid #403F3F;
  208. padding:3px;
  209. margin-top:4px;
  210. color:{color:navlink};
  211. }
  212.  
  213. #links a:hover {
  214. background-color:#fff;
  215. border:2px solid #403F3F;
  216. letter-spacing:3px;
  217. color:{color:navlinkhovercolor};
  218. -webkit-transition: all 0.5s ease-in-out;
  219. -moz-transition: all 0.5s ease-in-out;
  220. -o-transition: all 0.5s ease-in-out;
  221. }
  222.  
  223. #linething {
  224. width:50px;
  225. height:110px;
  226. position:fixed;
  227. border-right:2px solid #525151;
  228. border-left:2px solid #525151;
  229. margin-top:58px;
  230. margin-left:43px;
  231. opacity:1;
  232. }
  233.  
  234. #pagination {
  235. position:fixed;
  236. z-index:10;
  237. width:100px;
  238. font-size:9px;
  239. margin-top:60px;
  240. margin-left:20px;
  241. letter-spacing:1px;
  242. text-align:center;
  243. font-style:italic;
  244. opacity:0;
  245. -webkit-transition: all 0.5s ease-in-out;
  246. -moz-transition: all 0.5s ease-in-out;
  247. -o-transition: all 0.5s ease-in-out;
  248. }
  249.  
  250. #pagination a {
  251. color:{color:navlink};
  252. }
  253.  
  254. #pagination a:hover {
  255. color:{color:navlinkhovercolor};
  256. }
  257.  
  258. #sidebar:hover #pagination {
  259. opacity:1;
  260. margin-top:77px;
  261. -webkit-transition: all 0.5s ease-in-out;
  262. -moz-transition: all 0.5s ease-in-out;
  263. -o-transition: all 0.5s ease-in-out;
  264. }
  265.  
  266. #heyo {
  267. font-family:cambria;
  268. position:fixed;
  269. text-align:center;
  270. bottom:10px;
  271. right:7px;
  272. font-size:6.5px;
  273. text-transform:uppercase;
  274. display:block;
  275. background-color:#fff;
  276. letter-spacing:1px;
  277. }
  278.  
  279. #heyo a{
  280. color:#b3b2b1;
  281. border: 1px solid #e4e3e2;
  282. padding: 3px 5px 3px 5px;
  283. border-radius:500px;
  284. background-color:#fff;
  285. -moz-transition-duration:0.5s;
  286. -webkit-transition-duration:0.5s;
  287. -o-transition-duration:0.5s;
  288. }
  289.  
  290. #heyo a:hover{
  291. color:#fff;
  292. background-color:#969194;
  293. border: 1px solid #7a7979;
  294. -moz-transition-duration:0.5s;
  295. -webkit-transition-duration:0.5s;
  296. -o-transition-duration:0.5s;
  297. }
  298.  
  299. i, em{color:{color:italic}; font-style:italic;}
  300. b, strong{color:{color:bold}; font-style:bold; font-weight:900;}
  301.  
  302. .chat {
  303. font-size:8px;
  304. border-bottom:1px solid #d5d5d5;
  305. padding:5px;
  306. margin-bottom:-3px;
  307. }
  308.  
  309. .quote {
  310. font-size:15px;
  311. font-style:italic;
  312. line-height:120%;
  313. }
  314.  
  315. .quotesource {
  316. font-size:10px;
  317. text-align:right;
  318. margin-bottom:5px;
  319. }
  320.  
  321. .notes {
  322. list-style:decimal-leading-zero;
  323. padding-bottom:3.5px;
  324. padding-top:3.5px;
  325. margin-left:0px;
  326. text-transform:uppercase;
  327. font-family:trebuchet ms;
  328. font-size:8px;
  329. }
  330.  
  331. .notes img {
  332. width:12px;
  333. height:12px;
  334. margin-top:4px;
  335. }
  336.  
  337. #info {
  338. text-align:left;
  339. margin-top:2px;
  340. font-family:trebuchet ms;
  341. letter-spacing:0px;
  342. font-size:7px;
  343. text-transform:uppercase;
  344. padding-right:3px;
  345. border-top:1px solid #d5d5d5;
  346. border-bottom:1px solid #d5d5d5;
  347. border-right:1px solid #d5d5d5;
  348. }
  349.  
  350. .postblocks {
  351. padding:3px 4px 2px 3px;
  352. font-family:trebuchet ms;
  353. letter-spacing:0px;
  354. font-size:7px;
  355. text-transform:uppercase;
  356. background-color:#222121;
  357. color:#fff;
  358. display:inline-block;
  359. }
  360.  
  361. #tags {
  362. padding-top:2px;
  363. margin-top:0px;
  364. text-transform:uppercase;
  365. font-family:trebuchet ms;
  366. font-size:7px;
  367. letter-spacing:0px;
  368. display:block;
  369. }
  370.  
  371. #tags a{
  372. display:inline-block;
  373. }
  374.  
  375. #question{
  376. font-size:9px;
  377. background-color:#ffffff;
  378. padding: 7px;
  379. text-align:center;
  380. background-color:#f8f8f8;
  381. border-bottom:1px solid #cecccc;
  382. }
  383.  
  384. .info {
  385. text-align:left;
  386. margin-top:2px;
  387. font-family:trebuchet ms;
  388. letter-spacing:0px;
  389. font-size:7px;
  390. text-transform:uppercase;
  391. padding-right:3px;
  392. border-top:1px solid #d5d5d5;
  393. border-bottom:1px solid #d5d5d5;
  394. border-right:1px solid #d5d5d5;
  395. }
  396.  
  397. #audioinfo {
  398. font-size:8px;
  399. letter-spacing:1px;
  400. padding-bottom:2px;
  401. }
  402.  
  403. .audioplayer {
  404. overflow:hidden;
  405. display:block;
  406. float:left;
  407. margin-top:7px;
  408. margin-left:7px;
  409. width:27px;
  410. height:27px;
  411. opacity:.5;
  412. }
  413.  
  414. .audioplayercontainer {
  415. width:70px;
  416. height:70px;
  417. position:absolute;
  418. }
  419.  
  420. {CustomCSS}</style></head><body>
  421.  
  422. <div id="sidebar">
  423.  
  424. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  425.  
  426. <div id="lamp"><img src="http://oi43.tinypic.com/awuvbq.jpg"></div>
  427.  
  428. <div id="linething"></div>
  429.  
  430. <div id="links">
  431. <a href="{text:Link1}">{text:Link1 Title}</a>
  432. <a href="{text:Link2}">{text:Link2 Title}</a>
  433. <a href="{text:Link3}">{text:Link3 Title}</a>
  434. <a href="{text:Link4}">{text:Link4 Title}</a>
  435. </div>
  436.  
  437. <div id="description">{Description}</div>
  438.  
  439. <div id="pagination">
  440. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">←</a>{/block:PreviousPage}
  441. {block:NextPage}<a href="{NextPage}">→</a>{/block:NextPage}{/block:Pagination}
  442. </div></div>
  443.  
  444. <div id="entries">{block:Posts}<div id="post">
  445.  
  446. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  447.  
  448. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  449.  
  450. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  451.  
  452. {block:Quote}<div class="quote">{Quote}</div>{block:Source} <div class="quotesource">—{Source}</div>{/block:Source}{/block:Quote}
  453.  
  454. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  455.  
  456. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}<div class="chat">{block:Label}{Label}{/block:Label} {Line}<br></div>{/block:Lines}{/block:Chat}
  457.  
  458. {block:Audio}
  459. {block:AlbumArt}<img src="{AlbumArtURL}" width="40px" height="40px" align="left" />{/block:AlbumArt}
  460. <div class="audioplayercontainer"><div class="audioplayer">{AudioPlayerWhite}</div></div>
  461.  
  462. <div id="audioinfo">
  463. &nbsp;{block:TrackName}<b>Title: </b>{TrackName}{/block:TrackName}<br>
  464. &nbsp;{block:Artist}<b>Artist: </b>{Artist}{/block:Artist}<br>
  465. &nbsp;{block:Album}<b>Album:</b> {Album}{/block:Album}<br>
  466. &nbsp;<b>Plays:</b> {PlayCount}</div>
  467. {block:Caption}{Caption}{/block:Caption}
  468. {/block:Audio}
  469.  
  470. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  471.  
  472. {block:Answer}
  473. <a href="{AskerURL}"></a> <div id="question" style="width:485px;"><i>{Asker} whispered:</i><br>{Question}</div> <p>
  474. {Answer}
  475. {/block:Answer}
  476.  
  477. <div id="info">
  478. {block:Date}<div class="postblocks">{TimeAgo}{/block:Date}</div><a href="{Permalink}" style=padding-left:2px;>
  479. {NoteCountWithLabel}</a> <small>+</small> <a href="{ReblogURL}" target="_blank">reblog</a>
  480. <div style="float:right; padding-top:3px;">
  481. {block:RebloggedFrom} via <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a>{/block:RebloggedFrom} -
  482. {block:ContentSource}<a href="{SourceURL}">© {SourceLink}</a>{/block:ContentSource}
  483. </div></div>
  484.  
  485. {block:HasTags}<div id="tags">tagged as:{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags} </div>
  486.  
  487. {/block:Posts}
  488.  
  489. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  490. {/block:Posts} </div></div>
  491.  
  492. <!--do not remove-->
  493. <div id="heyo"><a href="http://nialljhoren.tumblr.com">N</a></div>
  494.  
  495. </div></div>
  496.  
  497. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment