Advertisement
parispier

Theme25: Secret Garden

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