Advertisement
quirons

retrograde, eleven

Feb 11th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!--
  6.  
  7. RETROGRADE, C11 BY @QUIRONS.
  8. - don't repost or give away as your own
  9. - don't steal bits of the code
  10. - if you have any doubts/find bugs, feel free to send me a message
  11.  
  12. -->
  13.  
  14. {block:Description}
  15. <meta name="description" content="{MetaDescription}" />
  16. {/block:Description}
  17.  
  18. <meta charset="utf-8">
  19. <meta name="viewport" content="initial-scale=1.0, width=device-width" />
  20. <title>{Title}</title>
  21. <link rel="shortcut icon" href="{Favicon}">
  22. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  23.  
  24. <!-- SCRIPTS -->
  25.  
  26. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  27. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  28. <script>
  29. (function($){
  30. $(document).ready(function(){
  31. $("a[title]").style_my_tooltips({
  32. tip_follows_cursor:true,
  33. tip_delay_time:90,
  34. tip_fade_speed:600,
  35. attribute:"title"
  36. });
  37. });
  38. })(jQuery);
  39. </script>
  40.  
  41. <!-- METAS -->
  42.  
  43. <meta name="color:background" content="#ffffff"/>
  44. <meta name="color:text" content="#000000"/>
  45. <meta name="color:links" content="#000000"/>
  46. <meta name="color:tags bg" content="#f8f8f8"/>
  47. <meta name="color:borders" content="#f0f0f0"/>
  48. <meta name="image:sidebar image" content=""/>
  49.  
  50. <meta name="if:sidebar title" content="0"/>
  51.  
  52. <meta name="text:Link1" content="Link 1"/>
  53. <meta name="text:Link2" content="Link 2"/>
  54. <meta name="text:Link3" content="Link 3"/>
  55. <meta name="text:AskURL" content="Ask URL"/>
  56. <meta name="text:URL1" content="URL 1"/>
  57. <meta name="text:URL2" content="URL 2"/>
  58. <meta name="text:URL3" content="URL 3"/>
  59.  
  60. <link href='http://fonts.googleapis.com/css?family=Playfair+Display:400,700,400italic' rel='stylesheet' type='text/css'>
  61.  
  62. <style type="text/css">
  63.  
  64. /* -------- SCROLLBAR -------- */
  65.  
  66. ::-webkit-scrollbar {width: 2px;}
  67. ::-webkit-scrollbar-track {background:none;}
  68. ::-webkit-scrollbar-thumb {background:black;}
  69. ::-webkit-scrollbar-thumb:window-inactive {background: transparent;}
  70. ::-webkit-scrollbar-thumb:horizontal {display:none;}
  71.  
  72. /* -------- TOOLTIPS -------- */
  73.  
  74. #s-m-t-tooltip {
  75. max-width:300px;
  76. margin:15px;
  77. padding:5px;
  78. background-color:black;
  79. font-size:12px;
  80. color:white;
  81. z-index:999999999999999999999999999999999999;
  82. }
  83.  
  84. /* -------- BASICS -------- */
  85.  
  86. body {
  87. color:{color:text};
  88. font-family:helvetica, arial, times;
  89. background-color:{color:background};
  90. font-size:11px;
  91. }
  92.  
  93. a {
  94. text-decoration:none;
  95. font-weight:bold;
  96. color:{color:links};
  97. -webkit-transition: all .3s;
  98. -moz-transition: all .3s;
  99. -o-transition: all .3s;
  100. -ms-transition: all .3s;
  101. transition: all .3s;
  102. }
  103.  
  104. h1 {
  105. text-transform:uppercase;
  106. font-size:13px;
  107. }
  108.  
  109. #pagination {
  110. font-weight:bold;
  111. color:{color:links};
  112. margin-top:-65px;
  113. margin-bottom:-75px;
  114. text-align:center;
  115. }
  116.  
  117. #pagination a {
  118. color:{color:links};
  119. }
  120.  
  121. /* ------- SIDEBAR ------ */
  122.  
  123. #sidebar img {
  124. width:180px;
  125. display:block;
  126. margin-bottom:15px;
  127. }
  128.  
  129. #sidebar {
  130. display:block;
  131. color:{color:text};
  132. position:fixed;
  133. float:left;
  134. width:180px;
  135. padding:15px 15px 10px 15px;
  136. overflow:hidden;
  137. left:170px;
  138. top:300px;
  139. -webkit-transition: all .9s;
  140. -moz-transition: all .9s;
  141. -o-transition: all .9s;
  142. -ms-transition: all .9s;
  143. transition: all .9s;
  144. }
  145.  
  146. .title {
  147. font-weight:bold;
  148. margin-top:2.5px;
  149. display:block;
  150. }
  151.  
  152. #sblinks {
  153. text-transform:lowercase;
  154. text-align:right;
  155. margin-top:7.5px;
  156. padding-top:5px;
  157. border-top:1px solid {color:borders};
  158. }
  159.  
  160. #sblinks a {
  161. display:inline-block;
  162. padding:2.5px;
  163. color:{color:text};
  164. -webkit-transition: all .9s;
  165. -moz-transition: all .9s;
  166. -o-transition: all .9s;
  167. -ms-transition: all .9s;
  168. transition: all .9s;
  169. }
  170.  
  171. #sblinks a:hover {
  172. background:{color:borders};
  173. opacity:1;
  174. }
  175.  
  176. /* ------- POSTS ------- */
  177.  
  178. #entries {
  179. margin-top:75px;
  180. margin-left:450px;
  181. position:static;
  182. float:left;
  183. border-left:1px solid {color:borders};
  184. padding-left:15px;
  185. }
  186.  
  187. #post {
  188. padding:20px 20px 0px 20px;
  189. width:500px;
  190. margin-bottom:155px;
  191. -webkit-transition: ease .5s;
  192. -moz-transition: ease .5s;
  193. -o-transition: ease .5s;
  194. -ms-transition: ease .5s;
  195. transition: ease .5s;
  196. }
  197.  
  198. #tags {
  199. color:{color:text};
  200. background:{color:tags bg};
  201. -webkit-transition: ease .9s;
  202. -moz-transition: ease .9s;
  203. -o-transition: ease .9s;
  204. -ms-transition: ease .9s;
  205. transition: ease .9s;
  206. position:absolute;
  207. width:470px;
  208. padding:15px;
  209. padding-top:13px;
  210. margin-top:5px;
  211. text-align:right;
  212. border-top:2px solid {color:borders};
  213. }
  214.  
  215. #tags a {
  216. color:{color:text};
  217. }
  218.  
  219. blockquote {
  220. margin-left:15px;
  221. border-left:1px solid #2f2f2f;
  222. padding:5px 0px 5px 30px;
  223. }
  224.  
  225. .pic, video {
  226. min-width:500px;
  227. }
  228.  
  229. .source {
  230. text-align:right;
  231. }
  232.  
  233. ul.chat {
  234. list-style:none;
  235. }
  236.  
  237. .chat span {
  238. margin-left:-30px;
  239. float:left;
  240. }
  241.  
  242. .person {
  243. font-weight:bold;
  244. margin-right:5px;
  245. }
  246.  
  247. #ask {
  248. color:{color:text};
  249. padding:15px;
  250. padding-bottom:13px;
  251. background-color:{color:tags bg};
  252. border-bottom:2px solid {color:borders};
  253. }
  254.  
  255. #ask a {
  256. color:{color:text};
  257. }
  258.  
  259. .comma:last-child {
  260. display:none;
  261. }
  262.  
  263. /* ------- MUSIC ------- */
  264.  
  265. #audioinfo {
  266. background:{color:tags bg};
  267. color:{color:text};
  268. text-align:center;
  269. text-transform:uppercase;
  270. width:400px;
  271. display:inline-block;
  272. position:absolute;
  273. margin-left:-20px;
  274. padding-right:15px;
  275. height:75px;
  276. padding-left:5px;
  277. border-top:2px solid {color:borders};
  278. border-bottom:2px solid {color:borders};
  279. margin-top:12.5px;
  280. }
  281.  
  282. .info {
  283. margin-top:7.5px;
  284. padding:20px;
  285. text-align:center;
  286. }
  287.  
  288. .cover {
  289. width:100px;
  290. border-radius:50%;
  291. z-index:99;
  292. position:relative;
  293. }
  294.  
  295. .playbutton {
  296. width: 20px;
  297. height: 35px;
  298. overflow: hidden;
  299. z-index: 9999;
  300. margin-left:17.5px;
  301. padding-bottom:7.5px;
  302. padding-top:15px;
  303. }
  304.  
  305. .playbox {
  306. background-color:black;
  307. position: absolute;
  308. z-index: 900;
  309. margin-top: 24px;
  310. margin-left: 20.5px;
  311. padding-right:22.5px;
  312. opacity:.75;
  313. border-radius:50%;
  314. }
  315.  
  316. /* ------- NOTES ------- */
  317.  
  318. ol.notes {
  319. display:block;
  320. text-align:left;
  321. list-style:none;
  322. margin-left:-15px;
  323. margin-bottom:5px;
  324. }
  325.  
  326. ol.notes li.note{
  327. padding-bottom:5px;
  328. }
  329.  
  330. .pagenotes {
  331. margin-top:-45px;
  332. margin-bottom:60px;
  333. }
  334.  
  335. .pagenotes img{
  336. padding-right:5px;
  337. padding-top:5px;
  338. margin-bottom:-5px;
  339. display:none;
  340. }
  341.  
  342. </style>
  343. </head>
  344. <body>
  345.  
  346. <div id="sidebar">
  347. <a href="/" title="refresh"><img src="{image:sidebar image}"/></a>
  348. {Description}
  349. <div id="sblinks">
  350. <a href="{text:askURL}">message</a>
  351. <a href="{text:URL1}">{text:Link1}</a>
  352. <a href="{text:URL2}">{text:Link2}</a>
  353. <a href="{text:URL3}">{text:Link3}</a>
  354. {block:ifsidebartitle}
  355. <span class="title">{Title}</span>
  356. {/block:ifsidebartitle}
  357. </div>
  358. </div>
  359.  
  360. <!-- POSTS -->
  361.  
  362. <div id="clubs" style="right:25px;bottom:15px;position:fixed;font-size:18px;font-family: 'Playfair Display', serif;";><a href="http://badlland.tumblr.com">C</a></div>
  363.  
  364. <div id="entries">
  365.  
  366. {block:Posts}
  367.  
  368. <div id="post">
  369.  
  370. <!-- VIA/SOURCE FIX -->
  371.  
  372. {block:ContentSource}
  373. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  374. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  375. {/block:SourceLogo}
  376. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  377. {/block:ContentSource}
  378.  
  379. {block:Text}
  380. {block:Title}
  381. <h1><a href="{Permalink}">{Title}</a></h1>
  382. {/block:Title}
  383. {Body}
  384. {/block:Text}
  385.  
  386. {block:Photo}
  387. {LinkOpenTag}
  388. <img class="pic" src="{PhotoURL-500}" alt="{PhotoAlt}" />
  389. {LinkCloseTag}
  390. {/block:Photo}
  391.  
  392. {block:Photoset}
  393. {Photoset-500}
  394. {/block:Photoset}
  395.  
  396. {block:Quote}
  397. {Quote}
  398. {block:Source}
  399. <div class="source"><br>{Source}</div>
  400. {/block:Source}
  401. {/block:Quote}
  402.  
  403. {block:Link}
  404. <h1 class="title"><a href="{URL}">{Name}</a></h1>
  405. {block:Description}{Description}{/block:Description}
  406. {/block:Link}
  407.  
  408. {block:Chat}
  409. <ul class="chat">
  410. {block:Lines}
  411. <li class="{Alt}">
  412. {block:Label}<span class="person">{Label}</span>{/block:Label}
  413. <p> {Line} </p></li>
  414. {/block:Lines}
  415. </ul>
  416. {/block:Chat}
  417.  
  418. {block:Audio}
  419. <div id="audio">
  420. <div class="playbox"><div class="playbutton">
  421. {block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}
  422. </div></div>
  423. {block:AlbumArt}<img src="{AlbumArtURL}" class="cover">{/block:AlbumArt}
  424. <div id="audioinfo">
  425. <div class="info">
  426. {block:TrackName}
  427. <b>{TrackName}</b><br />
  428. {/block:TrackName}
  429. {block:Artist}
  430. <b style="opacity:.8">{Artist}</b>
  431. {/block:Artist}
  432. {block:Album}
  433. <span style="padding-left:7.5px;opacity:.8">{Album}</span>
  434. {/block:Album}
  435. </div></div>
  436. </div>
  437. {/block:Audio}
  438.  
  439. {block:Video}
  440. {Video-500}
  441. {/block:Video}
  442.  
  443. {block:Answer}
  444. <div id="ask">
  445. <b style="text-transform:lowercase;">{Asker}: </b>
  446. {Question}
  447. </div>
  448. <div id="answer">{Answer}</div>
  449. {/block:Answer}
  450.  
  451. {block:Caption}
  452. {Caption}
  453. {/block:Caption}
  454.  
  455. {block:Date}
  456. <a href="{Permalink}">
  457. <div id="tags">
  458. <div class="triangle"></div>
  459. {block:Date}<span style="text-transform:lowercase;">
  460. {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}, {TimeAgo}</span>
  461. {/block:Date}
  462. </a>
  463.  
  464. {block:NoteCount}
  465. <a href="{Permalink}"> + {NoteCount} </a>
  466. {/block:NoteCount}
  467.  
  468. <!--VIA AND SOURCE-->
  469. {block:RebloggedFrom} /
  470. <a href="{ReblogParentURL}">via</a>
  471. {/block:RebloggedFrom}
  472. {block:ContentSource}
  473. & <a href="{SourceURL}">source</a>
  474. {/block:ContentSource}
  475. {block:RebloggedFrom}{/block:RebloggedFrom}
  476.  
  477. {block:HasTags}
  478. / <b>tag:</b>
  479. {block:Tags}
  480. <a href="{TagURL}"> {Tag}</a><span class="comma">,</span>
  481. {/block:Tags}
  482. {/block:HasTags}
  483. </div>
  484. {/block:Date}
  485.  
  486. </div>
  487.  
  488. <!--POST NOTES-->
  489.  
  490. {block:PostNotes}
  491. <div class="pagenotes">{PostNotes-16}</div>
  492. {/block:PostNotes}
  493.  
  494. {/block:Posts}
  495.  
  496. {block:Pagination}
  497. <div id="pagination">
  498. {block:PreviousPage}
  499. <a href="{PreviousPage}">Previous</a> |
  500. {/block:PreviousPage}
  501. {block:NextPage}
  502. <a href="{NextPage}">Next</a>
  503. {/block:NextPage}
  504. </div>
  505. {/block:Pagination}
  506.  
  507. </div>
  508.  
  509. </body>
  510. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement