parispier

Theme02: Dark Angel

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