bangyixing

Theme #08 - Icarus

Jun 15th, 2013
560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.21 KB | None | 0 0
  1.  
  2.  
  3. <html>
  4. <head>
  5.  
  6. <!--
  7. ᴛʜᴇᴍᴇ 08: ɪᴄᴀʀᴜs
  8. ᴅᴇsɪɢɴᴇᴅ ᴀɴᴅ ᴄᴏᴅᴇᴅ ʙʏ ᴀɴᴅʀᴇᴀ @ ᴍʟɪᴋʙᴏʏ
  9. ᴘʟᴇᴀsᴇ ᴅᴏɴ'ᴛ ʀᴇᴍᴏᴠᴇ ᴛʜᴇ ᴄʀᴇᴅɪᴛs. ᴛʜᴀɴᴋ ʏᴏᴜ.
  10. -->
  11.  
  12. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  14. <head><title>{Title}</title>
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18.  
  19. <!--Default Variables-->
  20. <!--Colors-->
  21.  
  22. <meta name="color:Background" content="#ffffff"/>
  23. <meta name="color:Title" content="#9c9c9c"/>
  24. <meta name="color:Border" content="#ebe9e9"/>
  25. <meta name="color:Link" content="#000000"/>
  26. <meta name="color:Scrollbar" content="#fbfbfb"/>
  27. <meta name="color:Hover" content="#b8b8b8"/>
  28. <meta name="color:Asker" content="#f5f5f5"/>
  29. <meta name="color:Scrollbar" content="#fbfbfb"/>
  30. <meta name="color:Text" content="#000000"/>
  31.  
  32. <!--Images-->
  33.  
  34. <meta name="image:Background" content=""/>
  35. <meta name="image:Sidebar" content=""/>
  36.  
  37.  
  38. <!--Links-->
  39.  
  40. <meta name="text:Link1" content="" />
  41. <meta name="text:Link1 Title" content="" />
  42. <meta name="text:Link2" content="" />
  43. <meta name="text:Link2 Title" content="" />
  44.  
  45. <!--Pop-up-->
  46.  
  47. <script type="text/javascript"
  48. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  49.  
  50. <script>
  51.  
  52. $(document).ready(function() {
  53.  
  54.  
  55. $('a.poplight[href^=#]').click(function() {
  56.  
  57. var popID = $(this).attr('rel');
  58.  
  59. var popURL = $(this).attr('href');
  60.  
  61. var query= popURL.split('?');
  62.  
  63. var dim= query[1].split('&');
  64.  
  65. var popWidth = dim[0].split('=')[1];
  66.  
  67. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  68.  
  69.  
  70. var popMargTop = ($('#' + popID).height() + 80) / 2;
  71.  
  72. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  73.  
  74.  
  75.  
  76.  
  77. $('#' + popID).css({
  78.  
  79. 'margin-top' : -popMargTop,
  80.  
  81. 'margin-left' : -popMargLeft
  82.  
  83. });
  84.  
  85.  
  86.  
  87. $('body').append('<div id="fade"></div>');
  88.  
  89. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  90. return false;
  91.  
  92. });
  93.  
  94.  
  95. $('a.close, #fade').live('click', function() {
  96.  
  97. $('#fade , .popup_block').fadeOut(function() {
  98.  
  99. $('#fade, a.close').remove();
  100. });
  101.  
  102. return false;
  103.  
  104. });
  105.  
  106. });
  107.  
  108. </script>
  109.  
  110. <style type="text/css">
  111.  
  112. ::-webkit-scrollbar-thumb:vertical {
  113. background: {color:Border};
  114. height: 80px;
  115. }
  116.  
  117. ::-webkit-scrollbar {
  118. height: 10px;
  119. width: 3px;
  120. background: {color:Scrollbar};
  121. }
  122.  
  123. body {
  124. background:{color:Background};
  125. margin:10px;
  126. font-family:Times New Roman;
  127. font-size:9px;
  128. background-image: url("{image:Background}");
  129. background-attachment:fixed;
  130. letter-spacing:1px;
  131. text-align:justify;
  132. line-height:140%;
  133. }
  134.  
  135. a {
  136. text-decoration:none;
  137. outline:none;
  138. -moz-outline-style:none;
  139. color:{color:Link};
  140. -webkit-transition: all 0.5s ease;
  141. -moz-transition: all 0.5s ease;
  142. -o-transition: all 0.5s ease;
  143. }
  144.  
  145. img {
  146. border:none;
  147. }
  148.  
  149. blockquote blockquote {
  150. padding-left:5px;
  151. border-left:1px solid {color:Border};
  152. }
  153.  
  154. h1 {
  155. font-size:15px;
  156. text-transform:lowercase;
  157. font-style:italic;
  158. text-align: center;
  159. letter-spacing:1px;
  160. color:{color:Title};
  161. }
  162.  
  163. a:hover {
  164. color: {color:Hover};
  165. }
  166.  
  167. small{
  168. font-size:9px;
  169. line-height:140%;
  170. }
  171.  
  172. big {
  173. font-size:12px;
  174. line-height:140%;
  175. }
  176.  
  177. b, strong{
  178. color:{color:Text};
  179. }
  180.  
  181. i, em {
  182. color:{color:Text};
  183. }
  184.  
  185. p{
  186. margin-top:5px;
  187. margin-bottom:5px;
  188. }
  189.  
  190. blockquote {
  191. padding:0px;
  192. padding-left:5px;
  193. margin:5px;
  194. border-left:1px solid {color:Border};
  195. }
  196.  
  197. blockquote img {
  198. max-width:300px;
  199. }
  200.  
  201. ul, li img {
  202. max-with:250px;
  203. }
  204.  
  205. #fade {
  206. display: none;
  207. background: #111111;
  208. position: fixed;
  209. left: 0;
  210. top: 0;
  211. width: 100%;
  212. height: 100%;
  213. opacity: .70;
  214. z-index: 9999;
  215. }
  216.  
  217. .popup_block{
  218. display: none;
  219. background: #ffffff;
  220. padding: 20px;
  221. float: left;
  222. position: fixed;
  223. top: 50%;
  224. left: 50%;
  225. z-index: 99999;
  226. }
  227.  
  228. img.btn_close {
  229. float: right;
  230. margin: -55px -55px 0 0;
  231. }
  232.  
  233. *html #fade {
  234. position: absolute;
  235. }
  236.  
  237. *html .popup_block {
  238. position: absolute;
  239. }
  240.  
  241. .audio { height:60px; padding:5px; margin-bottom:5px; }
  242. .audio-album { position:absolute; width:60px; }
  243. .audio-player { position:absolute; width:25px; height:25px; margin-left:15px; margin-top:15px; opacity:0.9; overflow:hidden; border:2px solid {color:Border}; }
  244. .audio-info { margin-top:-2px; position:relative; margin-left:70px; padding:5px; }
  245.  
  246. #entries {
  247. padding:10px;
  248. width:400px;
  249. margin-left:590px;
  250. margin-top:160px;
  251. }
  252.  
  253. #post {
  254. width:400px;
  255. opacity:1;
  256. padding-bottom:10px;
  257. overflow:hidden;
  258. }
  259.  
  260. #quote {
  261. font-size:15px;
  262. font-style:none;
  263. text-align:center;
  264. line-height:140%;
  265. }
  266.  
  267. #sidebar {
  268. width:400px;
  269. height: 150px;
  270. position:fixed;
  271. margin-left:600px;
  272. margin-top:-160px;
  273. background:{color:Background};
  274. }
  275.  
  276. #sidebarimage img{
  277. width:120px;
  278. height:120px;
  279. margin-left: 260px;
  280. padding:3px;
  281. margin-top:11px;
  282. -webkit-transition: all 0.5s ease;
  283. -moz-transition: all 0.5s ease;
  284. -o-transition: all 0.5s ease;
  285. }
  286.  
  287. #links {
  288. margin-top: -112px;
  289. padding-top:0px;
  290. margin-left:11px;
  291. }
  292.  
  293. #links a {
  294. width:50px;
  295. background:{color:Text};
  296. color:{color:Background};
  297. display:inline-block;
  298. line-height:10px;
  299. padding:3px;
  300. font-size:10px;
  301. letter-spacing:1px;
  302. text-transform:uppercase;
  303. margin-right:3px;
  304. text-align:left;
  305. margin-bottom:3px;
  306. font-style:italic;
  307. -webkit-transition: all 0.3s ease-in-out;
  308. -moz-transition: all 0.3s ease-in-out;
  309. -o-transition: all 0.3s ease-in-out;
  310. -ms-transition: all 0.3s ease-in-out;
  311. transition: all 0.3s ease-in-out;
  312. }
  313.  
  314. #links a:hover{
  315. text-decoration:none;
  316. background:{color:Background};
  317. color:{color:Text};
  318. letter-spacing:1px;
  319. opacity:1;
  320. }
  321.  
  322. #description {
  323. font-size:9px;
  324. width:235px;
  325. height:auto;
  326. font-style:italic;
  327. opacity:0.9;
  328. padding:5px;
  329. position:fixed;
  330. text-transform:none;
  331. text-align:justify;
  332. line-height:140%;
  333. margin-top:5px;
  334. margin-left:11px;
  335. letter-spacing:1px;
  336. color:{color:Text};
  337. }
  338.  
  339.  
  340. #pagination {
  341. font-size:16px;
  342. margin-top: 15px;
  343. text-align:center;
  344. color:{color:Text};
  345. padding:0px;
  346. opacity:1;
  347. font-style:italic;
  348. text-transform:uppercase;
  349. letter-spacing:1px;
  350. margin-left:400px;
  351. }
  352.  
  353. #info {
  354. font-style:none;
  355. text-align: center;
  356. margin-top:5px;
  357. margin-bottom:10px;
  358. padding-top:5px;
  359. text-transform:uppercase;
  360. font-size:6px;
  361. line-height:140%;
  362. letter-spacing:2px;
  363. border-top:1px solid {color:Border};
  364. }
  365.  
  366. #info a:hover{
  367. text-decoration: none;
  368. background:{color:Background};
  369. color: {color:Hover};
  370. }
  371.  
  372. #tags {
  373. text-transform:uppercase;
  374. font-size:6px;
  375. margin-top:0px;
  376. font-style:none;
  377. padding:-4px;
  378. text-align:center;
  379. letter-spacing:2px;
  380. }
  381.  
  382. #question {
  383. padding:10px;
  384. border-left: 5px solid {color:Border};
  385. background:{color:Asker};
  386. color:{color:Text};
  387. }
  388.  
  389.  
  390. #credit {
  391. font-family:Calibri;
  392. font-size:9px;
  393. letter-spacing:1px;
  394. float:right;
  395. position:fixed;
  396. bottom:15px;
  397. right:10px;
  398. }
  399.  
  400. #credit a {
  401. color:#ffffff;
  402. padding:5px;
  403. text-transform:uppercase;
  404. background:{color:Link};
  405. }
  406.  
  407. #credit a:hover {
  408. color:{color:Link};
  409. text-transform:uppercase;
  410. font-style:none;
  411. background:{color:Background};
  412. }
  413.  
  414. {CustomCSS}</style></head><body>
  415.  
  416. <div id="sidebar">
  417. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  418. <div id="links">
  419. <a href="/">index</a>
  420. <a href="#?w=500" rel="popup_name" class="poplight">letters</a>
  421. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  422. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  423. </div>
  424.  
  425. <div id="description">{Description}<p>
  426. </i><center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">backward</a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}">forward</a>{/block:NextPage}</div>{/block:Pagination}</div>
  427. </center></div>
  428.  
  429. <div id="entries">{block:Posts}<div id="post">
  430.  
  431. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  432.  
  433. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  434.  
  435. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  436.  
  437. {block:Quote}<div id="quote">❝<i>{Quote}</i>❞{block:Source} — <i>{Source}</i></div>{/block:Source}{/block:Quote}
  438.  
  439. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  440.  
  441. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  442.  
  443. {block:Audio}<div class="audio">{block:AlbumArt}<img class="audio-album" src="{AlbumArtURL}">{/block:AlbumArt}<div class="audio-player">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div><div class="audio-info">{block:TrackName}<b>Title: </b>{TrackName}<br>{/block:TrackName}{block:Artist}<b>Artist: </b>{Artist}<br>{/block:Artist}{block:Album}<b>Album: </b> {Album}<br>{/block:Album}{block:PlayCount}<b>Plays: </b>{PlayCount}<br>{/block:PlayCount}</div></div>
  444. {/block:Audio}
  445.  
  446. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  447.  
  448. {block:Answer}<div id="question">{Asker}: <i>{Question}</i></div><br>{Answer}{/block:answer}
  449.  
  450. <div id="info">
  451. <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> with <a href="{Permalink}">{NoteCountWithLabel}</a> {block:RebloggedFrom} via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom} {block:ContentSource}(© <a href="{SourceURL}">{SourceLink}</a>){/block:ContentSource}{block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}
  452.  
  453. {block:HasTags}<div id="tags">{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div>
  454. {/block:Posts}
  455.  
  456. {block:PostNotes}<div style="text-transform:uppercase; letter-spacing:2px; font-size:6px;">{PostNotes}</div>{/block:PostNotes}
  457.  
  458. <div id="credit"><a href="http://mlikboy.tumblr.com/">mlikboy</a></div>
  459.  
  460. </body>
  461. <div id="popup_name" class="popup_block">
  462. <iframe frameborder="0" height="190" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/url.tumblr.com" width="100%"></iframe>
  463. </div>
  464. </html>
Advertisement
Add Comment
Please, Sign In to add comment