Advertisement
audreyhepburn

Clean Slate

May 24th, 2014
1,809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.25 KB | None | 0 0
  1. <!--theme by museofastronomy - do not steal/remove credit-->
  2.  
  3. <!DOCTYPE html>
  4. <head>
  5.  
  6. <title>{title}</title>
  7.  
  8. <link rel="shortcut icon" href="{favicon}">
  9. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  10. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  11.  
  12. <meta name="color:background" content="#ffffff"/>
  13. <meta name="color:blog title" content="#000000"/>
  14. <meta name="color:text" content="#666666"/>
  15. <meta name="color:links" content="#cccccc"/>
  16. <meta name="color:hover" content="#666666"/>
  17. <meta name="color:borders" content="#f6f6f6"/>
  18. <meta name="text:link 1" content=""/>
  19. <meta name="text:link 1 url" content=""/>
  20. <meta name="text:link 2" content=""/>
  21. <meta name="text:link 2 url" content=""/>
  22. <meta name="text:link 3" content=""/>
  23. <meta name="text:link 3 url" content=""/>
  24. <meta name="text:link 4" content=""/>
  25. <meta name="text:link 4 url" content=""/>
  26.  
  27.  
  28. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  29.  
  30. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  31.  
  32. <script>
  33.  
  34. (function($){
  35.  
  36. $(document).ready(function(){
  37.  
  38. $("a[title]").style_my_tooltips({
  39.  
  40. tip_follows_cursor:true,
  41.  
  42. tip_delay_time:30,
  43.  
  44. tip_fade_speed:300,
  45.  
  46. attribute:"title"
  47.  
  48. });
  49.  
  50. });
  51.  
  52. })(jQuery);
  53.  
  54. </script>
  55.  
  56.  
  57. <style type="text/css">
  58.  
  59. #s-m-t-tooltip{
  60. position:absolute;
  61. margin-top: 15px;
  62. z-index:9999999999;
  63. color:{color:text};
  64. background:transparent;
  65. font-size:9px;
  66. max-width:300px;
  67. text-align:center;
  68. }
  69.  
  70. ::-webkit-scrollbar{height: 5px;
  71. width: 5px;
  72. -webkit-border-radius: 0px;
  73. background-color:#FFF}
  74. ::-webkit-scrollbar-thumb{background-color:{color:background};}
  75. ::-webkit-scrollbar-track{background-color:{color:background}}
  76.  
  77. blockquote {padding:5px 0 5px 30px;
  78. border-left:1px solid {color:borders};
  79. margin-left:30px;
  80. }
  81.  
  82. body {
  83. background:{color:background};
  84. color:{color:text};
  85. font-family:helvetica;
  86. font-weight:lighter;
  87. font-size:11px;
  88. text-align:justify;
  89. margin:0;
  90. line-height:16px;
  91. }
  92.  
  93.  
  94. a {
  95. color:{color:links};
  96. text-decoration:none;
  97. -webkit-transition: all 0.3s ease-out;
  98. -moz-transition: all 0.3s ease-out;
  99. -o-transition: all 0.3s ease-out;
  100. }
  101.  
  102. a:hover {
  103. color:{color:hover};
  104. text-decoration:none;
  105. -webkit-transition: all 0.3s ease-out;
  106. -moz-transition: all 0.3s ease-out;
  107. -o-transition: all 0.3s ease-out;}
  108.  
  109. img{opacity:1;
  110. border:none;
  111. text-decoration:none}
  112.  
  113.  
  114. small {
  115. font-size:9px;}
  116.  
  117. big {
  118. font-size:12px;}
  119.  
  120.  
  121. #title {font-size:12px;
  122. line-height:18px;
  123. margin-bottom:10px;
  124. text-transform:uppercase;
  125. text-align:center;}
  126.  
  127. #header {
  128. width:400px;
  129. position:fixed;
  130. padding-top:60px;
  131. padding-bottom:10px;
  132. z-index:999999999;
  133. background:{color:background};
  134. }
  135.  
  136. #blogtitle {
  137. color:{color:blog title};
  138. font-size:16px;
  139. text-transform:uppercase;
  140. letter-spacing:2px;
  141. text-align:left;
  142. margin-bottom:2px;
  143. padding-bottom:6px;
  144. border-bottom: 1px solid {color:borders};
  145. }
  146.  
  147. #blogtitle a{color:{color:blog title};
  148. }
  149.  
  150. #top:hover #desc{
  151. opacity:1;
  152. -webkit-transition:all 0.6s;
  153. -moz-transition:all 0.6s;
  154. -ms-transition:all 0.6s;
  155. -o-transition:all 0.6s;
  156. transition:all 0.6s;
  157. }
  158.  
  159. #desc {
  160. font-size:10px;
  161. opacity:0;
  162. -webkit-transition:all 0.6s;
  163. -moz-transition:all 0.6s;
  164. -ms-transition:all 0.6s;
  165. -o-transition:all 0.6s;
  166. transition:all 0.6s;
  167. }
  168.  
  169. #description {float:right;
  170. text-align:right;
  171. }
  172.  
  173. #links {
  174. text-align:left;
  175. float:left;
  176. }
  177.  
  178.  
  179. #links a {
  180. margin-right:5px;
  181. }
  182.  
  183. #container {
  184. position:absolute;
  185. width:400px;
  186. left:50%;
  187. margin-left:-200px;
  188. }
  189.  
  190. #entries {
  191. position:absolute;
  192. padding-top:130px;
  193. }
  194.  
  195. #pagination {
  196. position:fixed;
  197. border-top:1px solid {color:borders};
  198. padding-top:5px;
  199. font-size:10px;
  200. width:400px;
  201. bottom:0px;
  202. padding-bottom:20px;
  203. background-color:{color:background};
  204. text-align:center;
  205. z-index:9999999999;
  206. }
  207.  
  208. #pagination a {
  209. margin-right:4px;
  210. margin-left:4px;
  211. }
  212.  
  213.  
  214. #posts {
  215. width:400px;
  216. {block:IndexPage}
  217. margin-bottom:120px;
  218. {/block:IndexPage}
  219. {block:PermalinkPage}
  220. margin-top:30px;
  221. margin-bottom:80px;
  222. {/block:PermalinkPage}
  223. }
  224.  
  225. #posts:hover #timestamp {
  226. opacity:1;
  227. -webkit-transition:all 0.6s;
  228. -moz-transition:all 0.6s;
  229. -ms-transition:all 0.6s;
  230. -o-transition:all 0.6s;
  231. transition:all 0.6s;}
  232.  
  233. #timestamp {
  234. {block:PermalinkPage}
  235. display:none;
  236. {/block:permalinkpage}
  237. margin-top:15px;
  238. font-size:7px;
  239. text-align:right;
  240. text-transform:uppercase;
  241. opacity:0;
  242. -webkit-transition:all 0.6s;
  243. -moz-transition:all 0.6s;
  244. -ms-transition:all 0.6s;
  245. -o-transition:all 0.6s;
  246. transition:all 0.6s;}
  247. }
  248. #timestamp a {margin-left:10px;
  249. }
  250.  
  251. #permalink {
  252. {block:indexpage}
  253. display:none;
  254. {/block:indexpage}
  255. margin-top:15px;
  256. font-size:7px;
  257. text-transform:lowercase;
  258. text-align:right;
  259. }
  260.  
  261. #permalink a {margin-left:10px;
  262. }
  263.  
  264. #posts img {
  265. width:400px;
  266. }
  267.  
  268. #posts img, #posts li, #posts blockquote{max-width:400px;}
  269. .caption {
  270. {block:indexpage}
  271. display:none;
  272. {/block:indexpage}
  273. width:400px;
  274. margin-top:10px;
  275. }
  276.  
  277.  
  278. #titlequote{text-align:center;
  279. font-size:12px;
  280. line-height:18px;
  281. }
  282.  
  283. #source {text-align:center;
  284. font-size:10px;
  285. margin-bottom:8px;
  286. padding-bottom:5px;
  287. border-bottom:1px solid {color:borders};
  288. }
  289.  
  290. .player {
  291. width:25px;
  292. height:25px;
  293. overflow:hidden;
  294. position:absolute;
  295. background:{color:background};}
  296.  
  297. .audioinfo {
  298. margin-left:50px;}
  299.  
  300. .q {margin-bottom:10px;
  301. }
  302. .as {
  303. font-weight:bold;}
  304.  
  305. .a {
  306. color:{color:borders};
  307. }
  308.  
  309.  
  310. .chat ol {
  311. padding:0;
  312. list-style:none;
  313. }
  314. .line {padding:5px 0;}
  315.  
  316. .label {font-weight:bold;
  317. }
  318.  
  319. .tags {
  320. {block:IndexPage}
  321. display:none;
  322. {/block:IndexPage}
  323. word-break:break-all;
  324. font-size:7px;
  325. text-transform:lowercase;
  326. text-align:right;
  327. }
  328.  
  329. .postnotes {text-align:left;
  330. font-size:9px;
  331. line-height:15px;
  332. }
  333. .postnotes img {
  334. display:none!important;}
  335. .postnotes li {
  336. list-style-type:none;}
  337.  
  338. #credit a {position:fixed;
  339. right:15px;
  340. bottom:15px;
  341. z-index:5;
  342. font-size:11px;
  343. color:{color:links};
  344. }
  345.  
  346. #credit a:hover {color:{color:links};}
  347.  
  348. {CustomCSS}
  349.  
  350. </style>
  351.  
  352. </script>
  353.  
  354. </head>
  355.  
  356. <body>
  357.  
  358. <div id="credit"><a href="http://museofastronomy.tumblr.com/themes" title="urainia" target="_blank">✈</a>
  359. </div>
  360.  
  361. <div id="container">
  362. <div id="header">
  363. <div id="top">
  364. <div id="blogtitle"><a href="/">{title}</a></div>
  365. <div id="desc">
  366. <div id="description">{description}</div>
  367. <div id="links">
  368. {block:iflink1}<a href="{text:link 1 url}">{text:link 1}</a>{/block:iflink1}
  369. {block:iflink2}<a href="{text:link 2 url}">{text:link 2}</a>{/block:iflink2}
  370. {block:iflink3}<a href="{text:link 3 url}">{text:link 3}</a>{/block:iflink3}
  371. {block:iflink4}<a href="{text:link 4 url}">{text:link 4}</a>{/block:iflink4}
  372. </div>
  373. </div>
  374. </div>
  375. </div>
  376.  
  377. <div id="entries">
  378.  
  379. {block:Posts}
  380.  
  381. <div id="posts">
  382.  
  383. {block:Quote}
  384. {block:Source}<div id="source">{Source}</div>{/block:Source}
  385. <div id="titlequote">{Quote}</div>
  386. {/block:Quote}
  387.  
  388.  
  389.  
  390. {block:Text}
  391. {block:Title}
  392. <div id="title">{Title}</div>{/block:Title}
  393. {Body}
  394. {/block:Text}
  395.  
  396. {block:Link}
  397. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  398. {/block:Link}
  399.  
  400. {block:Chat}
  401. {block:Title}
  402. <h1>{Title}</h1>
  403. {/block:Title}
  404. <div class="chat">
  405. <ol>{block:Lines}
  406. <li class="line {Alt}">
  407. {block:Label}
  408. <span class="label">
  409. {Label}</span>
  410. {/block:Label}{Line}</li>
  411. {/block:Lines}
  412. </ol></div>
  413. {/block:Chat}
  414.  
  415. {block:Photo}
  416. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  417. {/block:Photo}
  418.  
  419. {block:Photoset}
  420. {Photoset-400}
  421. {/block:Photoset}
  422.  
  423. {block:Video}
  424. {Video-400}
  425. {/block:Video}
  426.  
  427. {block:Audio}
  428. <div class="player">{AudioPlayerWhite}</div>
  429. <div class="audioinfo">
  430. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}</div>
  431. {/block:Audio}
  432.  
  433. {block:Answer}
  434. <div class="q">
  435. <div class="as">{Asker} is typing... </div> {Question}</div>
  436. <div class="a">{Answer}</div>
  437. {/block:Answer}
  438.  
  439. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  440.  
  441. {block:Date}
  442. <div id="timestamp">
  443. <a href="{permalink}">{timeago}</a>
  444. </div>
  445. <div id="permalink">
  446. <a href="{permalink}">{dayofmonth}{dayofmonthsuffix} {shortmonth} {year}</a>{block:NoteCount}<a href="{permalink}">+{NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<a href="{ReblogParentURL}" target="_blank">via</a>{block:ContentSource}<a href="{ReblogRootURL}" target="_blank">source</a>{/block:ContentSource}{/block:RebloggedFrom}{block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  447. </div>
  448. <div class="postnotes">
  449. {PostNotes}
  450. </div>
  451. {/block:Date}
  452.  
  453. </div>
  454.  
  455. {/block:Posts}
  456.  
  457. <div id="pagination">
  458. {block:JumpPagination length="10"}{block:CurrentPage}
  459. <span class="current_page">{PageNumber}</span>
  460. {/block:CurrentPage}{block:JumpPage}
  461. <a class="jump_page" href="{URL}">{PageNumber}</a>
  462. {/block:JumpPage}{/block:JumpPagination}
  463. </div>
  464. </div>
  465.  
  466. {block:ContentSource}
  467. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  468. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  469. {/block:SourceLogo}
  470. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  471. {/block:ContentSource}
  472.  
  473. </body>
  474.  
  475. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement