Advertisement
quirons

XO, four

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