bangyixing

Theme #33 - Meteor

Oct 12th, 2013
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.98 KB | None | 0 0
  1.  
  2. <html>
  3. <head>
  4.  
  5. <!--
  6. ᴛʜᴇᴍᴇ 33: ᴍᴇᴛᴇᴏʀ
  7. ᴅᴇsɪɢɴᴇᴅ ᴀɴᴅ ᴄᴏᴅᴇᴅ ʙʏ ᴀɴᴅʀᴇᴀ @ ᴍʟɪᴋʙᴏʏ
  8. ᴘʟᴇᴀsᴇ ᴅᴏɴ'ᴛ ʀᴇᴍᴏᴠᴇ ᴛʜᴇ ᴄʀᴇᴅɪᴛs. ᴛʜᴀɴᴋ ʏᴏᴜ.
  9. -->
  10.  
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  13. <head><title>{Title}</title>
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  17.  
  18. <!--Default Variables-->
  19.  
  20. <!--Colors-->
  21.  
  22. <meta name="color:Background" content="#ffffff"/>
  23. <meta name="color:Title" content="#474545"/>
  24. <meta name="color:Border" content="#000000"/>
  25. <meta name="color:Sidebar Border" content="#000000"/>
  26. <meta name="color:Link" content="#000000"/>
  27. <meta name="color:Link Background" content="#333333"/>
  28. <meta name="color:Scrollbar" content="#fbfbfb"/>
  29. <meta name="color:Hover" content="#cfcfcf"/>
  30. <meta name="color:Posts Background" content="#fcfcfc"/>
  31. <meta name="color:Asker" content="#fafafa"/>
  32. <meta name="color:Quote" content="#fafafa"/>
  33. <meta name="color:Info Border" content="#e6e4e4"/>
  34. <meta name="color:Hover" content="#cfcfcf"/>
  35. <meta name="color:Tags" content="#d7d9da"/>
  36. <meta name="color:Text" content="#000000"/>
  37.  
  38. <!--Images-->
  39.  
  40. <meta name="image:Background" content="http://static.tumblr.com/6907067d7cd1c6ee9d8d34a066004df4/czllhpn/7DXmu6zo0/tumblr_static_tumblr_static_ezimba18025420256500.png">
  41. <meta name="image:Sidebar" content="http://static.tumblr.com/da3032640f4c60742762406530c1d019/czllhpn/d4umuckz5/tumblr_static_untitled-2.jpg"/>
  42.  
  43.  
  44. <!--Links-->
  45.  
  46. <meta name="text:Link1" content="/" />
  47. <meta name="text:Link1 Title" content="" />
  48. <meta name="text:Link2" content="/" />
  49. <meta name="text:Link2 Title" content="" />
  50. <meta name="text:Link3" content="/" />
  51. <meta name="text:Link3 Title" content="" />
  52.  
  53. <!--Titles-->
  54.  
  55. <meta name="text:Title" content="let me have you all to myself" />
  56.  
  57. <!--Functions-->
  58.  
  59. <meta name="if:Lazy Load" content="1"/>
  60.  
  61. <!--Fonts-->
  62.  
  63. <link href='http://fonts.googleapis.com/css?family=Alegreya+SC' rel='stylesheet' type='text/css'>
  64. <link href='http://fonts.googleapis.com/css?family=IM+Fell+DW+Pica|IM+Fell+DW+Pica+SC|IM+Fell+English|Megrim|Crimson+Text' rel='stylesheet' type='text/css'>
  65. <link href='http://fonts.googleapis.com/css?family=Trochut:400,400italic' rel='stylesheet' type='text/css'>
  66.  
  67. <!--Lazy Load-->
  68.  
  69. {block:IfLazyLoad}
  70. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  71. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  72. <script type="text/javascript" charset="utf-8">
  73. var $j = jQuery.noConflict();
  74. $j(function() {
  75. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  76. $j("img").lazyload({
  77. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  78. effect: "fadeIn",
  79. });
  80. });
  81. </script>
  82.  
  83. </style>
  84. {/block:IfLazyLoad}
  85.  
  86. <style type="text/css">
  87.  
  88. ::-webkit-scrollbar-thumb:vertical {
  89. background: {color:Border};
  90. height: 80px;
  91. }
  92.  
  93. ::-webkit-scrollbar {
  94. height: 10px;
  95. width: 3px;
  96. background: {color:Scrollbar};
  97. }
  98.  
  99. body {
  100. background:{color:Background};
  101. margin:10px;
  102. font-family:Arial;
  103. font-size:9px;
  104. color:{color:Text};
  105. background-image: url("{image:Background}");
  106. background-attachment:fixed;
  107. text-align:justify;
  108. letter-spacing:1px;
  109. line-height:140%;
  110. }
  111.  
  112. a {
  113. text-decoration:none;
  114. outline:none;
  115. -moz-outline-style:none;
  116. color:{color:Link};
  117. -webkit-transition: all 0.5s ease;
  118. -moz-transition: all 0.5s ease;
  119. -o-transition: all 0.5s ease;
  120. }
  121.  
  122. img {
  123. border:none;
  124. }
  125.  
  126. blockquote blockquote {
  127. padding-left:5px;
  128. border-left:1px solid {color:Border};
  129. }
  130.  
  131. h1 {
  132. font-size:20px;
  133. text-transform:none;
  134. font-style:none;
  135. line-height:140%;
  136. text-align:center;
  137. font-family:Trochut;
  138. color:{color:Title};
  139. }
  140.  
  141. a:hover {
  142. color:{color:Text};
  143. }
  144.  
  145. small {
  146. font-size:9px;
  147. line-height:140%;
  148. }
  149.  
  150. big {
  151. font-size:12px;
  152. line-height:140%;
  153. }
  154.  
  155. b, strong {
  156. color:{color:Text};
  157. }
  158.  
  159. i, em {
  160. color:{color:Text};
  161. }
  162.  
  163. p {
  164. margin-top:5px;
  165. margin-bottom:5px;
  166. }
  167. blockquote {
  168. padding:0px;
  169. padding-left:5px;
  170. margin:5px;
  171. border-left:1px solid {color:Border};
  172. }
  173.  
  174. blockquote img {
  175. max-width:300px;
  176. }
  177.  
  178. ul, li img {
  179. max-with:250px;
  180. }
  181.  
  182. .audio { height:60px; padding:5px; margin-bottom:5px; }
  183. .audio-album { position:absolute; width:60px; }
  184. .audio-player { position:absolute; width:25px; height:25px; margin-left:15px; margin-top:15px; opacity:0.9; overflow:hidden; border:2px solid {color:Border}; }
  185. .audio-info { margin-top:-2px; position:relative; margin-left:70px; padding:5px; }
  186.  
  187. #entries {
  188. padding:10px;
  189. width:500px;
  190. margin-left:530px;
  191. margin-top:190px;
  192.  
  193. }
  194.  
  195. #post {
  196. width:500px;
  197. overflow:hidden;
  198. padding-top:35px;
  199. margin-top:15px;
  200. padding:10px;
  201. background:{color:Posts Background};
  202. }
  203.  
  204. #quote {
  205. padding:10px;
  206. margin-bottom:5px;
  207. background:{color:Quote};
  208. font-family:Courier;
  209. font-size:12px;
  210. font-style:none;
  211. letter-spacing:1px;
  212. -webkit-border-radius:2px;
  213. -moz-border-radius:2px;
  214. border-radius:2px;
  215. }
  216.  
  217. #chat {
  218. text-transform:lowercase;
  219. font-family:'Alegreya SC', serif;
  220. }
  221.  
  222. #website {
  223. font-family:Arial;
  224. font-style:italic;
  225. text-align:right;
  226. font-size:12px;
  227. color:{color:Text};
  228. }
  229.  
  230. #header {
  231. width:500px;
  232. height: 140px;
  233. position:absolute;
  234. margin-left:540px;
  235. margin-top:-160px;
  236. padding:10px;
  237. background:{color:Text};
  238. }
  239.  
  240. #sidebarimage img{
  241. width:220px;
  242. height:120px;
  243. margin-left:5px;
  244. padding:2px;
  245. margin-top:7px;
  246. border: 1px solid {color:Background};
  247. }
  248.  
  249. #title {
  250. font-size:20px;
  251. position:absolute;
  252. margin-left:250px;
  253. margin-top:10px;
  254. font-family:Libre Baskerville;
  255. font-style:italic;
  256. text-align:center;
  257. line-height:40%;
  258. padding:5px;
  259. width:231px;
  260. letter-spacing:-1px;
  261. text-transform:lowercase;
  262. color:{color:Background};
  263. }
  264.  
  265. #links {
  266. margin-top: -107px;
  267. padding-top:10px;
  268. margin-left:250px;
  269. position:absolute;
  270. width:250px;
  271. }
  272.  
  273. #links a {
  274. width:45px;
  275. color:{color:Background};
  276. display:inline-block;
  277. line-height:140%;
  278. padding:0px;
  279. font-size:8px;
  280. letter-spacing:1px;
  281. font-family:Times New Roman;
  282. text-transform:uppercase;
  283. margin-right:0px;
  284. text-align:center;
  285. margin-bottom:0px;
  286. font-style:italic;
  287. -webkit-transition: all 0.3s ease-in-out;
  288. -moz-transition: all 0.3s ease-in-out;
  289. -o-transition: all 0.3s ease-in-out;
  290. -ms-transition: all 0.3s ease-in-out;
  291. transition: all 0.3s ease-in-out;
  292. }
  293.  
  294. #links a:hover{
  295. text-decoration:none;
  296. color:{color:Hover};
  297. }
  298.  
  299. #description {
  300. font-size:8px;
  301. width:231px;
  302. height:70px;
  303. font-style:none;
  304. opacity:0.9;
  305. padding:5px;
  306. font-family:Trebuchet MS;
  307. position:absolute;
  308. text-transform:uppercase;
  309. text-align:justify;
  310. margin-top:-82px;
  311. line-height: 140%;
  312. margin-left:250px;
  313. letter-spacing:0px;
  314. overflow-y:scroll;
  315. color:{color:Background};
  316. }
  317.  
  318. #description a {
  319. text-decoration: none;
  320. color: {color:Background};
  321. }
  322.  
  323. #description a:hover {
  324. text-decoration: none;
  325. color: {color:Hover};}
  326.  
  327. #question img {
  328. float:left;
  329. margin-right:11px;
  330. padding:5px;
  331. border: 1px solid {color:Info Border};
  332. }
  333.  
  334. #info {
  335. text-align:left;
  336. margin-bottom:6px;
  337. font-family:Helvetica;
  338. text-transform:uppercase;
  339. font-style:none;
  340. letter-spacing:0px;
  341. font-size:7px;
  342. padding:5px;
  343. margin-top:10px;
  344. color:{color:Background};
  345. background:{color:Text};
  346. }
  347.  
  348. #info a {
  349. text-decoration: none;
  350. color: {color:Background};
  351. }
  352.  
  353. #info a:hover {
  354. text-decoration: none;
  355. color: {color:Hover};}
  356.  
  357. #tags {
  358. font-size:7px;
  359. margin-top:0px;
  360. }
  361.  
  362. #notes {
  363. font-family:Helvetica;
  364. text-transform:uppercase;
  365. font-size:7px;
  366. }
  367.  
  368. #credit {
  369. font-family:Trebuchet MS;
  370. font-size:9px;
  371. letter-spacing:1px;
  372. float:right;
  373. position:fixed;
  374. bottom:15px;
  375. right:10px;
  376. }
  377.  
  378. #credit a {
  379. color:{color:Info Border};
  380. padding:5px;
  381. text-transform:uppercase;
  382. background:{color:Background};
  383. border:1px solid {color:Info Border};
  384. }
  385.  
  386. #credit a:hover {
  387. color:{color:Background};
  388. text-transform:uppercase;
  389. font-style:none;
  390. background:{color:Text};
  391. }
  392.  
  393. {CustomCSS}</style><script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script></head><body>
  394.  
  395. <div id="header">
  396. <div id="title">{text:Title}</div>
  397. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  398. <div id="links">
  399. <a href="/">index</a>
  400. <a href="/ask">mail</a>
  401. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  402. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  403. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  404. </div>
  405.  
  406. <div id="description">{Description}</div></div>
  407.  
  408. <div id="entries">
  409. <div class="autopagerize_page_element">{block:Posts}
  410. <div id="post">
  411.  
  412. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  413.  
  414. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  415.  
  416. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  417.  
  418. {block:Quote}<div id="quote">❝{Quote}</i>❞{block:Source} — {Source}</div>{/block:Source}{/block:Quote}
  419.  
  420. {block:Link}<div id="website"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}{Description}{/block:Description}{/block:Link}
  421.  
  422. <div id="chat">
  423. {block:Chat}
  424. {block:Title}
  425. <h1>{Title}</h1>
  426. {/block:Title}
  427. {block:Lines}
  428. <blockquote>{block:Label}<b>{Label}</b>{/block:Label} -
  429. {Line}</blockquote><br>
  430. {/block:Lines}{/block:Chat}
  431. </div>
  432.  
  433. {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>
  434. {/block:Audio}
  435.  
  436. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  437.  
  438. {block:Answer}<div id="question"><img src="{AskerPortraitURL-48}"></div> <div style="text-transform:uppercase;
  439. font-style:italic;
  440. font-size:9px;">{Question} — <b>{Asker}</b><br><br><br><br><br></div>
  441. {Answer}<br>{/block:Answer}
  442.  
  443. <div id="info">
  444. posted <a href="{Permalink}">{TimeAgo}</a> with <a href="{Permalink}">{NoteCountWithLabel}</a> {block:RebloggedFrom} - <a href="{ReblogParentURL}">via </a>{/block:RebloggedFrom} {block:ContentSource} ‧ <a href="{SourceURL}">source</a> {/block:ContentSource}{block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}
  445. {block:HasTags}<div id="tags">
  446. {block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div>
  447.  
  448. {/block:Posts}</div>
  449.  
  450. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  451.  
  452. <div id="credit"><a href="http://mlikboy.tumblr.com/">mb</a></div>
  453.  
  454. </body>
  455. </html>
Advertisement
Add Comment
Please, Sign In to add comment