parispier

Theme20: Simple Desires

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