Advertisement
quirons

pirouette, eighteen

Jul 25th, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!--
  6.  
  7. PIROUETTE, C18 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. <script type="text/javascript">
  42. /* Photoset Resize Code by Kevin - EXCOLO.TUMBLR.COM */
  43. $(document).ready(function() {
  44. function photosetResize() {
  45. $('iframe.photoset').each(function(){
  46. var newSize = 420;
  47. var newSrc = $(this).attr('src').replace('500',newSize);
  48. $(this).attr('src', newSrc).width(newSize);
  49. var high = $(this).css('height');
  50. var calculate = parseInt(high, 10)* newSize/500;
  51. $(this).css('height', calculate);
  52. });
  53. }
  54. photosetResize();
  55. });
  56. </script>
  57.  
  58. <!-- METAS -->
  59.  
  60. <meta name="color:background" content="#ffffff"/>
  61. <meta name="color:text" content="#000000"/>
  62. <meta name="color:posts" content="#fffffff"/>
  63. <meta name="color:info" content="#000000"/>
  64. <meta name="image:sidebar image" content=""/>
  65.  
  66. <meta name="text:Link1" content="Link 1"/>
  67. <meta name="text:Link2" content="Link 2"/>
  68. <meta name="text:Link3" content="Link 3"/>
  69. <meta name="text:URL1" content="URL 1"/>
  70. <meta name="text:URL2" content="URL 2"/>
  71. <meta name="text:URL3" content="URL 3"/>
  72.  
  73. <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
  74. <link href='http://fonts.googleapis.com/css?family=Playfair+Display:400,700,400italic' rel='stylesheet' type='text/css'>
  75.  
  76. <style type="text/css">
  77.  
  78. /* -------- SCROLLBAR -------- */
  79.  
  80. ::-webkit-scrollbar {width: 2px;}
  81. ::-webkit-scrollbar-track {background:none;}
  82. ::-webkit-scrollbar-thumb {background:black;}
  83. ::-webkit-scrollbar-thumb:window-inactive {background: transparent;}
  84. ::-webkit-scrollbar-thumb:horizontal {display:none;}
  85.  
  86. /* -------- TOOLTIPS -------- */
  87.  
  88. #s-m-t-tooltip {
  89. max-width:300px;
  90. margin:15px;
  91. padding:5px;
  92. background-color:black;
  93. font-family:helvetica;
  94. font-size:12px;
  95. color:white;
  96. z-index:999999999999999999999999999999999999;
  97. }
  98.  
  99. /* -------- BASICS -------- */
  100.  
  101. body {
  102. color:{color:text};
  103. font-family:helvetica, arial, times;
  104. background-color:{color:background};
  105. font-size:11px;
  106. }
  107.  
  108. a {
  109. text-decoration:none;
  110. color:black;
  111. -webkit-transition: all .3s;
  112. -moz-transition: all .3s;
  113. -o-transition: all .3s;
  114. -ms-transition: all .3s;
  115. transition: all .3s;
  116. }
  117.  
  118. a:hover {
  119. opacity:.75;
  120. }
  121.  
  122. h1 {
  123. text-transform:uppercase;
  124. font-size:13px;
  125. }
  126.  
  127. #pagination {
  128. font-weight:bold;
  129. color:{color:links};
  130. margin-top:-85px;
  131. margin-bottom:-75px;
  132. text-align:center;
  133. }
  134.  
  135. #pagination a {
  136. color:{color:links};
  137. }
  138.  
  139. /* ------- SIDEBAR ------ */
  140.  
  141. #sidebar img {
  142. width:100px;
  143. display:block;
  144. border-radius:50%;
  145. margin-bottom:45px;
  146. margin-left:70px;
  147. }
  148.  
  149. #sidebar {
  150. display:block;
  151. color:{color:text};
  152. position:fixed;
  153. float:left;
  154. width:180px;
  155. margin-left:250px;
  156. top:240px;
  157. -webkit-transition: all .9s;
  158. -moz-transition: all .9s;
  159. -o-transition: all .9s;
  160. -ms-transition: all .9s;
  161. transition: all .9s;
  162. opacity:1;
  163. }
  164.  
  165. #sblinks {
  166. top:0px;
  167. font-size:11px;
  168. padding-top:0px;
  169. left:-5px;
  170. text-transform:lowercase;
  171. font-family:'courier new';
  172. text-align:right;
  173. position:absolute;
  174. font-weight:normal;
  175. -webkit-transition: all .9s;
  176. -moz-transition: all .9s;
  177. -o-transition: all .9s;
  178. -ms-transition: all .9s;
  179. transition: all .9s;
  180. opacity:0;
  181. }
  182.  
  183. #sblinks a {
  184. display:block;
  185. padding:10px;
  186. border-bottom:1px solid transparent;
  187. -webkit-transition: all .3s;
  188. -moz-transition: all .3s;
  189. -o-transition: all .3s;
  190. -ms-transition: all .3s;
  191. transition: all .3s;
  192. }
  193.  
  194. #sblinks a:hover {
  195. border-bottom:1px solid black;
  196. }
  197.  
  198. #sblinks a:last-child {
  199. padding-right:2.5px;
  200. }
  201.  
  202. #sidebar:hover #sblinks {
  203. opacity:1;
  204. }
  205.  
  206. /* ------- POSTS ------- */
  207.  
  208. #entries {
  209. margin-top:75px;
  210. margin-left:450px;
  211. position:static;
  212. float:left;
  213. }
  214.  
  215. #post {
  216. width:420px;
  217. margin-bottom:135px;
  218. -webkit-transition: ease .5s;
  219. -moz-transition: ease .5s;
  220. -o-transition: ease .5s;
  221. -ms-transition: ease .5s;
  222. transition: ease .5s;
  223. overflow:hidden;
  224. }
  225.  
  226. #post:hover {
  227. border-radius:15px;
  228. -webkit-transition-duration: 0.5s;
  229. -moz-transition-duration:0.5s;
  230. transition-duration:0.5s;
  231. -o-transition-duration:0.5s;
  232. }
  233.  
  234. #tags {
  235. color:white;
  236. background:{color:info};
  237. -webkit-transition: ease .5s;
  238. -moz-transition: ease .5s;
  239. -o-transition: ease .5s;
  240. -ms-transition: ease .5s;
  241. transition: ease .5s;
  242. margin-top:-4px;
  243. padding:15px;
  244. font-family:'Montserrat';
  245. z-index:9999;
  246. }
  247.  
  248. #tags a {
  249. color:white;
  250. border-bottom:0px solid white;
  251. -webkit-transition: .25s;
  252. -moz-transition: .25s;
  253. -o-transition: .25s;
  254. -ms-transition: .25s;
  255. transition: .25s;
  256. }
  257.  
  258. #tags a:hover {
  259. border-bottom:2px solid white;
  260. opacity:1;
  261. }
  262.  
  263. #post:hover #tags {
  264. border-bottom-left-radius:10px;
  265. border-bottom-right-radius:10px;
  266. }
  267.  
  268. #post:hover #pic {
  269. border-top-left-radius:10px;
  270. border-top-right-radius:10px;
  271. }
  272.  
  273. blockquote {
  274. margin-left:15px;
  275. border-left:1px solid #9e9f65;
  276. padding:1px 0px 1px 10px;
  277. }
  278.  
  279. .pic, video {
  280. min-width:420px;
  281. width:420px;
  282. }
  283.  
  284. #pict a:hover {
  285. opacity:1;
  286. }
  287.  
  288. .source {
  289. text-align:right;
  290. }
  291.  
  292. ul.chat {
  293. list-style:none;
  294. }
  295.  
  296. .chat span {
  297. margin-left:-30px;
  298. float:left;
  299. }
  300.  
  301. .person {
  302. font-weight:bold;
  303. margin-right:5px;
  304. }
  305.  
  306. #ask {
  307. color:{color:text};
  308. padding:10px;
  309. border:1px solid black;
  310. }
  311.  
  312. #ask a {
  313. color:{color:text};
  314. }
  315.  
  316. .comma:last-child {
  317. display:none;
  318. }
  319.  
  320. /* ------- MUSIC ------- */
  321.  
  322. #audioinfo {
  323. background:{color:posts};
  324. color:black;
  325. text-align:center;
  326. text-transform:uppercase;
  327. width:420px;
  328. margin-left:-100px;
  329. display:inline-block;
  330. position:absolute;
  331. height:100px;
  332. -webkit-transition-duration: 0.5s;
  333. -moz-transition-duration:0.5s;
  334. transition-duration:0.5s;
  335. -o-transition-duration:0.5s;
  336. }
  337.  
  338. #post:hover #audioinfo {
  339. border-top-right-radius:15px;
  340. }
  341.  
  342. .info {
  343. width:280px;
  344. margin-top:20px;
  345. margin-left:100px;
  346. padding:20px;
  347. text-align:center;
  348. }
  349.  
  350. .cover {
  351. width:100px;
  352. z-index:99;
  353. position:relative;
  354. -webkit-transition-duration: 0.5s;
  355. -moz-transition-duration:0.5s;
  356. transition-duration:0.5s;
  357. -o-transition-duration:0.5s;
  358. }
  359.  
  360. #post:hover #audioinfo {
  361. border-top-left-radius:15px;
  362. }
  363.  
  364. #post:hover .cover {
  365. border-top-left-radius:10px;
  366. }
  367.  
  368. .playbutton {
  369. width: 20px;
  370. height: 35px;
  371. overflow: hidden;
  372. z-index: 9999;
  373. margin-left:17.5px;
  374. padding-bottom:7.5px;
  375. padding-top:15px;
  376. }
  377.  
  378. .playbox {
  379. background-color:black;
  380. position: absolute;
  381. z-index: 900;
  382. margin-top: 25px;
  383. margin-left: 22.5px;
  384. padding-right:22.5px;
  385. opacity:.75;
  386. border-radius:50%;
  387. }
  388.  
  389. /* ------- NOTES ------- */
  390.  
  391. ol.notes {
  392. display:block;
  393. text-align:left;
  394. list-style:none;
  395. margin-left:-40px;
  396. }
  397.  
  398. ol.notes li.note{
  399. padding-bottom:5px;
  400. }
  401.  
  402. .pagenotes {
  403. margin-top:-75px;
  404. margin-bottom:60px;
  405. }
  406.  
  407. .pagenotes img{
  408. padding-right:5px;
  409. padding-top:5px;
  410. margin-bottom:-5px;
  411. display:none;
  412. }
  413.  
  414. #caption {
  415. padding:15px;
  416. background:{color:posts};
  417. margin-top:-3px;
  418. }
  419.  
  420. </style>
  421. </head>
  422. <body>
  423.  
  424. <div id="sidebar">
  425. <a href="/" title="refresh"><img src="{image:sidebar image}"/></a>
  426. <div id="sblinks">
  427. <a href="{text:URL1}">{text:Link1}</a>
  428. <a href="{text:URL2}">{text:Link2}</a>
  429. <a href="{text:URL3}">{text:Link3}</a>
  430. </div>
  431. </div>
  432.  
  433. <!-- POSTS -->
  434.  
  435. <div id="entries">
  436.  
  437. {block:Posts}
  438.  
  439. <div id="post">
  440.  
  441. <!-- VIA/SOURCE FIX -->
  442.  
  443. {block:ContentSource}
  444. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  445. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  446. {/block:SourceLogo}
  447. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  448. {/block:ContentSource}
  449.  
  450. {block:Text}
  451. {block:Title}
  452. <h1><a href="{Permalink}">{Title}</a></h1>
  453. {/block:Title}
  454. <div id="caption">{Body}</div>
  455. {/block:Text}
  456.  
  457. {block:Photo}
  458. <div id="pict">
  459. {LinkOpenTag}
  460. <img class="pic" src="{PhotoURL-500}" alt="{PhotoAlt}" />
  461. {LinkCloseTag}
  462. </div>
  463. {/block:Photo}
  464.  
  465. {block:Photoset}
  466. {Photoset-500}
  467. {/block:Photoset}
  468.  
  469. {block:Quote}
  470. {Quote}
  471. {block:Source}
  472. <div class="source"><br>{Source}</div>
  473. {/block:Source}
  474. {/block:Quote}
  475.  
  476. {block:Link}
  477. <h1 class="title"><a href="{URL}">{Name}</a></h1>
  478. {block:Description}{Description}{/block:Description}
  479. {/block:Link}
  480.  
  481. {block:Chat}
  482. <ul class="chat">
  483. {block:Lines}
  484. <li class="{Alt}">
  485. {block:Label}<span class="person">{Label}</span>{/block:Label}
  486. <p> {Line} </p></li>
  487. {/block:Lines}
  488. </ul>
  489. {/block:Chat}
  490.  
  491. {block:Audio}
  492. <div id="audio">
  493. <div class="playbox"><div class="playbutton">
  494. {block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}
  495. </div></div>
  496. {block:AlbumArt}<img src="{AlbumArtURL}" class="cover">{/block:AlbumArt}
  497. <div id="audioinfo">
  498. <div class="info">
  499. {block:TrackName}
  500. <b>{TrackName}</b><br />
  501. {/block:TrackName}
  502. {block:Artist}
  503. <b style="opacity:.8">{Artist}</b>
  504. {/block:Artist}
  505. {block:Album}
  506. <span style="padding-left:7.5px;opacity:.8">{Album}</span>
  507. {/block:Album}
  508. </div></div>
  509. </div>
  510. {/block:Audio}
  511.  
  512. {block:Video}
  513. {Video-500}
  514. {/block:Video}
  515.  
  516. {block:Answer}
  517. <div id="ask">
  518. <b style="text-transform:lowercase;">{Asker}: </b>
  519. {Question}
  520. </div>
  521. <div id="answer">{Answer}</div>
  522. {/block:Answer}
  523.  
  524. {block:Caption}
  525. <div id="caption">{Caption}</div>
  526. {/block:Caption}
  527.  
  528. {block:Date}
  529. <a href="{Permalink}">
  530. <div id="arrow-up"></div>
  531. <div id="tags">
  532. {block:Date}<span style="text-transform:lowercase;">
  533. {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</span>
  534. {/block:Date}
  535. </a>
  536.  
  537. {block:NoteCount}
  538. + <a href="{Permalink}">{NoteCount} </a>
  539. {/block:NoteCount}
  540.  
  541. {block:permalinkpage}
  542. <!--VIA AND SOURCE-->
  543. {block:RebloggedFrom} /
  544. <a href="{ReblogParentURL}">via</a>
  545. {/block:RebloggedFrom}
  546. {block:ContentSource}
  547. & <a href="{SourceURL}">source</a>
  548. {/block:ContentSource}
  549. {block:RebloggedFrom}{/block:RebloggedFrom}
  550. {/block:permalinkpage}
  551.  
  552. {block:HasTags}
  553. +
  554. {block:Tags}
  555. <a href="{TagURL}"> {Tag}</a><span class="comma">,</span>
  556. {/block:Tags}
  557. {/block:HasTags}
  558. </div>
  559. {/block:Date}
  560.  
  561. </div>
  562.  
  563. <!--POST NOTES-->
  564.  
  565. {block:PostNotes}
  566. <div class="pagenotes">{PostNotes-16}</div>
  567. {/block:PostNotes}
  568.  
  569. {/block:Posts}
  570.  
  571. {block:Pagination}
  572. <div id="pagination">
  573. {block:PreviousPage}
  574. <a href="{PreviousPage}">Previous</a> |
  575. {/block:PreviousPage}
  576. {block:NextPage}
  577. <a href="{NextPage}">Next</a>
  578. {/block:NextPage}
  579. </div>
  580. {/block:Pagination}
  581.  
  582. </div>
  583.  
  584. <!-- removing this will automatically make you a piece of shit !! thank u -->
  585. <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>
  586.  
  587. </body>
  588. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement