parispier

Theme17: Alone

May 9th, 2013
636
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.48 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="#a7a7a7" />
  33. <meta name="color:linkhovercolor" content="#f3f3f3" />
  34. <meta name="color:scrollbar" content="#b1b1b1"/>
  35.  
  36. <meta name="text:Link1" content="/" />
  37. <meta name="text:Link1 Title" content="link 1" />
  38. <meta name="text:Link2" content="/" />
  39. <meta name="text:Link2 Title" content="link 2" />
  40. <meta name="text:Link3" content="/" />
  41. <meta name="text:Link3 Title" content="link 3" />
  42. <meta name="text:Link4" content="/" />
  43. <meta name="text:Link4 Title" content="link 4" />
  44. <meta name="text:Link5" content="/" />
  45. <meta name="text:Link5 Title" content="link 5" />
  46. <meta name="text:Link6" content="/" />
  47. <meta name="text:Link6 Title" content="link 6" />
  48.  
  49. <meta name="image:sidebar" content=""/>
  50.  
  51. <style type="text/css">
  52.  
  53. ::-webkit-scrollbar-thumb:vertical {background-color: {color:scrollbar}; height:100px;}
  54.  
  55. ::-webkit-scrollbar-thumb:horizontal {background-color: {color:scrollbar}; height:10px !important;}
  56.  
  57. ::-webkit-scrollbar {height:5px; width:5px; background-color: {color:background};}
  58.  
  59. body {
  60. background:{color:background};
  61. margin:0px;
  62. color:{color:text};
  63. font-size:10px;
  64. line-height:100%;
  65. font-family:lucida console;
  66. }
  67.  
  68. a {
  69. text-decoration:none;
  70. outline:none;
  71. -moz-outline-style:none;
  72. color:{color:link};
  73. -webkit-transition: all 0.9s ease-in;
  74. -moz-transition: all 0.9s ease-in;
  75. -o-transition: all 0.9s ease-in;
  76. -webkit-transition: all 0.5s ease-out;
  77. -moz-transition: all 0.5s ease-out;
  78. -o-transition: all 0.5s ease-out;
  79. }
  80.  
  81. a:hover {
  82. font-style:italic;
  83. color:{color:linkhovercolor};
  84. -webkit-transition: all 0.9s ease-in;
  85. -moz-transition: all 0.9s ease-in;
  86. -o-transition: all 0.9s ease-in;
  87. -webkit-transition: all 0.5s ease-out;
  88. -moz-transition: all 0.5s ease-out;
  89. -o-transition: all 0.5s ease-out;
  90. }
  91.  
  92. img {
  93. border:none;
  94. }
  95.  
  96. blockquote {
  97. padding-left:5px;
  98. border-left:2px solid;
  99. }
  100.  
  101. blockquote blockquote {
  102. padding-left:5px;
  103. border-left:2px solid;
  104. }
  105.  
  106. h1 {
  107. font-size:14px;
  108. text-transform:lowercase;
  109. padding-bottom:2px;
  110. font-style:italic;
  111. font-weight:100;
  112. }
  113.  
  114. #entries {
  115. width:500px;
  116. margin-left:420px;
  117. margin-top:80px;
  118. margin-bottom:30px;
  119. }
  120.  
  121. #post {
  122. width:500px;
  123. padding-right:15px;
  124. padding-left:15px;
  125. padding-top:15px;
  126. margin-top:18px;
  127. }
  128.  
  129. #sidebar {
  130. position:fixed;
  131. width:280px;
  132. position:fixed;
  133. margin-left:250px;
  134. margin-top:80px;
  135. }
  136.  
  137. #sidebarimage img {
  138. position:fixed;
  139. width:121px;
  140. height:120px;
  141. padding:3px;
  142. opacity:1;
  143. border-top:1px solid #d1d1d1;
  144. border-bottom:1px solid #d1d1d1;
  145. border-left:3px solid #d1d1d1;
  146. border-right:3px solid #d1d1d1;
  147. }
  148.  
  149. #sw {
  150. z-index:5;
  151. position:fixed;
  152. margin-top:113px;
  153. margin-left:50px;
  154. height:120px;
  155. width:131px;
  156. }
  157.  
  158. #description {
  159. width:117px;
  160. font-family:lucida console;
  161. font-size:9px;
  162. position:fixed;
  163. padding-left:5px;
  164. margin-top:70px;
  165. margin-left:-50px;
  166. text-align:center;
  167. padding:5px 5px 5px 5px;
  168. background-color:#fff;
  169. background-color:#fafafa;
  170. border-top:1px solid #d1d1d1;
  171. border-bottom:1px solid #d1d1d1;
  172. border-left:3px solid #d1d1d1;
  173. border-right:3px solid #d1d1d1;
  174. }
  175.  
  176. #links {
  177. font-family:lucida console;
  178. z-index:5;
  179. width:122px;
  180. position:fixed;
  181. margin-left:-50px;
  182. margin-top:15px;
  183. font-size:9px;
  184. text-align:left;
  185. text-transform:lowercase;
  186. padding:6px 5px 5px 0px;
  187. background-color:#fff;
  188. background-color:#fafafa;
  189. border-left:3px solid #d1d1d1;
  190. border-right:3px solid #d1d1d1;
  191. display:block;
  192. -webkit-transition: all 1s ease-in-out;
  193. -moz-transition: all 1s ease-in-out;
  194. -o-transition: all 1s ease-in-out;
  195. }
  196.  
  197. #links a {
  198. margin-left:5px;
  199. display:block;
  200. line-height:70%;
  201. padding-bottom:2px;
  202. }
  203.  
  204. #links2 {
  205. font-family:lucida console;
  206. z-index:5;
  207. position:fixed;
  208. width:60px;
  209. margin-left:15px;
  210. margin-top:15px;
  211. font-size:9px;
  212. text-align:right;
  213. text-transform:lowercase;
  214. padding:6px 5px 5px 0px;
  215. display:block;
  216. }
  217.  
  218. #links2 a {
  219. margin-left:5px;
  220. display:block;
  221. line-height:70%;
  222. padding-bottom:2px;
  223. }
  224.  
  225. #pagination {
  226. z-index:5;
  227. position:fixed;
  228. font-family:lucida console;
  229. font-size:8px;
  230. text-align:center;
  231. margin-top:10px;
  232. margin-left:-8px;
  233. width:133px;
  234. letter-spacing:1px;
  235. }
  236.  
  237. #tags {
  238. font-size:8px;
  239. text-transform:lowercase;
  240. }
  241.  
  242. #info {
  243. text-align:left;
  244. text-transform:lowercase;
  245. font-size:8px;
  246. padding:5px;;
  247. background-color:#fafafa;
  248. border-left:3px solid #d1d1d1;
  249. border-right:1px solid #d1d1d1;
  250. border-top:1px solid #d1d1d1;
  251. border-bottom:1px solid #d1d1d1;
  252. }
  253.  
  254. #question{
  255. font-size:9px;
  256. background-color: #ffffff;
  257. padding: 7px;
  258. text-align:center;
  259. background-color: #fcfcfc;
  260. border-bottom:1px solid #cecccc;
  261. }
  262.  
  263. #question a:hover{
  264. color:{color:linkhovercolor};
  265. }
  266.  
  267. #heyo {
  268. font-family:cambria;
  269. position:fixed;
  270. text-align:center;
  271. bottom:10px;
  272. right:7px;
  273. font-size:6.5px;
  274. text-transform:uppercase;
  275. display:block;
  276. background-color:#fff;
  277. letter-spacing:1px;
  278. }
  279.  
  280. #heyo a{
  281. color:#b3b2b1;
  282. border: 1px solid #e4e3e2;
  283. padding: 3px 5px 3px 5px;
  284. border-radius:500px;
  285. background-color:#fff;
  286. -moz-transition-duration:0.5s;
  287. -webkit-transition-duration:0.5s;
  288. -o-transition-duration:0.5s;
  289. }
  290.  
  291. #heyo a:hover{
  292. color:#fff;
  293. background-color:#969194;
  294. border: 1px solid #7a7979;
  295. -moz-transition-duration:0.5s;
  296. -webkit-transition-duration:0.5s;
  297. -o-transition-duration:0.5s;
  298. }
  299.  
  300. i, em{color:{color:italic}; font-style:italic;}
  301. b, strong{color:{color:bold}; font-style:bold; font-weight:900;}
  302.  
  303. #albumart {
  304. position:absolute;
  305. width:125px;
  306. height:125px;}
  307. #albumart img {
  308. width:125px;
  309. height:125px;
  310. float:left;
  311. padding:5px;}
  312. #audioinfo {
  313. font-size:7px;
  314. color:text;}
  315.  
  316.  
  317. {CustomCSS}</style></head><body>
  318.  
  319. <div id="sidebar">
  320.  
  321. <div id="sw">
  322.  
  323. <div id="links">
  324. <a href="{text:Link1}">{text:Link1 Title}</a><br>
  325. <a href="{text:Link2}">{text:Link2 Title}</a><br>
  326. <a href="{text:Link3}">{text:Link3 Title}</a>
  327. </div>
  328.  
  329. <div id="links2">
  330. <a href="{text:Link4}">{text:Link4 Title}</a><br>
  331. <a href="{text:Link5}">{text:Link5 Title}</a><br>
  332. <a href="{text:Link6}">{text:Link6 Title}</a>
  333. </div>
  334.  
  335. <div id="description">{Description}
  336.  
  337. <div id="pagination">
  338. <center>
  339. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  340. {CurrentPage} <small>of</small> {TotalPages}
  341. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  342. </center>
  343. </div></div>
  344.  
  345. </div>
  346. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  347.  
  348. </div>
  349.  
  350.  
  351. <div id="entries">{block:Posts}<div id="post">
  352.  
  353. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  354.  
  355. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}<small>{Caption}{/block:Caption}{/block:Photo}
  356.  
  357. {block:Photoset}{Photoset-500}<small>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  358.  
  359. {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
  360.  
  361. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  362.  
  363. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  364.  
  365. {block:Audio}
  366. {block:AlbumArt}<img src="{AlbumArtURL}" width="80px" height="80px" align="left" />{/block:AlbumArt}<p>
  367. {AudioPlayerWhite}
  368. {block:TrackName}<b>Title: </b>{TrackName}{/block:TrackName}
  369. <br>
  370. {block:Artist}<b>Artist: </b>{Artist}{/block:Artist}
  371. <br>
  372. {block:Album}<b>Album:</b> {Album}{/block:Album}
  373. <br>
  374. <b>Plays:</b> {PlayCount}
  375. {/block:Audio}
  376.  
  377. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  378.  
  379. {block:Answer}
  380. <a href="{AskerURL}"></a> <div id="question" style="width:485px;"><i>{Asker} whispered:</i><br>{Question}</div> <p>
  381. {Answer}
  382. {/block:Answer}
  383.  
  384. <div id="info">
  385. {block:Date}posted {TimeAgo}{/block:Date} with <a href="{Permalink}">
  386. {NoteCountWithLabel}</a> + <a href="{ReblogURL}" target="_blank">reblog</a>
  387. <div style="float:right;">
  388. {block:RebloggedFrom} via <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a>{/block:RebloggedFrom} -
  389. {block:ContentSource}<a href="{SourceURL}">© {SourceLink}</a>{/block:ContentSource}</div>
  390.  
  391. {block:HasTags}<div id="tags">tagged as:{block:Tags} <a href="{TagURL}">{Tag}.</a> {/block:Tags}</div>{/block:HasTags} </div></div>
  392.  
  393. {/block:Posts}
  394. {block:PostNotes}{PostNotes}</div>{/block:PostNotes}
  395. {/block:Posts} </div></div>
  396.  
  397. <div id="heyo"><a href="http://nialljhoren.tumblr.com">n</a></div>
  398.  
  399. </div>
  400.  
  401. </div>
  402.  
  403. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment