Advertisement
quirons

wetsuit, thirteen

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